We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ethers-io
Learn more about funding links in repositories.
Report abuse
1 parent f42f258 commit b1dbbb0Copy full SHA for b1dbbb0
src.ts/ethers.ts
@@ -77,8 +77,9 @@ export {
77
EnsResolver,
78
Network,
79
80
- EnsPlugin, EtherscanPlugin, FeeDataNetworkPlugin, GasCostPlugin, NetworkPlugin,
81
- MulticoinProviderPlugin,
+ EnsPlugin, EtherscanPlugin,
+ FeeDataNetworkPlugin, FetchUrlFeeDataNetworkPlugin,
82
+ GasCostPlugin, NetworkPlugin, MulticoinProviderPlugin,
83
84
SocketBlockSubscriber, SocketEventSubscriber, SocketPendingSubscriber,
85
SocketSubscriber, UnmanagedSubscriber,
@@ -162,7 +163,7 @@ export type { TypedDataDomain, TypedDataField } from "./hash/index.js";
162
163
export type {
164
Provider, Signer,
165
- AbstractProviderOptions,
166
+ AbstractProviderOptions, FallbackProviderOptions,
167
168
AbstractProviderPlugin, BlockParams, BlockTag, ContractRunner, DebugEventBrowserProvider,
169
Eip1193Provider, EventFilter, Filter, FilterByBlockHash, GasCostParameters,
src.ts/providers/index.ts
@@ -40,6 +40,7 @@ export {
40
GasCostPlugin,
41
EnsPlugin,
42
FeeDataNetworkPlugin,
43
+ FetchUrlFeeDataNetworkPlugin,
44
} from "./plugins-network.js";
45
46
export {
@@ -115,6 +116,8 @@ export type {
115
116
DebugEventBrowserProvider, Eip1193Provider
117
} from "./provider-browser.js";
118
119
+export type { FallbackProviderOptions } from "./provider-fallback.js";
120
+
121
122
JsonRpcPayload, JsonRpcResult, JsonRpcError,
123
JsonRpcApiProviderOptions,
0 commit comments