UNPKG

@sofaws/dapp-core

Version:

A library to hold the main logic for a dapp on the Elrond Network

7 lines 442 B
import { Transaction } from '@elrondnetwork/erdjs/out'; import { SendSignedTransactionsReturnType } from 'apiCalls/transactions'; export interface TransactionSenderType { sendSignedTransactionsAsync?: (signedTransactions: Transaction[]) => Promise<SendSignedTransactionsReturnType>; } export declare const TransactionSender: ({ sendSignedTransactionsAsync }: TransactionSenderType) => null; //# sourceMappingURL=TransactionSender.d.ts.map