#[ink::event]
pub struct Deposit {
#[ink(topic)]
pub sender: AccountId,
#[ink(topic)]
pub owner: AccountId,
pub assets: Balance,
pub shares: Balance,
}
#[ink::event]
pub struct Withdraw {
#[ink(topic)]
pub sender: AccountId,
#[ink(topic)]
pub receiver: AccountId,
#[ink(topic)]
pub owner: AccountId,
pub assets: Balance,
pub shares: Balance,
}