You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
0: "Success",// The transaction successfully executed
34
+
1: "Account In Use",// Includes a writable account that was already in use at the time this transaction was executed
35
+
2: "Account Loaded Twice",// Lists at least one account pubkey more than once
36
+
3: "Account Not Found",// Lists at least one account pubkey that was not found in the accounts database
37
+
4: "Program Account Not Found",// Could not find or parse a listed program account
38
+
5: "Insufficient Funds For Fee",// Lists a fee payer that does not have enough SOL to fund this transaction
39
+
6: "Invalid Account For Fee",// Lists a fee payer that may not be used to pay transaction fees
40
+
7: "Already Processed",// This transaction has been processed before (e.g. the transaction was sent twice)
41
+
8: "Blockhash Not Found",// Provides a block hash of a recent block in the chain, b, that this validator has not seen yet, or that is so old it has been discarded
42
+
9: "Instruction Error",// Includes an instruction that failed to process
43
+
10: "Call Chain Too Deep",// Includes a cross program invocation (CPI) chain that exceeds the maximum depth allowed
44
+
11: "Missing Signature For Fee",// Requires a fee but has no signature present
45
+
12: "Invalid Account Index",// Contains an invalid account reference in one of its instructions
46
+
13: "Signature Failure",// Includes a signature that did not pass verification
47
+
14: "Invalid Program For Execution",// Includes a program that may not be used for executing transactions
48
+
15: "Sanitize Failure",// Failed to parse a portion of the transaction payload
49
+
16: "Cluster Maintenance",// Cluster is undergoing an active maintenance window
50
+
17: "Account Borrow Outstanding",// Transaction processing left an account with an outstanding borrowed reference
51
+
18: "Would Exceed Max Block Cost Limit",// Exceeded the maximum compute unit cost allowed for this slot
52
+
19: "Unsupported Version",// Includes a transaction version that is not supported by this validator
53
+
20: "Invalid Writable Account",// Includes an account marked as writable that is not in fact writable
54
+
21: "Would Exceed Max Account Cost Limit",// Exceeded the maximum per-account compute unit cost allowed for this slot
55
+
22: "Would Exceed Account Data Block Limit",// Retrieved accounts data size exceeds the limit imposed for this slot
56
+
23: "Too Many Account Locks",// Locked too many accounts
57
+
24: "Address Lookup Table Not Found",// Loads an address table account that doesn't exist
58
+
25: "Invalid Address Lookup Table Owner",// Loads an address table account with an invalid owner
59
+
26: "Invalid Address Lookup Table Data",// Loads an address table account with invalid data
60
+
27: "Invalid Address Lookup Table Index",// Address table lookup uses an invalid index
61
+
28: "Invalid Rent Paying Account",// Deprecated
62
+
29: "Would Exceed Max Vote Cost Limit",// Exceeded the maximum vote compute unit cost allowed for this slot
63
+
30: "Would Exceed Account Data Total Limit",// Deprecated
0 commit comments