@ledgerhq/coin-aptos
Version:
Ledger Aptos Coin integration
9 lines • 562 B
TypeScript
import type { RawTransaction } from "@aptos-labs/ts-sdk";
import type { Account } from "@ledgerhq/types-live";
import { TOKEN_TYPE } from "../constants";
import type { AptosAPI } from "../network";
import type { Transaction } from "../types";
declare const buildTransaction: (account: Account, transaction: Transaction, aptosClient: AptosAPI, contractAddress?: string, tokenType?: TOKEN_TYPE) => Promise<RawTransaction>;
export declare const isTokenType: (value: string) => boolean;
export default buildTransaction;
//# sourceMappingURL=buildTransaction.d.ts.map