Tokenization
Brale enables businesses to issue, manage, and custody tokens on all supported blockchains.
Tokenization makes it easy to manage on-chain supply of digital assets against off-chain reserves (or points, goods and services, etc.) across multiple blockchains. This also enables local currency stablecoins with existing banking relationships to easily manage on-chain operations with their team, or to expand their assets to additional blockchains without development effort.
To get access to the Tokenization API, reach out to our team at [email protected].
Issue Tokens
Issue new tokens on all supported blockchains through the Brale Dashboard.

Increasing and Decreasing Supply of Tokens
Mint and Burn using Transfers or via the Brale dashboard.
Mint more Supply

POST https://api.brale.xyz/accounts/account_id/transfers
{
"amount": "100",
"destination_address": {
"address_id": "d7bd28e4-93e6-4313-880c-ab9178eacd3b",
"value_type": "TKZ",
"transfer_type": "Solana"
}
}
Decrease Supply
POST https://api.brale.xyz/accounts/account_id/transfers
{
"amount": "100",
"source_address": {
"address_id": "d7bd28e4-93e6-4313-880c-ab9178eacd3b",
"value_type": "TKZ",
"transfer_type": "Solana"
}
}
Transfer Tokens
POST https://api.brale.xyz/transfers
{
"amount": "100",
"source_address": {
"address_id": "string",
"value_type": "TKZ",
"transfer_type": "Solana"
},
"destination_address": {
"address_id": "d7bd28e4-93e6-4313-880c-ab9178eacd3b",
"value_type": "TKZ",
"transfer_type": "Solana"
}
}
Updated about 2 months ago