Assets
Marketplace
Analytics
Developer
Profile
Stake

Developer Resources

Build on BrainArk RWA platform with our APIs and SDKs

Installation

npm install @brainark/rwa-sdk

Example Code
// Initialize BrainArk RWA SDK
import { BrainArkRWA } from '@brainark/rwa-sdk';

const rwa = new BrainArkRWA({
  chainId: 1236,
  rpcUrl: 'https://rpc.brainark.online'
});

// Issue a new asset
const asset = await rwa.issueAsset({
  name: 'Real Estate Token',
  symbol: 'RET',
  metadata: { location: 'NYC' },
  stakeAmount: '1000'
});