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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
pub const OP_QUERY_STATE_TSID: &str = "QueryStateTsid";
pub const OP_QUERY_TEA_BALANCE: &str = "QueryTeaBalance";
pub const OP_READ_TEA_BALANCE: &str = "ReadTeaBalance";
pub const OP_READ_DEPOSIT_BALANCE: &str = "ReadDepositBalance";
pub const OP_QUERY_AUTH_OPS_BYTES_AND_NEW_EXPIRE: &str = "QueryAuthOpsBytes";
pub const OP_QUERY_APP_CONSUME_BALANCE: &str = "QueryAppConsumeBalance";
pub const OP_CHECK_TXN: &str = "CheckTxn";
pub const OP_COMMIT_TXN: &str = "CommitTxn";
pub const OP_TOPUP: &str = "Topup";
pub const OP_WITHDRAW: &str = "Withdraw";
pub const OP_MOVE: &str = "Move";
pub const OP_CROSS_MOVE: &str = "CrossMove";
pub const OP_QUERY_APP_AES: &str = "QueryAppAes";
pub const OP_GEN_APP_AES: &str = "GenAppAes";
pub const OP_GET_APP_AES: &str = "GetAppAes";
pub const OP_GEN_TAPPSTORE_ACCT: &str = "GenTappstoreAcct";
pub const OP_GET_TAPPSTORE_ACCT: &str = "GetTappstoreAcct";
pub const OP_DEPOSIT: &str = "Deposit";
pub const OP_REFUND: &str = "Refund";
pub const OP_SLASH: &str = "Slash";
pub const OP_CONSUME_FROM_DEPOSIT: &str = "ConsumeFromDeposit";
pub const OP_CONSUME_FROM_ACCOUNT: &str = "ConsumeFromAccount";
pub const OP_PAYMENT_FROM_DEPOSIT: &str = "PaymentFromDeposit";
pub const OP_EXPORT_STATE: &str = "ExportState";
pub const OP_IMPORT_STATE: &str = "ImportState";
pub const OP_EXPORT_GLUESQL: &str = "ExportGlueSql";
pub const OP_IMPORT_GLUESQL: &str = "ImportGlueSql";
pub const OP_INIT_GLUESQL: &str = "InitGlueSql";
pub const OP_HAS_DB_INIT: &str = "HasDbInit";
pub const OP_EXEC_GLUECMD: &str = "ExecGlueCmd";
pub const OP_EXEC_GLUEQUERY: &str = "ExecGlueQuery";
pub const OP_SQL_BEGIN_TRANSACTION: &str = "SqlBeginTransaction";
pub const OP_SQL_IS_IN_TRANSACTION: &str = "SqlIsInTransaction";
pub const OP_SQL_CANCEL_TRANSACTION: &str = "SqlCancelTransaction";
pub const OP_SET_AUTH_OPS_BYTES: &str = "SetAuthOpsBytes";
pub const OP_QUERY_USER_LOGIN_SESSION_KEY: &str = "QueryUserLoginSessionKeyRequest";
pub const OP_GET_FILED_PAYMENTS: &str = "GetFailedPayments";
pub const OP_SET_FILED_PAYMENTS: &str = "AppendFailedPayments";
pub const OP_DUMP_GLOBAL_STATES: &str = "DumpGlobalsStates";
pub const OP_DUMP_TAPP_STATES: &str = "DumpTappStates";
pub const OP_DUMP_GLUEDB_DATA: &str = "DumpGluedbData";
pub const OP_DUMP_RAW_STATE: &str = "DumpRawState";
pub const OP_EXTEND_AUTH_KEY: &str = "ExtendAuthKey";
pub const OP_GET_MAGIC_NUMBER: &str = "GetMagicNumber";
pub const OP_QUERY_TEA_DEPOSIT_BALANCE: &str = "QueryTeaDepositBalance";
pub const OP_BONDING_MINT: &str = "BondingMint";
pub const OP_BONDING_BURN: &str = "BondingBurn";
pub const OP_READ_BONDING_TOTAL_SUPPLY: &str = "ReadBondingTotalSupply";
pub const OP_READ_ALL_BONDING: &str = "ReadAllBonding";
pub const OP_GET_BONDING_TOTAL_SUPPLY: &str = "GetBondingTotalSupply";
pub const OP_QUERY_TOKEN_BALANCE: &str = "QueryTokenBalance";
pub const OP_READ_TOKEN_BALANCE: &str = "ReadTokenBalance";
pub const OP_GET_TOKEN_RESERVED_BALANCE: &str = "GetTokenReservedBalance";
pub const OP_SET_ALLOWANCE: &str = "SetAllowance";
pub const OP_QUERY_ALLOWANCE: &str = "QueryAllowance";
pub const OP_DEDUCT_ALLOWANCE: &str = "DeductAllowance";
pub const OP_RESTORE_ALLOWANCE: &str = "RestoreAllowance";
pub const OP_PAY_MINER_GAS: &str = "PayMinerGas";
pub const OP_IN_APP_PURCHASE: &str = "InAppPurchase";
pub const OP_ITER_TEA_FT_STATE: &str = "IterTeaFtState";