You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
457 B
23 lines
457 B
navigator.qt = _web3;
|
|
|
|
(function () {
|
|
navigator.qt.handlers = [];
|
|
Object.defineProperty(navigator.qt, 'onmessage', {
|
|
set: function (handler) {
|
|
navigator.qt.handlers.push(handler);
|
|
}
|
|
});
|
|
})();
|
|
|
|
navigator.qt.response.connect(function (res) {
|
|
navigator.qt.handlers.forEach(function (handler) {
|
|
handler(res);
|
|
});
|
|
});
|
|
|
|
if (window.Promise === undefined) {
|
|
window.Promise = ES6Promise.Promise;
|
|
}
|
|
|
|
web3.setProvider(new web3.providers.QtProvider());
|
|
|
|
|