Build cross-chain applications on ËTRID's multichain infrastructure. Connect 13 major blockchains with one unified protocol.
npm install @etrid/sdk
# or
yarn add @etrid/sdk
import { EtridSDK } from '@etrid/sdk';
// Initialize ËTRID SDK
const etrid = new EtridSDK({
network: 'mainnet',
endpoint: 'wss://rpc.etrid.org'
});
// Connect to blockchain
await etrid.connect();
// Get current block number
const blockNumber = await etrid.getBlockNumber();
console.log('Current block:', blockNumber);
// Send cross-chain transaction
const tx = await etrid.crossChain.transfer({
from: 'ethereum',
to: 'bsc',
asset: 'USDC',
amount: '100'
});
await tx.wait();
wss://rpc.etrid.org
https://rpc.etrid.org
etrid-mainnet-1
wss://testnet-rpc.etrid.org
https://testnet-rpc.etrid.org
Deploy a smart contract and build a web interface
Enable asset transfers between blockchains
Create lending, staking, and yield farming apps
Build a cross-chain NFT marketplace
Use price feeds and external data
Implement token staking mechanisms
Join our developer community for support and collaboration