export type Memo = { type?: string format?: string data?: string } export type Wallet = {secret: string, address:string } export type Signature = {signature: string, signer: PublicKey} export type Address = string export type Secret = string export type PublicKey = string export type Amount = number export type TxHash = string