Skip to main content
POST
/
api
/
v1
/
token
/
fungible
/
mint
cURL
curl --request POST \
  --url https://dash.betteruseblockchain.com/api/v1/token/fungible/mint \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "network": "<string>",
  "amount": "<string>",
  "to": "<string>",
  "contractAddress": "<string>",
  "fromPrivateKey": "<string>",
  "nonce": 123
}'
{
  "data": {
    "txId": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Body

application/json
network
string
required
amount
string
required
to
string
required
contractAddress
string
required
fromPrivateKey
string
required
nonce
integer | null

Response

data
object