TokenCreate
Creates a new token with specified properties. After creation, the master_authority is initialized with the transaction signer. Fields:
Field
Type
Description
symbol
String
The token's symbol (e.g., "USDX")
decimals
u8
Number of decimal places for the token
master_authority
String
The address that will have master authority over the token
Sample Response:
{
"transaction_type": "TokenCreate",
"data": {
"symbol": "USDX",
"decimals": 18,
"master_authority": "0x9E1E9688A44D058fF181Ed64ddFAFbBE5CC74ff3"
}
}
Last updated