tensor-eigen 0.0.29

Utility CLI for the Tensor Foundation Solana programs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod create;
mod edit;

pub use create::*;
pub use edit::*;

use std::path::PathBuf;

use {
    anyhow::Result,
    solana_sdk::{pubkey::Pubkey, signer::Signer, transaction::Transaction},
    tensor_amm::accounts::Pool,
};

use crate::{setup::CliConfig, transaction};