Skip to content

Commit

Permalink
add healthsol (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
billythedummy authored Sep 27, 2024
1 parent 6b0d912 commit bd1d529
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 9 deletions.
4 changes: 2 additions & 2 deletions rust/sanctum-lst-list/tests/tests/logo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ use crate::common::find_sanctum_lst_by_symbol_unwrapped;
// Tests for latest batch

#[tokio::test]
async fn verify_logo_image_uri_valid_rugsol() {
verify_token_logo_image_uri_valid_by_symbol("rugSOL").await;
async fn verify_logo_image_uri_valid_healthsol() {
verify_token_logo_image_uri_valid_by_symbol("healthSOL").await;
}

async fn verify_token_logo_image_uri_valid_by_symbol(symbol: &str) {
Expand Down
4 changes: 2 additions & 2 deletions rust/sanctum-lst-list/tests/tests/metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ use crate::common::{find_sanctum_lst_by_symbol_unwrapped, SOLANA_RPC_URL};
// Tests for latest batch

#[tokio::test]
async fn verify_lst_token_metadata_rugsol() {
verify_lst_token_metadata_by_symbol("rugSOL").await;
async fn verify_lst_token_metadata_healthsol() {
verify_lst_token_metadata_by_symbol("healthSOL").await;
}

#[derive(Debug, Deserialize)]
Expand Down
4 changes: 2 additions & 2 deletions rust/sanctum-lst-list/tests/tests/pool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ use crate::common::{find_sanctum_lst_by_symbol_unwrapped, SOLANA_RPC_URL};
// Tests for latest batch

#[test]
fn verify_pool_valid_rugsol() {
verify_pool_valid_by_symbol("rugSOL");
fn verify_pool_valid_healthsol() {
verify_pool_valid_by_symbol("healthSOL");
}

fn verify_pool_valid_by_symbol(symbol: &str) {
Expand Down
4 changes: 2 additions & 2 deletions rust/sanctum-lst-list/tests/tests/sanctum_router.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ use crate::common::{find_sanctum_lst_by_symbol_unwrapped, SOLANA_RPC_URL};
// Tests for latest batch

#[test]
fn verify_sanctum_router_fee_token_acc_created_rugsol() {
verify_sanctum_router_fee_token_acc_created_by_symbol("rugSOL").unwrap();
fn verify_sanctum_router_fee_token_acc_created_healthsol() {
verify_sanctum_router_fee_token_acc_created_by_symbol("healthSOL").unwrap();
}

// Copied from
Expand Down
12 changes: 12 additions & 0 deletions sanctum-lst-list.toml
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,18 @@ program = "SanctumSplMulti"
pool = "141oNu5DmA5nkoVACZVXMgy6KDFN1PftaTjbzzXvTXbT"
validator_list = "AsRuK1PdjxRKdenfvfvqyoG9TX2maJbNhQWbAMyiZC6d"

[[sanctum_lst_list]]
name = "healthSOL"
symbol = "healthSOL"
mint = "HEALfPnLU31roNrnhB8bHWQVszMMAKro4KJRrnkQyVpZ"
decimals = 9
token_program = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"
logo_uri = "https://arweave.net/wpNG0yio0JzRcvxmN-mfUu1sfCnwF9NLo6OoZtijcpA"
[sanctum_lst_list.pool]
program = "SanctumSplMulti"
pool = "Ceuqmz4qrwjrKnpBt4Byen58mfvbAAh67vDJqnsBkoPD"
validator_list = "7mUknquh6kZxni9vr7cdA6NeFpcT7dimdhqYspxHQ4it"

# SanctumSpl Pool -- Single Pool upgrade path
[[sanctum_lst_list]]
name = "Power Staked SOL"
Expand Down
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.29",
"version": "0.2.30",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
Expand Down

0 comments on commit bd1d529

Please sign in to comment.