import {Types} from "aptos"; export type Table = { handle: string } export type TableWithLength = { inner: Table, length: string, } export type Element = { key: K, value: V } // key of simple map in response data is always string export type SimpleMap = { data: Element[] } export type TEd25519PublicKey = Types.Ed25519Signature['public_key'] export type TEd25519Signature = Types.Ed25519Signature['signature'] export type Vector = T[]