interface TxExtension {
    tx: {
        getTx: ((txId: string) => Promise<GetTxResponse>);
        simulate: ((messages: readonly Any[], memo: undefined | string, signer: Pubkey, sequence: number) => Promise<SimulateResponse>);
    };
}

Properties

Properties

tx: {
    getTx: ((txId: string) => Promise<GetTxResponse>);
    simulate: ((messages: readonly Any[], memo: undefined | string, signer: Pubkey, sequence: number) => Promise<SimulateResponse>);
}