Skip to content

Commit

Permalink
admin: updated dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Jul 15, 2023
1 parent 57f1e1c commit 330c318
Show file tree
Hide file tree
Showing 30 changed files with 53 additions and 34 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ Change Log

This change log is maintained by `src.ts/_admin/update-changelog.ts` but may also be manually updated.

ethers/v6.6.4 (2023-07-15 17:55)
--------------------------------

- Fixed CCIP-read in the EnsResolver ([#4221](https://github.com/ethers-io/ethers.js/issues/4221); [57f1e1c](https://github.com/ethers-io/ethers.js/commit/57f1e1c47148921148e35c10c83539531942923e)).
- Skip checking confirmation count if confirms is 0 ([#4229](https://github.com/ethers-io/ethers.js/issues/4229), [#4242](https://github.com/ethers-io/ethers.js/issues/4242); [492919d](https://github.com/ethers-io/ethers.js/commit/492919d14f646c630f29e1596e5564df1e51f309)).
- Fixed waiting for confirmations in deployment transactions ([#4212](https://github.com/ethers-io/ethers.js/issues/4212), [#4230](https://github.com/ethers-io/ethers.js/issues/4230); [43c253a](https://github.com/ethers-io/ethers.js/commit/43c253a402f52a08353c424f6c4e236836cfaf36)).

ethers/v6.6.3 (2023-07-11 20:55)
--------------------------------

Expand Down
11 changes: 7 additions & 4 deletions dist/ethers.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
/**
* The current version of Ethers.
*/
const version = "6.6.3";
const version = "6.6.4";

/**
* Property helper functions.
Expand Down Expand Up @@ -13643,6 +13643,9 @@ class TransactionResponse {
return;
};
const receipt = await this.provider.getTransactionReceipt(this.hash);
if (confirms === 0) {
return receipt;
}
if (receipt) {
if ((await receipt.confirmations()) >= confirms) {
return receipt;
Expand Down Expand Up @@ -13890,7 +13893,7 @@ class ContractTransactionResponse extends TransactionResponse {
* wait until enough confirmations have completed.
*/
async wait(confirms) {
const receipt = await super.wait();
const receipt = await super.wait(confirms);
if (receipt == null) {
return null;
}
Expand Down Expand Up @@ -14583,7 +14586,7 @@ class BaseContract {
*/
async getAddress() { return await getInternal(this).addrPromise; }
/**
* Return the dedployed bytecode or null if no bytecode is found.
* Return the deployed bytecode or null if no bytecode is found.
*/
async getDeployedCode() {
const provider = getProvider(this.runner);
Expand Down Expand Up @@ -15098,7 +15101,7 @@ class EnsResolver {
funcName = "resolve(bytes,bytes)";
}
params.push({
ccipReadEnable: true
enableCcipRead: true
});
try {
const result = await this.#resolver[funcName](...params);
Expand Down
2 changes: 1 addition & 1 deletion dist/ethers.js.map

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

11 changes: 7 additions & 4 deletions dist/ethers.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
/**
* The current version of Ethers.
*/
const version = "6.6.3";
const version = "6.6.4";

/**
* Property helper functions.
Expand Down Expand Up @@ -13649,6 +13649,9 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
return;
};
const receipt = await this.provider.getTransactionReceipt(this.hash);
if (confirms === 0) {
return receipt;
}
if (receipt) {
if ((await receipt.confirmations()) >= confirms) {
return receipt;
Expand Down Expand Up @@ -13896,7 +13899,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
* wait until enough confirmations have completed.
*/
async wait(confirms) {
const receipt = await super.wait();
const receipt = await super.wait(confirms);
if (receipt == null) {
return null;
}
Expand Down Expand Up @@ -14589,7 +14592,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
*/
async getAddress() { return await getInternal(this).addrPromise; }
/**
* Return the dedployed bytecode or null if no bytecode is found.
* Return the deployed bytecode or null if no bytecode is found.
*/
async getDeployedCode() {
const provider = getProvider(this.runner);
Expand Down Expand Up @@ -15104,7 +15107,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
funcName = "resolve(bytes,bytes)";
}
params.push({
ccipReadEnable: true
enableCcipRead: true
});
try {
const result = await this.#resolver[funcName](...params);
Expand Down
2 changes: 1 addition & 1 deletion dist/ethers.umd.js.map

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/wordlists-extra.js

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

2 changes: 1 addition & 1 deletion dist/wordlists-extra.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/wordlists-extra.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib.commonjs/_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 lib.commonjs/contract/contract.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export declare class BaseContract implements Addressable, EventEmitterable<Contr
*/
getAddress(): Promise<string>;
/**
* Return the dedployed bytecode or null if no bytecode is found.
* Return the deployed bytecode or null if no bytecode is found.
*/
getDeployedCode(): Promise<null | string>;
/**
Expand Down
2 changes: 1 addition & 1 deletion lib.commonjs/contract/contract.js

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

2 changes: 1 addition & 1 deletion lib.commonjs/contract/wrappers.js

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

2 changes: 1 addition & 1 deletion lib.commonjs/contract/wrappers.js.map

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

2 changes: 1 addition & 1 deletion lib.commonjs/providers/ens-resolver.js

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

0 comments on commit 330c318

Please sign in to comment.