Fungible token action
The FTTokenAction
entity describes standard actions that can be performed on fungible tokens, such as mint, transfer, or burn. CSPR.cloud supports fungible tokens compatible with the CEP-18 Casper Network standard.
Properties
The FTTokenAction
entity has the following properties:
deploy_hash
string(64)
Deploy hash in which the token action occurred. First part of token action identifier, represented as a hexadecimal string
transform_idx
int
ID of the transform in the deploy execution result containing performed token action in deploy execution. Second part of token action identifier
contract_package_hash
string(64)
Contract package hash of fungible token contract, represented as a hexadecimal string
from_hash
string(64)
Action source account or contract hash, represented as a hexadecimal string
from_type
uint8
Action source hash type: 0
for account, 1
for contract
to_hash
string(64)
Action target account or contract hash, represented as a hexadecimal string
to_type
uint8
Action target hash type: 0
for account, 1
for contract
amount
string
Tokens amount value used during the token action
timestamp
uint16
The timestamp of performed token action
Example
Optional properties
Depending on the endpoint some of the following optional properties may be included in the FTTokenAction
entity:
from_public_key
string(68)
Action source public key if it's an account
to_public_key
string(68)
Action target public key if it's an account
Relations
Endpoints
The FTTokenAction
entity has the following endpoints:
Relation endpoints
The FTTokenAction
entity has the following relation endpoints:
Last updated