@unilogin/sdk
Version:
SDK is a JS library, that communicates with relayer. SDK allows managing contract, by creating basic contract-calling messages.
11 lines • 521 B
TypeScript
import { TransactionObserver } from './TransactionObserver';
import { INotifySdk } from './interfaces';
import { Network } from '@unilogin/commons';
export declare class NotifySdk implements INotifySdk {
static createForNetwork(dappId: string, network: Network): INotifySdk;
private readonly api;
constructor(dappId: string, network: Network);
watchTransaction(transactionHash: string): TransactionObserver;
watchAccount(address: string): TransactionObserver;
}
//# sourceMappingURL=NotifySdk.d.ts.map