Skip to main content

Initialize SDK overview

Push Chain SDK enables seamless integration with Push Chain, a Proof-of-Stake layer 1 blockchain optimized for building hyper-scalable, consumer-centric web3 applications. This guide covers the installation and initialization of the SDK.

Initialize Push Chain API

// Import Push Chain SDK for blockchain interactions
import { PushChain, CONSTANTS, createUniversalSigner, createUniversalAccount } from '@pushchain/devnet';

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

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);

Note: If signer is not provided or is null, then the SDK will switch to read-only mode. This means that you can only read data from the blockchain and not send transactions.

Initialize Push Chain parameters

When initializing your Push Chain instance, you can customize the process using several parameters. Here's a breakdown:

ParamTypeDefaultRemarks
universalSignerUniversalSignernullSigner responsible for signing when sending transactions. Only used for send function
options.networkENVdevnetPush Chain environment
Expected response
{
block: Block {
validator: Validator {
activeValidatorURL: 'https://vv3.dev.push.org',
env: 1,
validatorContractClient: [Object],
ReqModifier: [Function (anonymous)],
call: [Function (anonymous)]
},
get: [Function (anonymous)]
},
tx: Tx {
validator: Validator {
activeValidatorURL: 'https://vv3.dev.push.org',
env: 1,
validatorContractClient: [Object],
ReqModifier: [Function (anonymous)],
call: [Function (anonymous)]
},
env: 1,
signer: null,
get: [Function (anonymous)],
send: [Function (anonymous)],
tokenCache: TokenCache {
validator: [Validator],
TOKEN_EXPIRE_SECONDS: 60,
cachedToken: [Object],
cachedTokenTs: 1736287769818
}
},
wallet: Wallet {
env: 1,
walletWindow: null,
connect: [Function (anonymous)],
sign: [Function (anonymous)],
appConnectionStatus: [Function (anonymous)],
requestAppConnection: [Function (anonymous)],
openWalletWindow: [Function (anonymous)],
requestWalletAddress: [Function (anonymous)],
walletUrl: 'https://wallet.push.org'
}
}
ParamTypeRemarks
blockBlockThe Block class in the PushChain handles operations related to blockchain blocks. It provides methods to initialize a block instance and fetch blocks from the network.
txTxThe Transaction class in the PushChain is designed to manage transactions within the network. It provides functionality to send and transactions to the network.
walletWalletThe Wallet class manages wallet interactions, including connecting to a wallet, signing data, and checking the connection status.
    1. Devnet Drop S2 is Live!Explore Push Chain Devnet, complete quests, bang out multipliers, and earn airdrops.