Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/modules/utils.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ const iexec = new IExec({ ethProvider });
| `options.allowExperimentalNetworks?` | `boolean` | if true allows using a provider connected to an experimental networks (default false) ⚠️ experimental networks are networks on which the iExec's stack is partially deployed, experimental networks can be subject to instabilities or discontinuity. Access is provided without warranties. |
| `options.gasPrice?` | `string` \| `number` \| `bigint` | gas price override |
| `options.getTransactionCount?` | (`blockTag?`: `BlockTag`) => `Promise`<`number`\> | nonce override |
| `options.providers` | [`ProviderOptions`](../interfaces/ProviderOptions.md) | providers options |
| `options.providers?` | [`ProviderOptions`](../interfaces/ProviderOptions.md) | providers options |

#### Returns

Expand Down
2 changes: 1 addition & 1 deletion src/lib/utils.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const getSignerFromPrivateKey: (
/**
* providers options
*/
providers: ProviderOptions;
providers?: ProviderOptions;
/**
* if true allows using a provider connected to an experimental networks (default false)
*
Expand Down
Loading