Skip to main content
POST
/
api
/
v1
/
blockchain
/
estimate
cURL
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

Body

application/json
network
string
required
type
enum<string>
required
Available options:
DEPLOY_ERC20,
DEPLOY_NFT,
MINT_NFT,
BURN_NFT,
TRANSFER_NFT,
TRANSFER_ERC20,
DEPLOY_AUCTION,
DEPLOY_MARKETPLACE
sender
string
recipient
string
contractAddress
string
amount
number

Response

gasLimit
string
gasPrice
string