Trait cw_multi_test::Bank

source ·
pub trait Bank: Module<ExecT = BankMsg, QueryT = BankQuery, SudoT = BankSudo> { }
Expand description

This trait defines the interface for simulating banking operations.

In the test environment, it is essential for testing financial transactions, like transfers and balance checks, within your smart contracts. This trait implements all of these functionalities.

Object Safety§

This trait is not object safe.

Implementors§