Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
robertlincecum authored and Denis2626 committed Mar 14, 2024
1 parent 9b922cf commit 632641a
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 4 deletions.
6 changes: 6 additions & 0 deletions lib.esm/providers/abstract-provider.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,10 @@ export type PerformActionRequest = {
} | {
method: "getTransactionResult";
hash: string;
} | {
method: "getRunningLocations";
} | {
method: "getProtocolTrieExpansionCount";
};
/**
* Options for configuring some internal aspects of an [[AbstractProvider]].
Expand Down Expand Up @@ -348,6 +352,8 @@ export declare class AbstractProvider implements Provider {
*/
_getTransactionRequest(_request: TransactionRequest): PerformActionTransaction | Promise<PerformActionTransaction>;
getNetwork(): Promise<Network>;
getRunningLocations(): Promise<number[][]>;
getProtocolTrieExpansionCount(): Promise<number>;
getFeeData(): Promise<FeeData>;
estimateGas(_tx: TransactionRequest): Promise<bigint>;
call(_tx: TransactionRequest): Promise<string>;
Expand Down
2 changes: 1 addition & 1 deletion lib.esm/providers/abstract-provider.d.ts.map

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions lib.esm/providers/abstract-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 lib.esm/providers/abstract-provider.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib.esm/providers/provider-jsonrpc.d.ts.map

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

12 changes: 12 additions & 0 deletions lib.esm/providers/provider-jsonrpc.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.esm/providers/provider-jsonrpc.js.map

Large diffs are not rendered by default.

0 comments on commit 632641a

Please sign in to comment.