123456789101112131415 |
- type Wallet = {
- address: string;
- secret: string;
- };
- type DatawriterConfig = {
- receiveAddress: string;
- sendWallet: Wallet;
- xrpNode: string;
- };
- export declare class Datawriter {
- private config;
- constructor(config: DatawriterConfig);
- callEndpoint(endpointName: string, contractAddress: string, parameter: any, fee?: number): Promise<void>;
- }
- export {};
|