Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /** * A **Provider** provides a connection to the blockchain, whch can be * used to query its current state, simulate execution and send transactions * to update the state. * * It is one of the most fundamental components of interacting with a * blockchain application, and there are many ways to connect, such as over * HTTP, WebSockets or injected providers such as [MetaMask](link-metamask). * * @_section: api/providers:Providers [about-providers] */ export { AbstractProvider, UnmanagedSubscriber } from "./abstract-provider.js"; export { AbstractSigner, VoidSigner, } from "./abstract-signer.js"; export { showThrottleMessage } from "./community.js"; export { getDefaultProvider } from "./default-provider.js"; export { EnsResolver, MulticoinProviderPlugin } from "./ens-resolver.js"; export { Network } from "./network.js"; export { NonceManager } from "./signer-noncemanager.js"; export { NetworkPlugin, GasCostPlugin, EnsPlugin, FeeDataNetworkPlugin, FetchUrlFeeDataNetworkPlugin, } from "./plugins-network.js"; export { Block, FeeData, Log, TransactionReceipt, TransactionResponse, copyRequest, //resolveTransactionRequest, } from "./provider.js"; export { FallbackProvider } from "./provider-fallback.js"; export { JsonRpcApiProvider, JsonRpcProvider, JsonRpcSigner } from "./provider-jsonrpc.js" export { BrowserProvider } from "./provider-browser.js"; export { AlchemyProvider } from "./provider-alchemy.js"; export { BlockscoutProvider } from "./provider-blockscout.js"; export { AnkrProvider } from "./provider-ankr.js"; export { CloudflareProvider } from "./provider-cloudflare.js"; export { ChainstackProvider } from "./provider-chainstack.js"; export { EtherscanProvider, EtherscanPlugin } from "./provider-etherscan.js"; export { InfuraProvider, InfuraWebSocketProvider } from "./provider-infura.js"; export { PocketProvider } from "./provider-pocket.js"; export { QuickNodeProvider } from "./provider-quicknode.js"; import { IpcSocketProvider } from "./provider-ipcsocket.js"; /*-browser*/ export { IpcSocketProvider }; export { SocketProvider } from "./provider-socket.js"; export { WebSocketProvider } from "./provider-websocket.js"; export { SocketSubscriber, SocketBlockSubscriber, SocketPendingSubscriber, SocketEventSubscriber } from "./provider-socket.js"; export type { AbstractProviderOptions, Subscription, Subscriber, AbstractProviderPlugin, PerformActionFilter, PerformActionTransaction, PerformActionRequest, } from "./abstract-provider.js" export type { ContractRunner } from "./contracts.js"; export type { BlockParams, LogParams, TransactionReceiptParams, TransactionResponseParams, } from "./formatting.js"; export type { CommunityResourcable } from "./community.js"; /* export type { AvatarLinkageType, AvatarLinkage, AvatarResult } from "./ens-resolver.js"; */ export type { Networkish } from "./network.js"; export type { GasCostParameters } from "./plugins-network.js"; export type { BlockTag, TransactionRequest, PreparedTransactionRequest, EventFilter, Filter, FilterByBlockHash, OrphanFilter, ProviderEvent, TopicFilter, Provider, MinedBlock, MinedTransactionResponse } from "./provider.js"; export type { BrowserDiscoverOptions, BrowserProviderOptions, DebugEventBrowserProvider, Eip1193Provider, Eip6963ProviderInfo } from "./provider-browser.js"; export type { FallbackProviderOptions } from "./provider-fallback.js"; export type { JsonRpcPayload, JsonRpcResult, JsonRpcError, JsonRpcApiProviderOptions, JsonRpcTransactionRequest, } from "./provider-jsonrpc.js"; export type { WebSocketCreator, WebSocketLike } from "./provider-websocket.js"; export type { Signer } from "./signer.js"; |