UNPKG

@ledgerhq/coin-algorand

Version:
11 lines 547 B
import { broadcastTransaction, getAccount, getTransactionParams } from "./algodv2"; import { getAccountTransactions } from "./indexer"; export * from "./algodv2.types"; export * from "./indexer.types"; export default { getAccount: async (address) => getAccount(address), getTransactionParams: async () => getTransactionParams(), broadcastTransaction: async (payload) => broadcastTransaction(payload), getAccountTransactions: async (address, startAt) => getAccountTransactions(address, startAt), }; //# sourceMappingURL=index.js.map