pub trait StacksWallet {
    fn mint(&mut self, op: &PegInOp) -> StacksTransaction;
    fn burn(&mut self, op: &PegOutRequestOp) -> StacksTransaction;
    fn set_wallet_address(
        &mut self,
        address: PegWalletAddress
    ) -> StacksTransaction; }

Required Methods§

Implementors§