Skip to content

Commit

Permalink
Updated dist files.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Aug 18, 2021
1 parent 78e4273 commit f0b3bc3
Show file tree
Hide file tree
Showing 31 changed files with 230 additions and 204 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ Changelog

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

ethers/v5.4.5 (2021-08-18 03:05)
--------------------------------

- Fxied getBlockWithTransactions results (1858). ([78e4273](https://github.com/ethers-io/ethers.js/commit/78e4273a327d12da9a1ec008d3f2146d97385921))

ethers/v5.4.4 (2021-08-04 01:37)
--------------------------------

Expand Down
353 changes: 187 additions & 166 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"aes-js": "3.0.0",
"aws-sdk": "2.137.0",
"diff": "4.0.1",
"flatworm": "0.0.2-beta.6",
"flatworm": "0.0.2-beta.7",
"jison": "0.4.18",
"karma": "6.3.2",
"karma-chrome-launcher": "3.1.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/ethers/dist/ethers.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -18301,7 +18301,7 @@ var bech32 = {
fromWords: fromWords
};

const version$m = "providers/5.4.3";
const version$m = "providers/5.4.4";

"use strict";
const logger$s = new Logger(version$m);
Expand Down Expand Up @@ -18570,7 +18570,7 @@ class Formatter {
if (transaction.to == null && transaction.creates == null) {
transaction.creates = this.contractAddress(transaction);
}
if (transaction.type === 1 && transaction.accessList == null) {
if ((transaction.type === 1 || transaction.type === 2) && transaction.accessList == null) {
transaction.accessList = [];
}
const result = Formatter.check(this.formats.transaction, transaction);
Expand Down Expand Up @@ -19970,7 +19970,7 @@ class BaseProvider extends Provider {
}
}
const blockWithTxs = this.formatter.blockWithTransactions(block);
blockWithTxs.transactions = block.transactions.map((tx) => this._wrapTransaction(tx));
blockWithTxs.transactions = blockWithTxs.transactions.map((tx) => this._wrapTransaction(tx));
return blockWithTxs;
}
return this.formatter.block(block);
Expand Down Expand Up @@ -23180,7 +23180,7 @@ var utils$1 = /*#__PURE__*/Object.freeze({
Indexed: Indexed
});

const version$o = "ethers/5.4.4";
const version$o = "ethers/5.4.5";

"use strict";
const logger$H = new Logger(version$o);
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.

8 changes: 4 additions & 4 deletions packages/ethers/dist/ethers.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -20614,7 +20614,7 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = void 0;
exports.version = "providers/5.4.3";
exports.version = "providers/5.4.4";

});

Expand Down Expand Up @@ -20900,7 +20900,7 @@
if (transaction.to == null && transaction.creates == null) {
transaction.creates = this.contractAddress(transaction);
}
if (transaction.type === 1 && transaction.accessList == null) {
if ((transaction.type === 1 || transaction.type === 2) && transaction.accessList == null) {
transaction.accessList = [];
}
var result = Formatter.check(this.formats.transaction, transaction);
Expand Down Expand Up @@ -22686,7 +22686,7 @@
return [3 /*break*/, 2];
case 7:
blockWithTxs = this.formatter.blockWithTransactions(block);
blockWithTxs.transactions = block.transactions.map(function (tx) { return _this._wrapTransaction(tx); });
blockWithTxs.transactions = blockWithTxs.transactions.map(function (tx) { return _this._wrapTransaction(tx); });
return [2 /*return*/, blockWithTxs];
case 8: return [2 /*return*/, this.formatter.block(block)];
}
Expand Down Expand Up @@ -27008,7 +27008,7 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = void 0;
exports.version = "ethers/5.4.4";
exports.version = "ethers/5.4.5";

});

Expand Down
2 changes: 1 addition & 1 deletion packages/ethers/dist/ethers.umd.js.map

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/ethers/lib.esm/_version.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export declare const version = "ethers/5.4.4";
export declare const version = "ethers/5.4.5";
//# sourceMappingURL=_version.d.ts.map
2 changes: 1 addition & 1 deletion packages/ethers/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/ethers/lib/_version.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export declare const version = "ethers/5.4.4";
export declare const version = "ethers/5.4.5";
//# sourceMappingURL=_version.d.ts.map
2 changes: 1 addition & 1 deletion packages/ethers/lib/_version.js

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

6 changes: 3 additions & 3 deletions packages/ethers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@ethersproject/networks": "5.4.2",
"@ethersproject/pbkdf2": "5.4.0",
"@ethersproject/properties": "5.4.0",
"@ethersproject/providers": "5.4.3",
"@ethersproject/providers": "5.4.4",
"@ethersproject/random": "5.4.0",
"@ethersproject/rlp": "5.4.0",
"@ethersproject/sha2": "5.4.0",
Expand Down Expand Up @@ -62,7 +62,7 @@
"test": "echo \"Error: no test specified\" && exit 1"
},
"sideEffects": false,
"tarballHash": "0xfbdf8a839659ab0f8234279d20f14254f1e8b8ffd1d0619a9a6f90d2ef756c5b",
"tarballHash": "0x586000a5750fe06f8d8971c469a6d07062e0caa346098aab7085d13b35ad1d1e",
"types": "./lib/index.d.ts",
"version": "5.4.4"
"version": "5.4.5"
}
2 changes: 1 addition & 1 deletion packages/ethers/src.ts/_version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = "ethers/5.4.4";
export const version = "ethers/5.4.5";
2 changes: 1 addition & 1 deletion packages/providers/lib.esm/_version.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export declare const version = "providers/5.4.3";
export declare const version = "providers/5.4.4";
//# sourceMappingURL=_version.d.ts.map
2 changes: 1 addition & 1 deletion packages/providers/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/providers/lib.esm/base-provider.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/providers/lib.esm/base-provider.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/providers/lib.esm/formatter.js

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

Loading

0 comments on commit f0b3bc3

Please sign in to comment.