How to Connect to Avalanche
Learn how easy it is to connect to the Avalanche blockchain with Blockdaemon.
It's easy to connect to your Avalanche infrastructure. If you haven't already configured any Avalanche infrastructure, visit the Avalanche marketplace page to learn more about Blockdaemon's Avalanche options. In this guide, you'll learn the following simple method of connection to your infrastructure:
How to access Your Blockdaemon Avalanche Credentials
Once you have purchased your Blockdaemon Avalanche infrastructure, you can access your credentials:
- Log into the Blockdaemon app.
- In the Blockchain Access menu, click Nodes.
- Click the Avalanche node.
- Click the Connect tab.
In the Connection Information area, you'll find the following:
- Your Endpoint URL
- Your Auth Token
How to Connect to Avalanche via cURL
curl --request POST --url 'YOUR_ENDPOINT_URL/ext/bc/C/rpc?auth=YOUR_AUTH_TOKEN' --header 'Content-Type: application/json' --data '{"jsonrpc":"2.0","method":"web3_clientVersion","params":[YOUR_PARAMS],"id":67}'
- Replace
YOUR_ENDPOINT_URL
with the Endpoint URL found in the Blockdaemon app. - Replace
YOUR_AUTH_TOKEN
with the Auth Token found in the Blockdaemon app. - Replace
YOUR_PARAMS
with your chosen RPC parameters.
👋 Need Help?
Contact us through email or our support page for any issues, bugs, or assistance you may need.
Updated 18 days ago