Smart Contract
Read the smart contracts
Typedoc
See technical documentation
SDK Implementation
See the source
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Learn about how to use the Boost Core contract with the SDK
core contract. The SDK comes preconfigured with the correct contract addresses for all deployed core implementations.import { BoostCore } from '@boostxyz/sdk/BoostCore'
// you can also access BoostCore from the root export
import { BoostCore } from '@boostxyz/sdk'
// Basic instantiation
const core = new BoostCore({ config: wagmiConfig })
// In Node, you'll need to supply a viem local account https://viem.sh/docs/accounts/local.html
const core = new BoostCore({ config: wagmiConfig, ...(!!account && { account: viemLocalAccount }) })