@ledgerhq/coin-algorand
Version:
Ledger Algorand Coin integration
12 lines • 558 B
TypeScript
import { AlgoAccount, AlgoTransactionParams } from "./algodv2.types";
import { AlgoTransaction } from "./indexer.types";
export * from "./algodv2.types";
export * from "./indexer.types";
declare const _default: {
getAccount: (address: string) => Promise<AlgoAccount>;
getTransactionParams: () => Promise<AlgoTransactionParams>;
broadcastTransaction: (payload: Buffer) => Promise<string>;
getAccountTransactions: (address: string, startAt?: number) => Promise<AlgoTransaction[]>;
};
export default _default;
//# sourceMappingURL=index.d.ts.map