fn mint(
env: soroban_sdk::Env,
to: soroban_sdk::Address,
amount: i128,
evm_tx_hash: soroban_sdk::BytesN<32>,
)
fn withdraw(
env: soroban_sdk::Env,
from: soroban_sdk::Address,
amount: i128,
evm_dest: soroban_sdk::BytesN<20>,
)
fn initialize(
env: soroban_sdk::Env,
relayer: soroban_sdk::Address,
token_address: soroban_sdk::Address,
)
Reads the current yield index so your Frontend UI or other functions can use it
fn get_yield_index(env: soroban_sdk::Env) -> i128
Catches the Yield Index pushed by your Node.js Oracle Relayer
fn update_yield_index(env: soroban_sdk::Env, index: i128)