Quickstart
Everything you will need to get up and running in 2 minutes or less!
Installation
- js
- react
- reactnative
npm install @pushchain/devnet viem
npm install @pushchain/devnet viem
npm install @pushchain/devnet viem
Import libraries
- js
- react
- reactnative
// 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';
// 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';
// 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
- js
- react
- reactnative
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);
const privateKey = generatePrivateKey(); // Replace it with your private key generation logic
const account = privateKeyToAccount(privateKey);
// Create Signer. Defaults to Ethereum Sepolia
const signer = createUniversalSigner({
address: account.address,
signMessage: async (data) =>
hexToBytes(await account.signMessage({ message: { raw: data } })),
});
const pushChain = await PushChain.initialize(signer);
const privateKey = generatePrivateKey(); // Replace it with your private key generation logic
const account = privateKeyToAccount(privateKey);
// Create Signer. Defaults to Ethereum Sepolia
const signer = createUniversalSigner({
address: account.address,
signMessage: async (data) =>
hexToBytes(await account.signMessage({ message: { raw: data } })),
});
const pushChain = await PushChain.initialize(signer);
Send Transaction
- js
- react
- reactnative
// 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.',
}),
}
);
// 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.',
}),
}
);
// 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
- js
- react
- reactnative
// 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);
}
}
// 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);
}
}
// 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);
}
}