Everything you need to develop, deploy, and scale your Web3 applications on the fastest and most developer-friendly blockchain platform.
import { RabbitChain } from '@rabbitchain/sdk';
const rbc = new RabbitChain({
network: 'mainnet',
apiKey: 'your-api-key'
});
// Deploy a smart contract
const contract = await rbc.deploy({
bytecode: contractBytecode,
abi: contractABI,
gasLimit: 500000
});
console.log('Contract deployed:', contract.address);
Get up and running with Rabbit Chain in minutes
Install the Rabbit Chain SDK and configure your development environment with our CLI tools.
npm install @rabbitchain/sdk
Initialize your connection to Rabbit Chain mainnet or testnet with your API credentials.
rbc init --network testnet
Write, compile, and deploy your smart contract using our streamlined deployment tools.
rbc deploy contract.sol
Comprehensive guides and references to help you build amazing applications
Join the growing ecosystem of developers building on Rabbit Chain