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 Aug 3, 2023
1 parent e45bc77 commit c5cb7cd
Show file tree
Hide file tree
Showing 17 changed files with 77 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Change Log

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

ethers/v6.7.0 (2023-08-02 23:37)
ethers/v6.7.0 (2023-08-02 23:52)
--------------------------------

- Fixed receipt wait not throwing on reverted transactions ([25fef4f](https://github.com/ethers-io/ethers.js/commit/25fef4f8d756f5bbf5a2a05e38233248a8eb43ac)).
Expand Down
10 changes: 10 additions & 0 deletions dist/ethers.js
Original file line number Diff line number Diff line change
Expand Up @@ -15962,8 +15962,18 @@ class FeeDataNetworkPlugin extends NetworkPlugin {
class FetchUrlFeeDataNetworkPlugin extends NetworkPlugin {
#url;
#processFunc;
/**
* The URL to initialize the FetchRequest with in %%processFunc%%.
*/
get url() { return this.#url; }
/**
* The callback to use when computing the FeeData.
*/
get processFunc() { return this.#processFunc; }
/**
* Creates a new **FetchUrlFeeDataNetworkPlugin** which will
* be used when computing the fee data for the network.
*/
constructor(url, processFunc) {
super("org.ethers.plugins.network.FetchUrlFeeDataPlugin");
this.#url = url;
Expand Down
2 changes: 1 addition & 1 deletion dist/ethers.js.map

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions dist/ethers.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -15968,8 +15968,18 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
class FetchUrlFeeDataNetworkPlugin extends NetworkPlugin {
#url;
#processFunc;
/**
* The URL to initialize the FetchRequest with in %%processFunc%%.
*/
get url() { return this.#url; }
/**
* The callback to use when computing the FeeData.
*/
get processFunc() { return this.#processFunc; }
/**
* Creates a new **FetchUrlFeeDataNetworkPlugin** which will
* be used when computing the fee data for the network.
*/
constructor(url, processFunc) {
super("org.ethers.plugins.network.FetchUrlFeeDataPlugin");
this.#url = url;
Expand Down
2 changes: 1 addition & 1 deletion dist/ethers.umd.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions lib.commonjs/_tests/test-providers-send.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/_tests/test-providers-send.js.map

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

16 changes: 13 additions & 3 deletions lib.commonjs/providers/plugins-network.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,22 @@ export declare class FeeDataNetworkPlugin extends NetworkPlugin {
}
export declare class FetchUrlFeeDataNetworkPlugin extends NetworkPlugin {
#private;
/**
* The URL to initialize the FetchRequest with in %%processFunc%%.
*/
get url(): string;
/**
* The callback to use when computing the FeeData.
*/
get processFunc(): (f: () => Promise<FeeData>, p: Provider, r: FetchRequest) => Promise<{
gasPrice?: bigint | null | undefined;
maxFeePerGas?: bigint | null | undefined;
maxPriorityFeePerGas?: bigint | null | undefined;
gasPrice?: null | bigint;
maxFeePerGas?: null | bigint;
maxPriorityFeePerGas?: null | bigint;
}>;
/**
* Creates a new **FetchUrlFeeDataNetworkPlugin** which will
* be used when computing the fee data for the network.
*/
constructor(url: string, processFunc: (f: () => Promise<FeeData>, p: Provider, r: FetchRequest) => Promise<{
gasPrice?: null | bigint;
maxFeePerGas?: null | bigint;
Expand Down
2 changes: 1 addition & 1 deletion lib.commonjs/providers/plugins-network.d.ts.map

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

10 changes: 10 additions & 0 deletions lib.commonjs/providers/plugins-network.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/providers/plugins-network.js.map

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

1 change: 1 addition & 0 deletions lib.esm/_tests/test-providers-send.js

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

Loading

0 comments on commit c5cb7cd

Please sign in to comment.