|
| 1 | +pub const ANCHOR_LANG_ACCOUNT: [&str; 4] = ["anchor_lang", "accounts", "account", "Account"]; |
1 | 2 | pub const ANCHOR_LANG_CONTEXT: [&str; 3] = ["anchor_lang", "context", "Context"];
|
2 | 3 | pub const ANCHOR_LANG_SIGNER: [&str; 4] = ["anchor_lang", "accounts", "signer", "Signer"];
|
| 4 | +pub const ANCHOR_LANG_DISCRIMINATOR_TRAIT: [&str; 2] = ["anchor_lang", "Discriminator"]; |
| 5 | +pub const ANCHOR_LANG_TRY_DESERIALIZE: [&str; 3] = |
| 6 | + ["anchor_lang", "AccountDeserialize", "try_deserialize"]; |
| 7 | + |
| 8 | +pub const BORSH_TRY_FROM_SLICE: [&str; 4] = ["borsh", "de", "BorshDeserialize", "try_from_slice"]; |
3 | 9 |
|
4 | 10 | pub const SOLANA_PROGRAM_ACCOUNT_INFO: [&str; 3] =
|
5 | 11 | ["solana_program", "account_info", "AccountInfo"];
|
6 |
| -pub const BORSH_TRY_FROM_SLICE: [&str; 4] = ["borsh", "de", "BorshDeserialize", "try_from_slice"]; |
7 |
| -pub const ANCHOR_ACCOUNT: [&str; 4] = ["anchor_lang", "accounts", "account", "Account"]; |
8 |
| -pub const ANCHOR_DISCRIMINATOR_TRAIT: [&str; 2] = ["anchor_lang", "Discriminator"]; |
9 |
| -pub const ANCHOR_TRY_DESERIALIZE: [&str; 3] = |
10 |
| - ["anchor_lang", "AccountDeserialize", "try_deserialize"]; |
|
0 commit comments