Skip to main content

Quickstart

Everything you will need to get up and running in 2 minutes or less!

Installation

npm install @pushchain/devnet viem

Import libraries

// Import Push Chain SDK for blockchain interactions

import {
PushChain,
createUniversalAccount,
createUniversalSigner,
CONSTANTS,
} from '@pushchain/devnet';

// Import utility functions from viem
import { hexToBytes } from 'viem';
import { privateKeyToAccount, generatePrivateKey } from 'viem/accounts';

Initialize Push Chain SDK

const privateKey = generatePrivateKey(); // Replace it with your private key generation logic
const account = privateKeyToAccount(privateKey);


const universalSigner = createUniversalSigner({
address: account.address, // Ethereum address derived from the private key
chain: CONSTANTS.CHAIN.ETHEREUM,
chainId: CONSTANTS.CHAIN_ID.ETHEREUM.SEPOLIA,
signMessage: async (data) => {
const signature = await account.signMessage({
message: { raw: data }, // Data to be signed
});
return hexToBytes(signature); // Convert signature to a byte array
},
});

const pushChain = await PushChain.initialize(universalSigner);

Send Transaction

// Send transaction
const tx = await pushChain.tx.send(
// We will send the transaction to a Solana address
[
createUniversalAccount({
chain: CONSTANTS.CHAIN.SOLANA,
chainId: CONSTANTS.CHAIN_ID.SOLANA.DEVNET,
address: 'ySYrGNLLJSK9hvGGpoxg8TzWfRe8ftBtDSMECtx2eJR',
}),
],
{
category: 'MY_CUSTOM_CATEGORY', // Specify the category of the transaction
// Sample email payload
data: JSON.stringify({
title: 'Hello old friend from Solana!',
message: 'Greetings from Ethereum world.',
}),
}
);

Fetch Transactions

// Fetch the latest 5 transactions
const results = await pushChain.tx.get('*', { limit: 5 });
for (const blocks of results.blocks) {
for (const t of blocks.transactions) {
console.log('transaction: ', t);
}
}
    1. Devnet Drop S2 is Live!Explore Push Chain Devnet, complete quests, bang out multipliers, and earn airdrops.