mirror of
https://github.com/logos-blockchain/lssa-zkvm-testing.git
synced 2026-01-03 22:03:10 +00:00
24 lines
505 B
Rust
24 lines
505 B
Rust
use core::{
|
|
account::Account,
|
|
input::InputVisibiility,
|
|
types::{Address, Commitment, Key, Nullifier},
|
|
};
|
|
|
|
use nssa::program::TransferProgram;
|
|
|
|
use crate::mocked_components::sequencer::MockedSequencer;
|
|
|
|
pub mod transfer_deshielded;
|
|
pub mod transfer_private;
|
|
pub mod transfer_public;
|
|
pub mod transfer_shielded;
|
|
|
|
pub struct MockedClient;
|
|
|
|
impl MockedClient {
|
|
pub fn fresh_account_for_mint(address: Address) -> Account {
|
|
let nonce = [0; 8];
|
|
Account::new(address, nonce)
|
|
}
|
|
}
|