Developer Hub
Documentation.
Integrate Buidlend's high-performance infrastructure into your decentralized applications with our robust APIs and SDKs.
Getting Started
To connect to the Buidlend global network, use one of our public RPC endpoints or authenticate via API key for higher rate limits.
import { createPublicClient, http } from 'viem';import { mainnet } from 'viem/chains';const client = createPublicClient({ chain: mainnet,// Buidlend high-performance endpointtransport: http('https://mainnet.buidlend.io/v1/YOUR-API-KEY') });const blockNumber = await client.getBlockNumber(); console.log(`Current block: ${blockNumber}`);Smart Contract Integration
Integrate with our Quantum Bridge liquidity protocols directly on-chain using our verified Solidity interfaces.
// SPDX-License-Identifier: MITpragma solidity ^0.8.20;interface IQuantumBridge{function bridgeTokens(address token,uint256 amount,uint256 destinationChainId,bytes calldata recipient ) external payable;event TokensBridged(address indexed sender,uint256 destinationChainId,uint256amount ); }contract MyProtocol{IQuantumBridge public bridge;constructor(address_bridgeAddress) { bridge = IQuantumBridge(_bridgeAddress); } }Node Architecture
Global Mesh Network
Requests are routed via Anycast to the nearest active execution node for sub-10ms response times globally.