Skip to content

Commit

Permalink
admin: update dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Jun 17, 2022
1 parent 0a28679 commit 109c094
Show file tree
Hide file tree
Showing 40 changed files with 303 additions and 287 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Changelog
This change log is managed by `admin/cmds/update-versions` but may be manually updated.


ethers/v5.6.9 (2022-06-17 01:59)
--------------------------------

- Fix NonceManager for increment 0 and provided nonce. ([#3062](https://github.com/ethers-io/ethers.js/issues/3062), [#3085](https://github.com/ethers-io/ethers.js/issues/3085); [0a28679](https://github.com/ethers-io/ethers.js/commit/0a28679994c844cef514f9e800c6cd8e1a21aa30))
- Fixed topic filters for numeric types with string values. ([#3013](https://github.com/ethers-io/ethers.js/issues/3013); [0078e02](https://github.com/ethers-io/ethers.js/commit/0078e026f1b438dd0976200ee16c38ec5a7788f6))

ethers/v5.6.8 (2022-05-24 11:50)
--------------------------------

Expand Down
474 changes: 229 additions & 245 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/abi/lib.esm/_version.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export declare const version = "abi/5.6.3";
export declare const version = "abi/5.6.4";
//# sourceMappingURL=_version.d.ts.map
2 changes: 1 addition & 1 deletion packages/abi/lib.esm/_version.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/abi/lib.esm/interface.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions packages/abi/lib.esm/interface.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/abi/lib.esm/interface.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/abi/lib/_version.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export declare const version = "abi/5.6.3";
export declare const version = "abi/5.6.4";
//# sourceMappingURL=_version.d.ts.map
2 changes: 1 addition & 1 deletion packages/abi/lib/_version.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/abi/lib/interface.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions packages/abi/lib/interface.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/abi/lib/interface.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/abi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"test": "echo \"Error: no test specified\" && exit 1"
},
"sideEffects": false,
"tarballHash": "0x2d96f539c1e65b970f674ea9f938ed6f032fdcce7ae53d15fbc862bb4ccee929",
"tarballHash": "0xa00ec647e8959521fcdfff1174d0d720a02a127d7cb52f6a5fa0032080ee1557",
"types": "./lib/index.d.ts",
"version": "5.6.3"
"version": "5.6.4"
}
2 changes: 1 addition & 1 deletion packages/abi/src.ts/_version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = "abi/5.6.3";
export const version = "abi/5.6.4";
10 changes: 8 additions & 2 deletions packages/ethers/dist/ethers.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -5130,7 +5130,7 @@ class Description {
}
}

const version$4 = "abi/5.6.3";
const version$4 = "abi/5.6.4";

"use strict";
const logger$4 = new Logger(version$4);
Expand Down Expand Up @@ -8926,6 +8926,12 @@ class Interface {
else if (param.type === "bytes") {
return keccak256(hexlify(value));
}
if (param.type === "bool" && typeof (value) === "boolean") {
value = (value ? "0x01" : "0x00");
}
if (param.type.match(/^u?int/)) {
value = BigNumber.from(value).toHexString();
}
// Check addresses are valid
if (param.type === "address") {
this._abiCoder.encode(["address"], [value]);
Expand Down Expand Up @@ -23736,7 +23742,7 @@ var utils$1 = /*#__PURE__*/Object.freeze({
Indexed: Indexed
});

const version$p = "ethers/5.6.8";
const version$p = "ethers/5.6.9";

"use strict";
const logger$J = new Logger(version$p);
Expand Down
2 changes: 1 addition & 1 deletion packages/ethers/dist/ethers.esm.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/ethers/dist/ethers.esm.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/ethers/dist/ethers.esm.min.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 109c094

Please sign in to comment.