How to Connect to Evmos
It's easy to connect to your Evmos infrastructure.
If you haven't already configured any Evmos infrastructure, visit the Evmos marketplace page to learn more about Blockdaemon's Evmos options.
In this guide, we will cover the following simple methods of connection to your infrastructure:
- Evmos ETH RPC Connection via cURL
- Evmos Tendermint RPC Connection via cURL
- Evmos Tendermint Rest Connection via cURL
- Evmos Connection via Websocket
- Cosmos Rest Connection for Evmos
- Evmos GRPC Connection
How to access Your Blockdaemon Evmos Credentials
Once you have purchased your Blockdaemon Evmos infrastructure, you can access your credentials:
- Log into the Blockdaemon app.
- In the Blockchain Access menu, click Nodes.
- Click the Evmos node.
- Click the Connect tab.
In the Connection Information area, you'll find the following:
- Your Endpoint URL
- Your Auth Token
Evmos Eth RPC Connection via cURL
curl -X POST -H 'Content-Type: application/json' --data '{"method": "web3_clientVersion", "params": [], "id": 1}' 'https://YOUR_ENDPOINT_URL/eth_rpc?auth=YOUR_AUTH_TOKEN'
- 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.
Evmos Tendermint RPC Connection via cURL
curl -X POST -H 'Content-Type: application/json' --data '{"method": "status", "params": [YOUR_PARAMS], "id": 1}' 'YOUR_ENDPOINT_URL/tendermint_rpc?auth=YOUR_AUTH_TOKEN'
- Replace
YOUR_PARAMS
with your chosen RPC parameters. - 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.
Evmos Tendermint Rest Connection via cURL
curl -X POST -H 'Content-Type: application/json' 'YOUR_ENDPOINT_URL/tendermint_rest/status?auth=YOUR_AUTH_TOKEN'
- 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.
Evmos Connection via WebSocket
wscat -H "X-Auth-Token: YOUR_AUTH_TOKEN" -c wss://YOUR_ENDPOINT_URL/websocket
{"method": "status", "params": [], "id": 1}
- Replace
YOUR_AUTH_TOKEN
with the Auth Token found in the Blockdaemon app. - Replace
YOUR_ENDPOINT_URL
with the Endpoint URL found in the Blockdaemon app.
Cosmos Rest Connection for Evmos
curl -X GET -H 'Content-Type: application/json' 'YOUR_ENDPOINT_URL/cosmos_rest/cosmos/gov/v1beta1/proposals?auth=YOUR_AUTH_TOKEN'
- 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.
Evmos Tendermint GRPC Connection
grpcurl -H "X-Auth-Token: YOUR_AUTH_TOKEN" YOUR_ENDPOINT_URL:443 list
- Replace
YOUR_AUTH_TOKEN
with the Auth Token found in the Blockdaemon app. ReplaceYOUR_ENDPOINT_URL
with the Endpoint URL found in the Blockdaemon app.
Updated about 2 months ago