Skip to content

Commit 772c27a

Browse files
add pubkey const fn; remove solana-program dep
1 parent a1e10ab commit 772c27a

File tree

3 files changed

+25
-8
lines changed

3 files changed

+25
-8
lines changed

Cargo.lock

+16-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

toolbox/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ token-2022 = []
1717
anchor-lang = "0.29.0"
1818
anchor-spl = { version = "0.29.0", features = ["default"] }
1919
bytemuck = "1.14"
20+
five8_const = "0.1.3"
2021
mpl-bubblegum = { version = "1.4.0", optional = true }
2122
mpl-core = { version = "0.7.2", optional = true }
2223
mpl-token-metadata = "4.0.0"
23-
solana-program = "^1.14, <1.19"
2424
spl-account-compression = { version = "0.3.0", features = ["cpi"] }
2525
spl-noop = { version = "0.2.0", features = ["no-entrypoint"] }
2626
spl-token-metadata-interface = "0.2.0"

toolbox/src/common.rs

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
#![allow(clippy::result_large_err)]
2-
32
use anchor_lang::{
43
prelude::*,
5-
solana_program::{program::invoke, system_instruction, system_program},
4+
solana_program::{program::invoke, pubkey::Pubkey, system_instruction, system_program},
65
};
76
use anchor_spl::{associated_token::AssociatedToken, token_interface::TokenInterface};
87
use mpl_token_metadata::types::TokenStandard;
9-
use solana_program::pubkey;
108
use std::slice::Iter;
119
use tensor_vipers::prelude::*;
1210

@@ -19,11 +17,15 @@ pub const TNSR_DISCOUNT_BPS: u64 = 2500;
1917
pub const TAKER_FEE_BPS: u64 = 200;
2018
pub const MAKER_BROKER_PCT: u64 = 80; // Out of 100
2119

20+
pub const fn pubkey(base58str: &str) -> Pubkey {
21+
Pubkey::new_from_array(five8_const::decode_32_const(base58str))
22+
}
23+
2224
pub mod escrow {
2325
use super::*;
2426
declare_id!("TSWAPaqyCSx2KABk68Shruf4rp7CxcNi8hAsbdwmHbN");
2527

26-
pub const TSWAP_SINGLETON: Pubkey = pubkey!("4zdNGgAtFsW1cQgHqkiWyRsxaAgxrSRRynnuunxzjxue");
28+
pub const TSWAP_SINGLETON: Pubkey = pubkey("4zdNGgAtFsW1cQgHqkiWyRsxaAgxrSRRynnuunxzjxue");
2729
}
2830

2931
pub mod fees {
@@ -35,7 +37,7 @@ pub mod marketplace {
3537
use super::*;
3638
declare_id!("TCMPhJdwDryooaGtiocG1u3xcYbRpiJzb283XfCZsDp");
3739

38-
pub const TCOMP_SINGLETON: Pubkey = pubkey!("q4s8z5dRAt2fKC2tLthBPatakZRXPMx1LfacckSXd4f");
40+
pub const TCOMP_SINGLETON: Pubkey = pubkey("q4s8z5dRAt2fKC2tLthBPatakZRXPMx1LfacckSXd4f");
3941
}
4042

4143
pub mod mpl_token_auth_rules {
@@ -47,7 +49,7 @@ pub mod price_lock {
4749
use super::*;
4850
declare_id!("TLoCKic2wGJm7VhZKumih4Lc35fUhYqVMgA4j389Buk");
4951

50-
pub const TLOCK_SINGLETON: Pubkey = pubkey!("CdXA5Vpg4hqvsmLSKC2cygnJVvsQTrDrrn428nAZQaKz");
52+
pub const TLOCK_SINGLETON: Pubkey = pubkey("CdXA5Vpg4hqvsmLSKC2cygnJVvsQTrDrrn428nAZQaKz");
5153
}
5254

5355
/// Calculates fee vault shard from a given AccountInfo or Pubkey. Relies on the Anchor `Key` trait.

0 commit comments

Comments
 (0)