Updated dist files.

This commit is contained in:
Richard Moore 2020-04-28 05:03:49 -04:00
parent 84c68ac5c1
commit 9f8025155c
No known key found for this signature in database
GPG Key ID: 665176BE8E9DC651
11 changed files with 29 additions and 11 deletions

View File

@ -3,9 +3,11 @@ Changelog
This change log is managed by `scripts/cmds/update-versions` but may be manually updated.
ethers/v5.0.0-beta.184 (2020-04-27 06:28)
ethers/v5.0.0-beta.184 (2020-04-28 04:58)
-----------------------------------------
- Removed old EIP-1193 experimental provider; it can now be supported by Web3Provider as EIP-1193 is now backwards compatible. ([84c68ac](https://github.com/ethers-io/ethers.js/commit/84c68ac5c17b10897ade966d6c8fac1f1f66a4af))
- Fixed getLogs filter deserialization. ([#805](https://github.com/ethers-io/ethers.js/issues/805); [393c0c7](https://github.com/ethers-io/ethers.js/commit/393c0c74a91175adca2e25026dcdb9e6445afd8f))
- Added EIP-1193 support to Web3Provider. ([56af441](https://github.com/ethers-io/ethers.js/commit/56af4413b1dd1787db68985e0b612b63d86fdf7c))
- Minor typing-detected fixes. ([d1f3a42](https://github.com/ethers-io/ethers.js/commit/d1f3a42c119d5588eab667ec7bb6e71042cfb656))
- Added initial support for recoverable coding erros. ([#800](https://github.com/ethers-io/ethers.js/issues/800); [bda6623](https://github.com/ethers-io/ethers.js/commit/bda66230916e58e25a522e8430ce4de25091eb6b))

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -16366,9 +16366,13 @@ function deserializeTopics(data) {
return [];
}
return data.split(/&/g).map((topic) => {
return topic.split("|").map((topic) => {
if (topic === "") {
return [];
}
const comps = topic.split("|").map((topic) => {
return ((topic === "null") ? null : topic);
});
return ((comps.length === 1) ? comps[0] : comps);
});
}
function getEventTag$1(eventName) {

File diff suppressed because one or more lines are too long

View File

@ -18110,9 +18110,13 @@
return [];
}
return data.split(/&/g).map(function (topic) {
return topic.split("|").map(function (topic) {
if (topic === "") {
return [];
}
var comps = topic.split("|").map(function (topic) {
return ((topic === "null") ? null : topic);
});
return ((comps.length === 1) ? comps[0] : comps);
});
}
function getEventTag(eventName) {

File diff suppressed because one or more lines are too long

View File

@ -52,7 +52,7 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"tarballHash": "0xe03bfe094069b37c6d5e9033490799e7bd69f2b7e42e378f7292c4ad4807d542",
"tarballHash": "0xec76c84163413853fccd51f97b45a9db44799fddf3ff010421b5bd654933c0d8",
"types": "./lib/index.d.ts",
"version": "5.0.0-beta.184"
}

View File

@ -59,9 +59,13 @@ function deserializeTopics(data) {
return [];
}
return data.split(/&/g).map((topic) => {
return topic.split("|").map((topic) => {
if (topic === "") {
return [];
}
const comps = topic.split("|").map((topic) => {
return ((topic === "null") ? null : topic);
});
return ((comps.length === 1) ? comps[0] : comps);
});
}
function getEventTag(eventName) {

View File

@ -100,9 +100,13 @@ function deserializeTopics(data) {
return [];
}
return data.split(/&/g).map(function (topic) {
return topic.split("|").map(function (topic) {
if (topic === "") {
return [];
}
var comps = topic.split("|").map(function (topic) {
return ((topic === "null") ? null : topic);
});
return ((comps.length === 1) ? comps[0] : comps);
});
}
function getEventTag(eventName) {

View File

@ -56,7 +56,7 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"tarballHash": "0xb0f4b9497fef99345ace68624b454d876fae52a272514e185063846f9cb28dfb",
"tarballHash": "0xfb3823fd0c40bca106bc0e8e766e37cb766bebb4d0d4a71bea92a59d468c6efa",
"types": "./lib/index.d.ts",
"version": "5.0.0-beta.164"
}