Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | 1x 1x | export const SPL_TOKEN_INSTRUCTION_TYPES = {
InitializeMint: 0,
InitializeAccount: 1,
InitializeMultisig: 2,
Transfer: 3,
Approve: 4,
Revoke: 5,
SetAuthority: 6,
MintTo: 7,
Burn: 8,
CloseAccount: 9,
FreezeAccount: 10,
ThawAccount: 11,
TransferChecked: 12,
ApproveChecked: 13,
MintToChecked: 14,
BurnChecked: 15,
} as const;
export const SYSTEM_INSTRUCTION_TYPES = {
CreateAccount: 0,
Assign: 1,
Transfer: 2,
CreateAccountWithSeed: 3,
AdvanceNonceAccount: 4,
WithdrawNonceAccount: 5,
InitializeNonceAccount: 6,
AuthorizeNonceAccount: 7,
Allocate: 8,
AllocateWithSeed: 9,
AssignWithSeed: 10,
TransferWithSeed: 11,
UpgradeNonceAccount: 12,
CreateAccountWithSeedChecked: 13,
CreateIdempotent: 14,
} as const;
|