Class TokenManagementTransactionsOutcomeParser
Constructors
Methods
parseAddQuantity
- parseAddQuantity(
transaction: ITransactionOnNetwork | TransactionOutcome,
): { addedQuantity: bigint; nonce: bigint; tokenIdentifier: string }[] Returns { addedQuantity: bigint; nonce: bigint; tokenIdentifier: string }[]
parseBurnQuantity
- parseBurnQuantity(
transaction: ITransactionOnNetwork | TransactionOutcome,
): { burntQuantity: bigint; nonce: bigint; tokenIdentifier: string }[] Returns { burntQuantity: bigint; nonce: bigint; tokenIdentifier: string }[]
parseFreeze
- parseFreeze(
transaction: ITransactionOnNetwork | TransactionOutcome,
): {
balance: bigint;
nonce: bigint;
tokenIdentifier: string;
userAddress: string;
}[] Returns { balance: bigint; nonce: bigint; tokenIdentifier: string; userAddress: string }[]
parseLocalBurn
- parseLocalBurn(
transaction: ITransactionOnNetwork | TransactionOutcome,
): {
burntSupply: bigint;
nonce: bigint;
tokenIdentifier: string;
userAddress: string;
}[] Returns {
burntSupply: bigint;
nonce: bigint;
tokenIdentifier: string;
userAddress: string;
}[]
parseLocalMint
- parseLocalMint(
transaction: ITransactionOnNetwork | TransactionOutcome,
): {
mintedSupply: bigint;
nonce: bigint;
tokenIdentifier: string;
userAddress: string;
}[] Returns {
mintedSupply: bigint;
nonce: bigint;
tokenIdentifier: string;
userAddress: string;
}[]
parseNftCreate
- parseNftCreate(
transaction: ITransactionOnNetwork | TransactionOutcome,
): { initialQuantity: bigint; nonce: bigint; tokenIdentifier: string }[] Returns { initialQuantity: bigint; nonce: bigint; tokenIdentifier: string }[]
parseRegisterAndSetAllRoles
parseSetSpecialRole
- parseSetSpecialRole(
transaction: ITransactionOnNetwork | TransactionOutcome,
): { roles: string[]; tokenIdentifier: string; userAddress: string }[] Returns { roles: string[]; tokenIdentifier: string; userAddress: string }[]
parseUnfreeze
- parseUnfreeze(
transaction: ITransactionOnNetwork | TransactionOutcome,
): {
balance: bigint;
nonce: bigint;
tokenIdentifier: string;
userAddress: string;
}[] Returns { balance: bigint; nonce: bigint; tokenIdentifier: string; userAddress: string }[]
parseUnsetBurnRoleGlobally
parseUpdateAttributes
- parseUpdateAttributes(
transaction: ITransactionOnNetwork | TransactionOutcome,
): {
attributes: Uint8Array<ArrayBufferLike>;
nonce: bigint;
tokenIdentifier: string;
}[] Returns {
attributes: Uint8Array<ArrayBufferLike>;
nonce: bigint;
tokenIdentifier: string;
}[]
parseWipe
- parseWipe(
transaction: ITransactionOnNetwork | TransactionOutcome,
): {
balance: bigint;
nonce: bigint;
tokenIdentifier: string;
userAddress: string;
}[] Returns { balance: bigint; nonce: bigint; tokenIdentifier: string; userAddress: string }[]