Skip to content

Commit

Permalink
Merge pull request #131 from igneous-labs/feat/add-espresSOL-salSOL
Browse files Browse the repository at this point in the history
feat: add espresSOL and salSOL
  • Loading branch information
alkinemk authored Dec 16, 2024
2 parents e2fb715 + ba20a71 commit 8d8e0f7
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 7 deletions.
2 changes: 1 addition & 1 deletion rust/sanctum-lst-list/tests/tests/logo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use crate::common::find_sanctum_lst_by_symbol_unwrapped;

#[tokio::test]
async fn verify_logo_image_uri_valid_latest_batch() {
verify_token_logo_image_uri_valid_by_symbol("tnkrSOL").await;
verify_token_logo_image_uri_valid_by_symbol("espresSOL").await;
}

async fn verify_token_logo_image_uri_valid_by_symbol(symbol: &str) {
Expand Down
2 changes: 1 addition & 1 deletion rust/sanctum-lst-list/tests/tests/metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use crate::common::{find_sanctum_lst_by_symbol_unwrapped, SOLANA_RPC_URL};

#[tokio::test]
async fn verify_lst_token_metadata_latest_batch() {
verify_lst_token_metadata_by_symbol("tnkrSOL").await;
verify_lst_token_metadata_by_symbol("espresSOL").await;
}

#[derive(Debug, Deserialize)]
Expand Down
2 changes: 1 addition & 1 deletion rust/sanctum-lst-list/tests/tests/pool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use crate::common::{find_sanctum_lst_by_symbol_unwrapped, SOLANA_RPC_URL};

#[test]
fn verify_pool_valid_latest_batch() {
verify_pool_valid_by_symbol("tnkrSOL");
verify_pool_valid_by_symbol("espresSOL");
}

fn verify_pool_valid_by_symbol(symbol: &str) {
Expand Down
2 changes: 1 addition & 1 deletion rust/sanctum-lst-list/tests/tests/sanctum_router.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use crate::common::{find_sanctum_lst_by_symbol_unwrapped, SOLANA_RPC_URL};

#[test]
fn verify_sanctum_router_fee_token_acc_created_latest_batch() {
verify_sanctum_router_fee_token_acc_created_by_symbol("tnkrSOL").unwrap();
verify_sanctum_router_fee_token_acc_created_by_symbol("espresSOL").unwrap();
}

// Copied from
Expand Down
24 changes: 24 additions & 0 deletions sanctum-lst-list.toml
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,30 @@ program = "SanctumSplMulti"
pool = "3VzB5ZUz6w3AKM9w8zeRPF5kEDr6M63FavuM4WVQmsN4"
validator_list = "tyajAymKWhN5YF3V32okWEpsKSAZmg5kU56mduvF4KW"

[[sanctum_lst_list]]
name = "Metasal"
symbol = "salSOL"
mint = "sa1bpnBbdtXEZ6bLRUzgNqfVAMrvtr7MivjxjAtRyie"
decimals = 9
token_program = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"
logo_uri = "https://raw.githubusercontent.com/igneous-labs/lst-offchain-metadata/master/creator_coins/salSOL/salSOL.png"
[sanctum_lst_list.pool]
program = "SanctumSplMulti"
pool = "5R8xFoNZ8GMXHPaKgMDtUXSyQ4Ah3mpd1Ya73kieEGnZ"
validator_list = "9hQho2PavGuayQxq61qa9ydCWerRaabFza6fAJRG4rYN"

[[sanctum_lst_list]]
name = "espresSOL"
symbol = "espresSOL"
mint = "esprDDGBNVg3pJM8EQtCsVwcUsEk5TxgYGVjD4Uu7pZ"
decimals = 9
token_program = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"
logo_uri = "https://raw.githubusercontent.com/igneous-labs/lst-offchain-metadata/master/creator_coins/espresSOL/espresSOL.png"
[sanctum_lst_list.pool]
program = "SanctumSplMulti"
pool = "32hsg4iXSPbbJxsr4oFkM2skBoauv9coqaUSAvXFU2JE"
validator_list = "6zmQjSACEXCQhar7HRhasfGUHMc6XYDrrmrTFQHuD2F4"

# SanctumSpl Pool -- Single Pool upgrade path
[[sanctum_lst_list]]
name = "Power Staked SOL"
Expand Down
4 changes: 2 additions & 2 deletions ts/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sanctum-lst-list",
"version": "0.2.43",
"version": "0.2.44",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
Expand Down

0 comments on commit 8d8e0f7

Please sign in to comment.