Skip to content

Commit 71b7547

Browse files
committed
Update dist files.
1 parent 4970385 commit 71b7547

File tree

81 files changed

+778
-129
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+778
-129
lines changed

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,15 @@ Changelog
33

44
This change log is managed by `admin/cmds/update-versions` but may be manually updated.
55

6-
ethers/v5.4.0 (2021-06-24 01:34)
6+
ethers/v5.4.0 (2021-06-26 01:50)
77
--------------------------------
88

9-
- Added EIP-1559 support. ([#1610](https://github.com/ethers-io/ethers.js/issues/1610); [319987e](https://github.com/ethers-io/ethers.js/commit/319987ec3e1d0e8787f98f525e5fc07875bf5570), [91fff14](https://github.com/ethers-io/ethers.js/commit/91fff1449df5e337fd3b4681b5a04b151d92f5a1), [c5bca77](https://github.com/ethers-io/ethers.js/commit/c5bca7767e3f3d43e3d0bd3c9e9420321ee9907a), [5456c35](https://github.com/ethers-io/ethers.js/commit/5456c359245d9eef5d2abdc05ccedb5269576c94), [7a12216](https://github.com/ethers-io/ethers.js/commit/7a12216cfbd3f86b917451924957471b8be21a8b))
9+
- Added EIP-1559 support. ([#1610](https://github.com/ethers-io/ethers.js/issues/1610); [319987e](https://github.com/ethers-io/ethers.js/commit/319987ec3e1d0e8787f98f525e5fc07875bf5570), [91fff14](https://github.com/ethers-io/ethers.js/commit/91fff1449df5e337fd3b4681b5a04b151d92f5a1), [c5bca77](https://github.com/ethers-io/ethers.js/commit/c5bca7767e3f3d43e3d0bd3c9e9420321ee9907a), [5456c35](https://github.com/ethers-io/ethers.js/commit/5456c359245d9eef5d2abdc05ccedb5269576c94), [7a12216](https://github.com/ethers-io/ethers.js/commit/7a12216cfbd3f86b917451924957471b8be21a8b), [e95708e](https://github.com/ethers-io/ethers.js/commit/e95708eedc130aeb92820a2234398970a987c507))
10+
- Added effectiveGasPrice to receipt. ([ba6854b](https://github.com/ethers-io/ethers.js/commit/ba6854bdd5a912fe873d5da494cb5c62c190adde))
11+
- Fixed ENS names for JsonRpcSigner. ([1e31b34](https://github.com/ethers-io/ethers.js/commit/1e31b34a5a3a269867a45b519662db85f0c86654))
12+
- Added EIP-2930 and EIP-1559 transaction tests. ([7deb4c1](https://github.com/ethers-io/ethers.js/commit/7deb4c174a30b75f8419b8661829add4e5cb69d6))
1013
- Added ConstructorFragment to exports. ([7efc36d](https://github.com/ethers-io/ethers.js/commit/7efc36df294ddd333e37793cad712cbd587bc686))
11-
- Added error utilities to Interface. ([720bde7](https://github.com/ethers-io/ethers.js/commit/720bde7719d9a2fbc7e859f8952b7918e7164b87))
14+
- Added error utilities to Interface. ([720bde7](https://github.com/ethers-io/ethers.js/commit/720bde7719d9a2fbc7e859f8952b7918e7164b87), [f053a7a](https://github.com/ethers-io/ethers.js/commit/f053a7ad58866c8192a64e1e335a2613358385be))
1215
- merged master including transaction type 0 legacy constant. ([#1610](https://github.com/ethers-io/ethers.js/issues/1610); [2a7ce0e](https://github.com/ethers-io/ethers.js/commit/2a7ce0e72a1e0c9469e10392b0329e75e341cf18))
1316
- Added type to TransactionResponse and TrnsactionReceipt. ([#1687](https://github.com/ethers-io/ethers.js/issues/1687); [d001901](https://github.com/ethers-io/ethers.js/commit/d001901c8c0541c823eb9638b9b309a316b00757))
1417
- Trap CALL_EXCEPTION errors when resolving ENS entries. ([#1690](https://github.com/ethers-io/ethers.js/issues/1690); [91951dc](https://github.com/ethers-io/ethers.js/commit/91951dc825af42d4440d2d3b43cfa7a601b20342))

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/abi/lib.esm/interface.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ export declare class Interface {
6363
_decodeParams(params: ReadonlyArray<ParamType>, data: BytesLike): Result;
6464
_encodeParams(params: ReadonlyArray<ParamType>, values: ReadonlyArray<any>): string;
6565
encodeDeploy(values?: ReadonlyArray<any>): string;
66-
decodeErrorData(fragment: ErrorFragment | string, data: BytesLike): Result;
67-
encodeErrorData(fragment: ErrorFragment | string, values?: ReadonlyArray<any>): string;
66+
decodeErrorResult(fragment: ErrorFragment | string, data: BytesLike): Result;
67+
encodeErrorResult(fragment: ErrorFragment | string, values?: ReadonlyArray<any>): string;
6868
decodeFunctionData(functionFragment: FunctionFragment | string, data: BytesLike): Result;
6969
encodeFunctionData(functionFragment: FunctionFragment | string, values?: ReadonlyArray<any>): string;
7070
decodeFunctionResult(functionFragment: FunctionFragment | string, data: BytesLike): Result;

packages/abi/lib.esm/interface.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/abi/lib.esm/interface.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/abi/lib.esm/interface.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/abi/lib/interface.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ export declare class Interface {
6363
_decodeParams(params: ReadonlyArray<ParamType>, data: BytesLike): Result;
6464
_encodeParams(params: ReadonlyArray<ParamType>, values: ReadonlyArray<any>): string;
6565
encodeDeploy(values?: ReadonlyArray<any>): string;
66-
decodeErrorData(fragment: ErrorFragment | string, data: BytesLike): Result;
67-
encodeErrorData(fragment: ErrorFragment | string, values?: ReadonlyArray<any>): string;
66+
decodeErrorResult(fragment: ErrorFragment | string, data: BytesLike): Result;
67+
encodeErrorResult(fragment: ErrorFragment | string, values?: ReadonlyArray<any>): string;
6868
decodeFunctionData(functionFragment: FunctionFragment | string, data: BytesLike): Result;
6969
encodeFunctionData(functionFragment: FunctionFragment | string, values?: ReadonlyArray<any>): string;
7070
decodeFunctionResult(functionFragment: FunctionFragment | string, data: BytesLike): Result;

0 commit comments

Comments
 (0)