@unilogin/sdk
Version:
SDK is a JS library, that communicates with relayer. SDK allows managing contract, by creating basic contract-calling messages.
20 lines • 587 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var mockTxObserver = {
onConfirmed: function () { },
onPool: function () { },
onSent: function () { },
};
var MockNotifySdk = /** @class */ (function () {
function MockNotifySdk() {
}
MockNotifySdk.prototype.watchTransaction = function () {
return mockTxObserver;
};
MockNotifySdk.prototype.watchAccount = function () {
return mockTxObserver;
};
return MockNotifySdk;
}());
exports.MockNotifySdk = MockNotifySdk;
//# sourceMappingURL=MockNotifySdk.js.map
;