POST
/
api
/
v1
/
blockchain
/
estimate
curl --request POST \
  --url https://dash.betteruseblockchain.com/api/v1/blockchain/estimate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "network": "<string>",
  "type": "DEPLOY_ERC20",
  "sender": "<string>",
  "recipient": "<string>",
  "contractAddress": "<string>",
  "amount": 123
}'
{
  "gasLimit": "<string>",
  "gasPrice": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Fee estimated successfully

The response is of type object.