@sofaws/dapp-core
Version:
A library to hold the main logic for a dapp on the Elrond Network
10 lines • 407 B
TypeScript
import { Address } from '@elrondnetwork/erdjs';
export declare class TransactionParameter {
sender: Address;
receiver: Address;
functionName: string;
inputParameters: string[];
outputParameters: string[];
constructor(sender: Address, receiver: Address, functionName: string, inputParameters: string[], outputParameters: string[]);
}
//# sourceMappingURL=TransactionParameter.d.ts.map