Getting started
ChainGate is a complete TypeScript-first framework for seamless interaction with multiple blockchain networks. Manage digital assets, query blockchain data, and execute transactions across supported networks using a unified API - all from Node.js or modern browsers.
ChainGate is designed with security in mind: Your private key never leaves your device. All signing operations, address generation, and sensitive cryptographic logic are executed locally in memory. ChainGate servers never have access to your private keys or seed phrases.
Supported blockchainsβ
ChainGate currently supports these networks (expanded regularly):











Need another chain? Request integration.
Installationβ
Install ChainGate via npm:
npm install chaingate
You can obtain a free API key at ChainGateβs Dashboard.
Initializationβ
Start by creating a wallet with your API key. You can also import wallet from various sources such as keystore or phrase.
import { initializeWallet } from 'chaingate'
// Initialize with your API key
const { wallet, phrase } = await initializeWallet.create({
apiKey: 'your-api-key-from-dashboard'
})
Quick Start Exampleβ
Here's how to generate an address and check balance:
import { initializeWallet } from 'chaingate'
async function main() {
// Create Bitcoin wallet
const wallet = await initializeWallet.create({apiKey: 'your-api-key-from-dashboard'})
const bitcoin = wallet.currency('bitcoin')
console.log('Bitcoin address:', await bitcoin.getAddress())
// Get ETH balance
const ethereum = wallet.currency('ethereum')
const { confirmed, unconfirmed } = await ethereum.getBalance()
console.log('ETH balance:', confirmed.str())
}
main().catch(console.error)
Most of ChainGate methods return Promise-based responses for async operations. Use async/await
or standard Promise handling.
Disclaimerβ
Use of this blockchain library is at your own risk. There are no warranties, and no liabilities are assumed, and data accuracy is not guaranteed. Always test and verify before deploying to production.