* solana-tokens: Add capability to perform the same transfer to a batch of recipients (#12259)
* Add transfer-amount argument, use simplified input-csv
* Add transfer-amount to readme
(cherry picked from commit a48cc073cf
)
# Conflicts:
# tokens/src/commands.rs
# tokens/tests/commands.rs
* Fix build
Co-authored-by: Tyera Eulberg <teulberg@gmail.com>
Co-authored-by: Tyera Eulberg <tyera@solana.com>
19 lines
740 B
Rust
19 lines
740 B
Rust
use solana_client::rpc_client::RpcClient;
|
|
use solana_core::validator::{TestValidator, TestValidatorOptions};
|
|
use solana_sdk::native_token::sol_to_lamports;
|
|
use solana_tokens::commands::test_process_distribute_tokens_with_client;
|
|
use std::fs::remove_dir_all;
|
|
|
|
#[test]
|
|
fn test_process_distribute_with_rpc_client() {
|
|
let validator = TestValidator::run_with_options(TestValidatorOptions {
|
|
mint_lamports: sol_to_lamports(9_000_000.0),
|
|
..TestValidatorOptions::default()
|
|
});
|
|
let rpc_client = RpcClient::new_socket(validator.leader_data.rpc);
|
|
test_process_distribute_tokens_with_client(rpc_client, validator.alice, None);
|
|
|
|
validator.server.close().unwrap();
|
|
remove_dir_all(validator.ledger_path).unwrap();
|
|
}
|