mirror of
https://github.com/logos-blockchain/lssa-zkvm-testing.git
synced 2026-01-05 14:53:07 +00:00
12 lines
287 B
Rust
12 lines
287 B
Rust
use transfer_methods::{TRANSFER_ELF, TRANSFER_ID};
|
|
use tuki::Program;
|
|
|
|
pub struct TransferProgram;
|
|
|
|
impl Program for TransferProgram {
|
|
const PROGRAM_ID: [u32; 8] = TRANSFER_ID;
|
|
const PROGRAM_ELF: &[u8] = TRANSFER_ELF;
|
|
// Amount to transfer
|
|
type InstructionData = u128;
|
|
}
|