Skip to content

Commit f0b3bc3

Browse files
committed
Updated dist files.
1 parent 78e4273 commit f0b3bc3

31 files changed

+230
-204
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ Changelog
33

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

6+
ethers/v5.4.5 (2021-08-18 03:05)
7+
--------------------------------
8+
9+
- Fxied getBlockWithTransactions results (1858). ([78e4273](https://github.com/ethers-io/ethers.js/commit/78e4273a327d12da9a1ec008d3f2146d97385921))
10+
611
ethers/v5.4.4 (2021-08-04 01:37)
712
--------------------------------
813

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"aes-js": "3.0.0",
6868
"aws-sdk": "2.137.0",
6969
"diff": "4.0.1",
70-
"flatworm": "0.0.2-beta.6",
70+
"flatworm": "0.0.2-beta.7",
7171
"jison": "0.4.18",
7272
"karma": "6.3.2",
7373
"karma-chrome-launcher": "3.1.0",

packages/ethers/dist/ethers.esm.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18301,7 +18301,7 @@ var bech32 = {
1830118301
fromWords: fromWords
1830218302
};
1830318303

18304-
const version$m = "providers/5.4.3";
18304+
const version$m = "providers/5.4.4";
1830518305

1830618306
"use strict";
1830718307
const logger$s = new Logger(version$m);
@@ -18570,7 +18570,7 @@ class Formatter {
1857018570
if (transaction.to == null && transaction.creates == null) {
1857118571
transaction.creates = this.contractAddress(transaction);
1857218572
}
18573-
if (transaction.type === 1 && transaction.accessList == null) {
18573+
if ((transaction.type === 1 || transaction.type === 2) && transaction.accessList == null) {
1857418574
transaction.accessList = [];
1857518575
}
1857618576
const result = Formatter.check(this.formats.transaction, transaction);
@@ -19970,7 +19970,7 @@ class BaseProvider extends Provider {
1997019970
}
1997119971
}
1997219972
const blockWithTxs = this.formatter.blockWithTransactions(block);
19973-
blockWithTxs.transactions = block.transactions.map((tx) => this._wrapTransaction(tx));
19973+
blockWithTxs.transactions = blockWithTxs.transactions.map((tx) => this._wrapTransaction(tx));
1997419974
return blockWithTxs;
1997519975
}
1997619976
return this.formatter.block(block);
@@ -23180,7 +23180,7 @@ var utils$1 = /*#__PURE__*/Object.freeze({
2318023180
Indexed: Indexed
2318123181
});
2318223182

23183-
const version$o = "ethers/5.4.4";
23183+
const version$o = "ethers/5.4.5";
2318423184

2318523185
"use strict";
2318623186
const logger$H = new Logger(version$o);

packages/ethers/dist/ethers.esm.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/ethers/dist/ethers.esm.min.js

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/ethers/dist/ethers.esm.min.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/ethers/dist/ethers.umd.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20614,7 +20614,7 @@
2061420614
"use strict";
2061520615
Object.defineProperty(exports, "__esModule", { value: true });
2061620616
exports.version = void 0;
20617-
exports.version = "providers/5.4.3";
20617+
exports.version = "providers/5.4.4";
2061820618

2061920619
});
2062020620

@@ -20900,7 +20900,7 @@
2090020900
if (transaction.to == null && transaction.creates == null) {
2090120901
transaction.creates = this.contractAddress(transaction);
2090220902
}
20903-
if (transaction.type === 1 && transaction.accessList == null) {
20903+
if ((transaction.type === 1 || transaction.type === 2) && transaction.accessList == null) {
2090420904
transaction.accessList = [];
2090520905
}
2090620906
var result = Formatter.check(this.formats.transaction, transaction);
@@ -22686,7 +22686,7 @@
2268622686
return [3 /*break*/, 2];
2268722687
case 7:
2268822688
blockWithTxs = this.formatter.blockWithTransactions(block);
22689-
blockWithTxs.transactions = block.transactions.map(function (tx) { return _this._wrapTransaction(tx); });
22689+
blockWithTxs.transactions = blockWithTxs.transactions.map(function (tx) { return _this._wrapTransaction(tx); });
2269022690
return [2 /*return*/, blockWithTxs];
2269122691
case 8: return [2 /*return*/, this.formatter.block(block)];
2269222692
}
@@ -27008,7 +27008,7 @@
2700827008
"use strict";
2700927009
Object.defineProperty(exports, "__esModule", { value: true });
2701027010
exports.version = void 0;
27011-
exports.version = "ethers/5.4.4";
27011+
exports.version = "ethers/5.4.5";
2701227012

2701327013
});
2701427014

packages/ethers/dist/ethers.umd.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/ethers/dist/ethers.umd.min.js

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

0 commit comments

Comments
 (0)