Skip to content

Commit 5bef614

Browse files
authored
Merge branch 'master' into faucet-pubkey-hasher
2 parents 8e15653 + 3e2d6a9 commit 5bef614

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+613
-1252
lines changed

Cargo.lock

Lines changed: 23 additions & 157 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -564,11 +564,11 @@ solana-zk-token-proof-program = { path = "programs/zk-token-proof", version = "=
564564
solana-zk-token-sdk = { path = "zk-token-sdk", version = "=3.0.0" }
565565
spl-associated-token-account-interface = "1.0.0"
566566
spl-generic-token = "1.0.1"
567-
spl-memo = "6.0.0"
567+
spl-memo-interface = "1.0.0"
568568
spl-pod = "0.5.1"
569569
spl-token = "8.0.0"
570-
spl-token-2022 = "8.0.1"
571-
spl-token-confidential-transfer-proof-extraction = "0.3.0"
570+
spl-token-2022-interface = "1.0.0"
571+
spl-token-confidential-transfer-proof-extraction = "0.4.0"
572572
spl-token-group-interface = "0.6.0"
573573
spl-token-metadata-interface = "0.7.0"
574574
static_assertions = "1.1.0"
@@ -643,12 +643,12 @@ crossbeam-epoch = { git = "https://github.com/anza-xyz/crossbeam", rev = "fd279d
643643

644644
# We include the following crates as our dependencies above from crates.io:
645645
#
646-
# * spl-associated-token-account
646+
# * spl-associated-token-account-interface
647647
# * spl-instruction-padding
648-
# * spl-memo
648+
# * spl-memo-interface
649649
# * spl-pod
650650
# * spl-token
651-
# * spl-token-2022
651+
# * spl-token-2022-interface
652652
# * spl-token-metadata-interface
653653
#
654654
# They, in turn, depend on a number of crates that we also include directly

account-decoder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ solana-sysvar = { workspace = true }
4646
solana-vote-interface = { workspace = true, features = ["bincode"] }
4747
spl-generic-token = { workspace = true }
4848
spl-token = { workspace = true, features = ["no-entrypoint"] }
49-
spl-token-2022 = { workspace = true, features = ["no-entrypoint"] }
49+
spl-token-2022-interface = { workspace = true }
5050
spl-token-group-interface = { workspace = true }
5151
spl-token-metadata-interface = { workspace = true }
5252
thiserror = { workspace = true }

account-decoder/src/parse_account_data.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use {
1313
solana_sdk_ids::{
1414
address_lookup_table, bpf_loader_upgradeable, config, stake, system_program, sysvar, vote,
1515
},
16-
spl_token_2022::extension::{
16+
spl_token_2022_interface::extension::{
1717
interest_bearing_mint::InterestBearingConfig, scaled_ui_amount::ScaledUiAmountConfig,
1818
},
1919
std::collections::HashMap,
@@ -34,7 +34,10 @@ pub static PARSABLE_PROGRAM_IDS: std::sync::LazyLock<HashMap<Pubkey, ParsableAcc
3434
m.insert(config::id(), ParsableAccount::Config);
3535
m.insert(system_program::id(), ParsableAccount::Nonce);
3636
m.insert(spl_token::id(), ParsableAccount::SplToken);
37-
m.insert(spl_token_2022::id(), ParsableAccount::SplToken2022);
37+
m.insert(
38+
spl_token_2022_interface::id(),
39+
ParsableAccount::SplToken2022,
40+
);
3841
m.insert(stake::id(), ParsableAccount::Stake);
3942
m.insert(sysvar::id(), ParsableAccount::Sysvar);
4043
m.insert(vote::id(), ParsableAccount::Vote);

0 commit comments

Comments
 (0)