470 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			470 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
use solana_cli::{
 | 
						|
    cli::{process_command, request_and_confirm_airdrop, CliCommand, CliConfig},
 | 
						|
    spend_utils::SpendAmount,
 | 
						|
    test_utils::{check_ready, check_recent_balance},
 | 
						|
};
 | 
						|
use solana_cli_output::{parse_sign_only_reply_string, OutputFormat};
 | 
						|
use solana_client::{
 | 
						|
    blockhash_query::{self, BlockhashQuery},
 | 
						|
    nonce_utils,
 | 
						|
    rpc_client::RpcClient,
 | 
						|
};
 | 
						|
use solana_core::test_validator::TestValidator;
 | 
						|
use solana_faucet::faucet::run_local_faucet;
 | 
						|
use solana_sdk::{
 | 
						|
    commitment_config::CommitmentConfig,
 | 
						|
    nonce::State as NonceState,
 | 
						|
    pubkey::Pubkey,
 | 
						|
    signature::{keypair_from_seed, Keypair, NullSigner, Signer},
 | 
						|
};
 | 
						|
 | 
						|
#[test]
 | 
						|
fn test_transfer() {
 | 
						|
    solana_logger::setup();
 | 
						|
    let mint_keypair = Keypair::new();
 | 
						|
    let test_validator = TestValidator::with_custom_fees(mint_keypair.pubkey(), 1);
 | 
						|
    let faucet_addr = run_local_faucet(mint_keypair, None);
 | 
						|
 | 
						|
    let rpc_client =
 | 
						|
        RpcClient::new_with_commitment(test_validator.rpc_url(), CommitmentConfig::processed());
 | 
						|
 | 
						|
    let default_signer = Keypair::new();
 | 
						|
    let default_offline_signer = Keypair::new();
 | 
						|
 | 
						|
    let mut config = CliConfig::recent_for_tests();
 | 
						|
    config.json_rpc_url = test_validator.rpc_url();
 | 
						|
    config.signers = vec![&default_signer];
 | 
						|
 | 
						|
    let sender_pubkey = config.signers[0].pubkey();
 | 
						|
    let recipient_pubkey = Pubkey::new(&[1u8; 32]);
 | 
						|
 | 
						|
    request_and_confirm_airdrop(&rpc_client, &faucet_addr, &sender_pubkey, 50_000, &config)
 | 
						|
        .unwrap();
 | 
						|
    check_recent_balance(50_000, &rpc_client, &sender_pubkey);
 | 
						|
    check_recent_balance(0, &rpc_client, &recipient_pubkey);
 | 
						|
 | 
						|
    check_ready(&rpc_client);
 | 
						|
 | 
						|
    // Plain ole transfer
 | 
						|
    config.command = CliCommand::Transfer {
 | 
						|
        amount: SpendAmount::Some(10),
 | 
						|
        to: recipient_pubkey,
 | 
						|
        from: 0,
 | 
						|
        sign_only: false,
 | 
						|
        no_wait: false,
 | 
						|
        blockhash_query: BlockhashQuery::All(blockhash_query::Source::Cluster),
 | 
						|
        nonce_account: None,
 | 
						|
        nonce_authority: 0,
 | 
						|
        fee_payer: 0,
 | 
						|
        derived_address_seed: None,
 | 
						|
        derived_address_program_id: None,
 | 
						|
    };
 | 
						|
    process_command(&config).unwrap();
 | 
						|
    check_recent_balance(49_989, &rpc_client, &sender_pubkey);
 | 
						|
    check_recent_balance(10, &rpc_client, &recipient_pubkey);
 | 
						|
 | 
						|
    // Plain ole transfer, failure due to InsufficientFundsForSpendAndFee
 | 
						|
    config.command = CliCommand::Transfer {
 | 
						|
        amount: SpendAmount::Some(49_989),
 | 
						|
        to: recipient_pubkey,
 | 
						|
        from: 0,
 | 
						|
        sign_only: false,
 | 
						|
        no_wait: false,
 | 
						|
        blockhash_query: BlockhashQuery::All(blockhash_query::Source::Cluster),
 | 
						|
        nonce_account: None,
 | 
						|
        nonce_authority: 0,
 | 
						|
        fee_payer: 0,
 | 
						|
        derived_address_seed: None,
 | 
						|
        derived_address_program_id: None,
 | 
						|
    };
 | 
						|
    assert!(process_command(&config).is_err());
 | 
						|
    check_recent_balance(49_989, &rpc_client, &sender_pubkey);
 | 
						|
    check_recent_balance(10, &rpc_client, &recipient_pubkey);
 | 
						|
 | 
						|
    let mut offline = CliConfig::recent_for_tests();
 | 
						|
    offline.json_rpc_url = String::default();
 | 
						|
    offline.signers = vec![&default_offline_signer];
 | 
						|
    // Verify we cannot contact the cluster
 | 
						|
    offline.command = CliCommand::ClusterVersion;
 | 
						|
    process_command(&offline).unwrap_err();
 | 
						|
 | 
						|
    let offline_pubkey = offline.signers[0].pubkey();
 | 
						|
    request_and_confirm_airdrop(&rpc_client, &faucet_addr, &offline_pubkey, 50, &config).unwrap();
 | 
						|
    check_recent_balance(50, &rpc_client, &offline_pubkey);
 | 
						|
 | 
						|
    // Offline transfer
 | 
						|
    let (blockhash, _) = rpc_client.get_recent_blockhash().unwrap();
 | 
						|
    offline.command = CliCommand::Transfer {
 | 
						|
        amount: SpendAmount::Some(10),
 | 
						|
        to: recipient_pubkey,
 | 
						|
        from: 0,
 | 
						|
        sign_only: true,
 | 
						|
        no_wait: false,
 | 
						|
        blockhash_query: BlockhashQuery::None(blockhash),
 | 
						|
        nonce_account: None,
 | 
						|
        nonce_authority: 0,
 | 
						|
        fee_payer: 0,
 | 
						|
        derived_address_seed: None,
 | 
						|
        derived_address_program_id: None,
 | 
						|
    };
 | 
						|
    offline.output_format = OutputFormat::JsonCompact;
 | 
						|
    let sign_only_reply = process_command(&offline).unwrap();
 | 
						|
    let sign_only = parse_sign_only_reply_string(&sign_only_reply);
 | 
						|
    assert!(sign_only.has_all_signers());
 | 
						|
    let offline_presigner = sign_only.presigner_of(&offline_pubkey).unwrap();
 | 
						|
    config.signers = vec![&offline_presigner];
 | 
						|
    config.command = CliCommand::Transfer {
 | 
						|
        amount: SpendAmount::Some(10),
 | 
						|
        to: recipient_pubkey,
 | 
						|
        from: 0,
 | 
						|
        sign_only: false,
 | 
						|
        no_wait: false,
 | 
						|
        blockhash_query: BlockhashQuery::FeeCalculator(blockhash_query::Source::Cluster, blockhash),
 | 
						|
        nonce_account: None,
 | 
						|
        nonce_authority: 0,
 | 
						|
        fee_payer: 0,
 | 
						|
        derived_address_seed: None,
 | 
						|
        derived_address_program_id: None,
 | 
						|
    };
 | 
						|
    process_command(&config).unwrap();
 | 
						|
    check_recent_balance(39, &rpc_client, &offline_pubkey);
 | 
						|
    check_recent_balance(20, &rpc_client, &recipient_pubkey);
 | 
						|
 | 
						|
    // Create nonce account
 | 
						|
    let nonce_account = keypair_from_seed(&[3u8; 32]).unwrap();
 | 
						|
    let minimum_nonce_balance = rpc_client
 | 
						|
        .get_minimum_balance_for_rent_exemption(NonceState::size())
 | 
						|
        .unwrap();
 | 
						|
    config.signers = vec![&default_signer, &nonce_account];
 | 
						|
    config.command = CliCommand::CreateNonceAccount {
 | 
						|
        nonce_account: 1,
 | 
						|
        seed: None,
 | 
						|
        nonce_authority: None,
 | 
						|
        amount: SpendAmount::Some(minimum_nonce_balance),
 | 
						|
    };
 | 
						|
    process_command(&config).unwrap();
 | 
						|
    check_recent_balance(49_987 - minimum_nonce_balance, &rpc_client, &sender_pubkey);
 | 
						|
 | 
						|
    // Fetch nonce hash
 | 
						|
    let nonce_hash = nonce_utils::get_account_with_commitment(
 | 
						|
        &rpc_client,
 | 
						|
        &nonce_account.pubkey(),
 | 
						|
        CommitmentConfig::processed(),
 | 
						|
    )
 | 
						|
    .and_then(|ref a| nonce_utils::data_from_account(a))
 | 
						|
    .unwrap()
 | 
						|
    .blockhash;
 | 
						|
 | 
						|
    // Nonced transfer
 | 
						|
    config.signers = vec![&default_signer];
 | 
						|
    config.command = CliCommand::Transfer {
 | 
						|
        amount: SpendAmount::Some(10),
 | 
						|
        to: recipient_pubkey,
 | 
						|
        from: 0,
 | 
						|
        sign_only: false,
 | 
						|
        no_wait: false,
 | 
						|
        blockhash_query: BlockhashQuery::FeeCalculator(
 | 
						|
            blockhash_query::Source::NonceAccount(nonce_account.pubkey()),
 | 
						|
            nonce_hash,
 | 
						|
        ),
 | 
						|
        nonce_account: Some(nonce_account.pubkey()),
 | 
						|
        nonce_authority: 0,
 | 
						|
        fee_payer: 0,
 | 
						|
        derived_address_seed: None,
 | 
						|
        derived_address_program_id: None,
 | 
						|
    };
 | 
						|
    process_command(&config).unwrap();
 | 
						|
    check_recent_balance(49_976 - minimum_nonce_balance, &rpc_client, &sender_pubkey);
 | 
						|
    check_recent_balance(30, &rpc_client, &recipient_pubkey);
 | 
						|
    let new_nonce_hash = nonce_utils::get_account_with_commitment(
 | 
						|
        &rpc_client,
 | 
						|
        &nonce_account.pubkey(),
 | 
						|
        CommitmentConfig::processed(),
 | 
						|
    )
 | 
						|
    .and_then(|ref a| nonce_utils::data_from_account(a))
 | 
						|
    .unwrap()
 | 
						|
    .blockhash;
 | 
						|
    assert_ne!(nonce_hash, new_nonce_hash);
 | 
						|
 | 
						|
    // Assign nonce authority to offline
 | 
						|
    config.signers = vec![&default_signer];
 | 
						|
    config.command = CliCommand::AuthorizeNonceAccount {
 | 
						|
        nonce_account: nonce_account.pubkey(),
 | 
						|
        nonce_authority: 0,
 | 
						|
        new_authority: offline_pubkey,
 | 
						|
    };
 | 
						|
    process_command(&config).unwrap();
 | 
						|
    check_recent_balance(49_975 - minimum_nonce_balance, &rpc_client, &sender_pubkey);
 | 
						|
 | 
						|
    // Fetch nonce hash
 | 
						|
    let nonce_hash = nonce_utils::get_account_with_commitment(
 | 
						|
        &rpc_client,
 | 
						|
        &nonce_account.pubkey(),
 | 
						|
        CommitmentConfig::processed(),
 | 
						|
    )
 | 
						|
    .and_then(|ref a| nonce_utils::data_from_account(a))
 | 
						|
    .unwrap()
 | 
						|
    .blockhash;
 | 
						|
 | 
						|
    // Offline, nonced transfer
 | 
						|
    offline.signers = vec![&default_offline_signer];
 | 
						|
    offline.command = CliCommand::Transfer {
 | 
						|
        amount: SpendAmount::Some(10),
 | 
						|
        to: recipient_pubkey,
 | 
						|
        from: 0,
 | 
						|
        sign_only: true,
 | 
						|
        no_wait: false,
 | 
						|
        blockhash_query: BlockhashQuery::None(nonce_hash),
 | 
						|
        nonce_account: Some(nonce_account.pubkey()),
 | 
						|
        nonce_authority: 0,
 | 
						|
        fee_payer: 0,
 | 
						|
        derived_address_seed: None,
 | 
						|
        derived_address_program_id: None,
 | 
						|
    };
 | 
						|
    let sign_only_reply = process_command(&offline).unwrap();
 | 
						|
    let sign_only = parse_sign_only_reply_string(&sign_only_reply);
 | 
						|
    assert!(sign_only.has_all_signers());
 | 
						|
    let offline_presigner = sign_only.presigner_of(&offline_pubkey).unwrap();
 | 
						|
    config.signers = vec![&offline_presigner];
 | 
						|
    config.command = CliCommand::Transfer {
 | 
						|
        amount: SpendAmount::Some(10),
 | 
						|
        to: recipient_pubkey,
 | 
						|
        from: 0,
 | 
						|
        sign_only: false,
 | 
						|
        no_wait: false,
 | 
						|
        blockhash_query: BlockhashQuery::FeeCalculator(
 | 
						|
            blockhash_query::Source::NonceAccount(nonce_account.pubkey()),
 | 
						|
            sign_only.blockhash,
 | 
						|
        ),
 | 
						|
        nonce_account: Some(nonce_account.pubkey()),
 | 
						|
        nonce_authority: 0,
 | 
						|
        fee_payer: 0,
 | 
						|
        derived_address_seed: None,
 | 
						|
        derived_address_program_id: None,
 | 
						|
    };
 | 
						|
    process_command(&config).unwrap();
 | 
						|
    check_recent_balance(28, &rpc_client, &offline_pubkey);
 | 
						|
    check_recent_balance(40, &rpc_client, &recipient_pubkey);
 | 
						|
}
 | 
						|
 | 
						|
#[test]
 | 
						|
fn test_transfer_multisession_signing() {
 | 
						|
    solana_logger::setup();
 | 
						|
    let mint_keypair = Keypair::new();
 | 
						|
    let test_validator = TestValidator::with_custom_fees(mint_keypair.pubkey(), 1);
 | 
						|
    let faucet_addr = run_local_faucet(mint_keypair, None);
 | 
						|
 | 
						|
    let to_pubkey = Pubkey::new(&[1u8; 32]);
 | 
						|
    let offline_from_signer = keypair_from_seed(&[2u8; 32]).unwrap();
 | 
						|
    let offline_fee_payer_signer = keypair_from_seed(&[3u8; 32]).unwrap();
 | 
						|
    let from_null_signer = NullSigner::new(&offline_from_signer.pubkey());
 | 
						|
    let config = CliConfig::recent_for_tests();
 | 
						|
 | 
						|
    // Setup accounts
 | 
						|
    let rpc_client =
 | 
						|
        RpcClient::new_with_commitment(test_validator.rpc_url(), CommitmentConfig::processed());
 | 
						|
    request_and_confirm_airdrop(
 | 
						|
        &rpc_client,
 | 
						|
        &faucet_addr,
 | 
						|
        &offline_from_signer.pubkey(),
 | 
						|
        43,
 | 
						|
        &config,
 | 
						|
    )
 | 
						|
    .unwrap();
 | 
						|
    request_and_confirm_airdrop(
 | 
						|
        &rpc_client,
 | 
						|
        &faucet_addr,
 | 
						|
        &offline_fee_payer_signer.pubkey(),
 | 
						|
        3,
 | 
						|
        &config,
 | 
						|
    )
 | 
						|
    .unwrap();
 | 
						|
    check_recent_balance(43, &rpc_client, &offline_from_signer.pubkey());
 | 
						|
    check_recent_balance(3, &rpc_client, &offline_fee_payer_signer.pubkey());
 | 
						|
    check_recent_balance(0, &rpc_client, &to_pubkey);
 | 
						|
 | 
						|
    check_ready(&rpc_client);
 | 
						|
 | 
						|
    let (blockhash, _) = rpc_client.get_recent_blockhash().unwrap();
 | 
						|
 | 
						|
    // Offline fee-payer signs first
 | 
						|
    let mut fee_payer_config = CliConfig::recent_for_tests();
 | 
						|
    fee_payer_config.json_rpc_url = String::default();
 | 
						|
    fee_payer_config.signers = vec![&offline_fee_payer_signer, &from_null_signer];
 | 
						|
    // Verify we cannot contact the cluster
 | 
						|
    fee_payer_config.command = CliCommand::ClusterVersion;
 | 
						|
    process_command(&fee_payer_config).unwrap_err();
 | 
						|
    fee_payer_config.command = CliCommand::Transfer {
 | 
						|
        amount: SpendAmount::Some(42),
 | 
						|
        to: to_pubkey,
 | 
						|
        from: 1,
 | 
						|
        sign_only: true,
 | 
						|
        no_wait: false,
 | 
						|
        blockhash_query: BlockhashQuery::None(blockhash),
 | 
						|
        nonce_account: None,
 | 
						|
        nonce_authority: 0,
 | 
						|
        fee_payer: 0,
 | 
						|
        derived_address_seed: None,
 | 
						|
        derived_address_program_id: None,
 | 
						|
    };
 | 
						|
    fee_payer_config.output_format = OutputFormat::JsonCompact;
 | 
						|
    let sign_only_reply = process_command(&fee_payer_config).unwrap();
 | 
						|
    let sign_only = parse_sign_only_reply_string(&sign_only_reply);
 | 
						|
    assert!(!sign_only.has_all_signers());
 | 
						|
    let fee_payer_presigner = sign_only
 | 
						|
        .presigner_of(&offline_fee_payer_signer.pubkey())
 | 
						|
        .unwrap();
 | 
						|
 | 
						|
    // Now the offline fund source
 | 
						|
    let mut from_config = CliConfig::recent_for_tests();
 | 
						|
    from_config.json_rpc_url = String::default();
 | 
						|
    from_config.signers = vec![&fee_payer_presigner, &offline_from_signer];
 | 
						|
    // Verify we cannot contact the cluster
 | 
						|
    from_config.command = CliCommand::ClusterVersion;
 | 
						|
    process_command(&from_config).unwrap_err();
 | 
						|
    from_config.command = CliCommand::Transfer {
 | 
						|
        amount: SpendAmount::Some(42),
 | 
						|
        to: to_pubkey,
 | 
						|
        from: 1,
 | 
						|
        sign_only: true,
 | 
						|
        no_wait: false,
 | 
						|
        blockhash_query: BlockhashQuery::None(blockhash),
 | 
						|
        nonce_account: None,
 | 
						|
        nonce_authority: 0,
 | 
						|
        fee_payer: 0,
 | 
						|
        derived_address_seed: None,
 | 
						|
        derived_address_program_id: None,
 | 
						|
    };
 | 
						|
    from_config.output_format = OutputFormat::JsonCompact;
 | 
						|
    let sign_only_reply = process_command(&from_config).unwrap();
 | 
						|
    let sign_only = parse_sign_only_reply_string(&sign_only_reply);
 | 
						|
    assert!(sign_only.has_all_signers());
 | 
						|
    let from_presigner = sign_only
 | 
						|
        .presigner_of(&offline_from_signer.pubkey())
 | 
						|
        .unwrap();
 | 
						|
 | 
						|
    // Finally submit to the cluster
 | 
						|
    let mut config = CliConfig::recent_for_tests();
 | 
						|
    config.json_rpc_url = test_validator.rpc_url();
 | 
						|
    config.signers = vec![&fee_payer_presigner, &from_presigner];
 | 
						|
    config.command = CliCommand::Transfer {
 | 
						|
        amount: SpendAmount::Some(42),
 | 
						|
        to: to_pubkey,
 | 
						|
        from: 1,
 | 
						|
        sign_only: false,
 | 
						|
        no_wait: false,
 | 
						|
        blockhash_query: BlockhashQuery::FeeCalculator(blockhash_query::Source::Cluster, blockhash),
 | 
						|
        nonce_account: None,
 | 
						|
        nonce_authority: 0,
 | 
						|
        fee_payer: 0,
 | 
						|
        derived_address_seed: None,
 | 
						|
        derived_address_program_id: None,
 | 
						|
    };
 | 
						|
    process_command(&config).unwrap();
 | 
						|
 | 
						|
    check_recent_balance(1, &rpc_client, &offline_from_signer.pubkey());
 | 
						|
    check_recent_balance(1, &rpc_client, &offline_fee_payer_signer.pubkey());
 | 
						|
    check_recent_balance(42, &rpc_client, &to_pubkey);
 | 
						|
}
 | 
						|
 | 
						|
#[test]
 | 
						|
fn test_transfer_all() {
 | 
						|
    solana_logger::setup();
 | 
						|
    let mint_keypair = Keypair::new();
 | 
						|
    let test_validator = TestValidator::with_custom_fees(mint_keypair.pubkey(), 1);
 | 
						|
    let faucet_addr = run_local_faucet(mint_keypair, None);
 | 
						|
 | 
						|
    let rpc_client =
 | 
						|
        RpcClient::new_with_commitment(test_validator.rpc_url(), CommitmentConfig::processed());
 | 
						|
 | 
						|
    let default_signer = Keypair::new();
 | 
						|
 | 
						|
    let mut config = CliConfig::recent_for_tests();
 | 
						|
    config.json_rpc_url = test_validator.rpc_url();
 | 
						|
    config.signers = vec![&default_signer];
 | 
						|
 | 
						|
    let sender_pubkey = config.signers[0].pubkey();
 | 
						|
    let recipient_pubkey = Pubkey::new(&[1u8; 32]);
 | 
						|
 | 
						|
    request_and_confirm_airdrop(&rpc_client, &faucet_addr, &sender_pubkey, 50_000, &config)
 | 
						|
        .unwrap();
 | 
						|
    check_recent_balance(50_000, &rpc_client, &sender_pubkey);
 | 
						|
    check_recent_balance(0, &rpc_client, &recipient_pubkey);
 | 
						|
 | 
						|
    check_ready(&rpc_client);
 | 
						|
 | 
						|
    // Plain ole transfer
 | 
						|
    config.command = CliCommand::Transfer {
 | 
						|
        amount: SpendAmount::All,
 | 
						|
        to: recipient_pubkey,
 | 
						|
        from: 0,
 | 
						|
        sign_only: false,
 | 
						|
        no_wait: false,
 | 
						|
        blockhash_query: BlockhashQuery::All(blockhash_query::Source::Cluster),
 | 
						|
        nonce_account: None,
 | 
						|
        nonce_authority: 0,
 | 
						|
        fee_payer: 0,
 | 
						|
        derived_address_seed: None,
 | 
						|
        derived_address_program_id: None,
 | 
						|
    };
 | 
						|
    process_command(&config).unwrap();
 | 
						|
    check_recent_balance(0, &rpc_client, &sender_pubkey);
 | 
						|
    check_recent_balance(49_999, &rpc_client, &recipient_pubkey);
 | 
						|
}
 | 
						|
 | 
						|
#[test]
 | 
						|
fn test_transfer_with_seed() {
 | 
						|
    solana_logger::setup();
 | 
						|
    let mint_keypair = Keypair::new();
 | 
						|
    let test_validator = TestValidator::with_custom_fees(mint_keypair.pubkey(), 1);
 | 
						|
    let faucet_addr = run_local_faucet(mint_keypair, None);
 | 
						|
 | 
						|
    let rpc_client =
 | 
						|
        RpcClient::new_with_commitment(test_validator.rpc_url(), CommitmentConfig::processed());
 | 
						|
 | 
						|
    let default_signer = Keypair::new();
 | 
						|
 | 
						|
    let mut config = CliConfig::recent_for_tests();
 | 
						|
    config.json_rpc_url = test_validator.rpc_url();
 | 
						|
    config.signers = vec![&default_signer];
 | 
						|
 | 
						|
    let sender_pubkey = config.signers[0].pubkey();
 | 
						|
    let recipient_pubkey = Pubkey::new(&[1u8; 32]);
 | 
						|
    let derived_address_seed = "seed".to_string();
 | 
						|
    let derived_address_program_id = solana_stake_program::id();
 | 
						|
    let derived_address = Pubkey::create_with_seed(
 | 
						|
        &sender_pubkey,
 | 
						|
        &derived_address_seed,
 | 
						|
        &derived_address_program_id,
 | 
						|
    )
 | 
						|
    .unwrap();
 | 
						|
 | 
						|
    request_and_confirm_airdrop(&rpc_client, &faucet_addr, &sender_pubkey, 1, &config).unwrap();
 | 
						|
    request_and_confirm_airdrop(&rpc_client, &faucet_addr, &derived_address, 50_000, &config)
 | 
						|
        .unwrap();
 | 
						|
    check_recent_balance(1, &rpc_client, &sender_pubkey);
 | 
						|
    check_recent_balance(50_000, &rpc_client, &derived_address);
 | 
						|
    check_recent_balance(0, &rpc_client, &recipient_pubkey);
 | 
						|
 | 
						|
    check_ready(&rpc_client);
 | 
						|
 | 
						|
    // Transfer with seed
 | 
						|
    config.command = CliCommand::Transfer {
 | 
						|
        amount: SpendAmount::Some(50_000),
 | 
						|
        to: recipient_pubkey,
 | 
						|
        from: 0,
 | 
						|
        sign_only: false,
 | 
						|
        no_wait: false,
 | 
						|
        blockhash_query: BlockhashQuery::All(blockhash_query::Source::Cluster),
 | 
						|
        nonce_account: None,
 | 
						|
        nonce_authority: 0,
 | 
						|
        fee_payer: 0,
 | 
						|
        derived_address_seed: Some(derived_address_seed),
 | 
						|
        derived_address_program_id: Some(derived_address_program_id),
 | 
						|
    };
 | 
						|
    process_command(&config).unwrap();
 | 
						|
    check_recent_balance(0, &rpc_client, &sender_pubkey);
 | 
						|
    check_recent_balance(50_000, &rpc_client, &recipient_pubkey);
 | 
						|
    check_recent_balance(0, &rpc_client, &derived_address);
 | 
						|
}
 |