How to get started building on Bahamut
You'll need to create a free All That Node account first!
What is the Bahamut?
Bahamut is a smart contract-enabled, open source DLT platform for all things Web3 and serves as the new-generation platform of the Fastex ecosystem.
For more information on Bahamut, please check out the official website.
Endpoints
Supported Clients
NOTE: All That Node supports Geth client for Bahamut.
Network | ChainId | Endpoint |
---|---|---|
Mainnet(Sahara) | 0x142d(5165) | https://bahamut-mainnet-rpc.allthatnode.com/{YOUR-API-KEY} |
Testnet(Oasis) | 0xFFA(4090) | https://bahamut-oasis-rpc.allthatnode.com/{YOUR-API-KEY} |
*Find 'YOUR-API-KEY' by going to the Dashboard menu (Dashboard > All Projects > Project Detail Page).
Sample
Request
curl https://bahamut-mainnet-rpc.allthatnode.com/'YOUR-API-KEY' \
--request POST \
--header "Content-Type: application/json" \
--data '{ "jsonrpc":"2.0", "method":"eth_blockNumber","params":[],"id":1}'
Response
{
"jsonrpc": "2.0",
"result": "0x1529f7",
"id": 1
}