mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-03 22:03:06 +00:00
65 lines
2.0 KiB
Rust
65 lines
2.0 KiB
Rust
use common::{error::ExecutionFailureKind, sequencer_client::json::SendTxResponse};
|
|
use nssa::AccountId;
|
|
use nssa_core::{
|
|
MembershipProof, NullifierPublicKey, SharedSecretKey, encryption::IncomingViewingPublicKey,
|
|
};
|
|
|
|
use crate::WalletCore;
|
|
|
|
impl WalletCore {
|
|
pub async fn send_private_native_token_transfer_outer_account(
|
|
&self,
|
|
from: AccountId,
|
|
to_npk: NullifierPublicKey,
|
|
to_ipk: IncomingViewingPublicKey,
|
|
balance_to_move: u128,
|
|
) -> Result<(SendTxResponse, [SharedSecretKey; 2]), ExecutionFailureKind> {
|
|
let (instruction_data, program, tx_pre_check) =
|
|
WalletCore::auth_transfer_preparation(balance_to_move);
|
|
|
|
self.private_tx_two_accs_receiver_outer(
|
|
from,
|
|
to_npk,
|
|
to_ipk,
|
|
instruction_data,
|
|
tx_pre_check,
|
|
program,
|
|
)
|
|
.await
|
|
}
|
|
|
|
pub async fn send_private_native_token_transfer_owned_account_not_initialized(
|
|
&self,
|
|
from: AccountId,
|
|
to: AccountId,
|
|
balance_to_move: u128,
|
|
) -> Result<(SendTxResponse, [SharedSecretKey; 2]), ExecutionFailureKind> {
|
|
let (instruction_data, program, tx_pre_check) =
|
|
WalletCore::auth_transfer_preparation(balance_to_move);
|
|
|
|
self.private_tx_two_accs_receiver_uninit(from, to, instruction_data, tx_pre_check, program)
|
|
.await
|
|
}
|
|
|
|
pub async fn send_private_native_token_transfer_owned_account_already_initialized(
|
|
&self,
|
|
from: AccountId,
|
|
to: AccountId,
|
|
balance_to_move: u128,
|
|
to_proof: MembershipProof,
|
|
) -> Result<(SendTxResponse, [SharedSecretKey; 2]), ExecutionFailureKind> {
|
|
let (instruction_data, program, tx_pre_check) =
|
|
WalletCore::auth_transfer_preparation(balance_to_move);
|
|
|
|
self.private_tx_two_accs_all_init(
|
|
from,
|
|
to,
|
|
instruction_data,
|
|
tx_pre_check,
|
|
program,
|
|
to_proof,
|
|
)
|
|
.await
|
|
}
|
|
}
|