Bamboo Relay needed dependable infrastructure so engineers could sleep at night
5 hours
Saved per issue100%
Uptime168K+
Daily ETH queriesAlchemy powers some of the biggest names in the Ethereum ecosystem, and in our eyes, is the only serious solution for mission-critical dApps and websites.
Summary
Bamboo Relay experienced numerous real-world node failures. Recovering from those issues took up to 5 hours each and often woke up the team at night. With Alchemy, Bamboo Relay’s engineers no longer need to be on call at all hours to handle production issues.
Alchemy has saved Bamboo Relay countless engineering hours
Bamboo Relay used to run on brittle infrastructure riddled with issues like nodes crashing and requiring manual reboots, server disk space filling up, and blockchain data being corrupted. These issues could often take up to 5 hours to resolve and often required troubleshooting during unfavorable hours.
“Since working with Alchemy, Bamboo Relay has had zero infrastructure-related downtime.”
Bamboo Relay now uses Alchemy for all of their blockchain infrastructure needs. This has been instrumental in helping them scale as they are able to focus on building new user experiences. In fact, since working with Alchemy, Bamboo Relay has reported zero infrastructure-related downtime.
Reliability when it matters most
Bamboo Relay has seen incredible growth over the past year, boasting users from all over the world, and can rely on stable infrastructure as they continue to scale. They’ve also been active in sharing their experience within the blockchain community and even wrote a subprovider to emulate Alchemy’s Enhanced APIs for local test nets, like Ganache.
Related products
The web3 engine
The revolutionary blockchain engine that ensures infinite scalability, reliability and 100% data accuracy.
Code preview
curl https://eth-mainnet.g.alchemy.com/v2/demo \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_gasPrice","params":[],"id":73}'
The decentralized L1
Build the future of the internet economy using Alchemy's world-class blockchain developer platform.
Code preview
// Setup: npm install @alch/alchemy-sdk
const { Network, Alchemy } = require("alchemy-sdk");
// Optional Config object, but defaults to demo api-key and eth-mainnet.
const settings = {
apiKey: "demo", // Replace with your Alchemy API Key.
network: Network.ETH_MAINNET, // Replace with your network.
};
const alchemy = new Alchemy(settings);
async function main() {
const latestBlock = await alchemy.core.getBlockNumber();
console.log("The latest block number is", latestBlock);
}
main();
Free testnet tokens to accelerate development
Get free testnet faucet funds for testing and developing your decentralized applications on Sepolia and Mumbai testnets.