Provider
A Provider is the primary method to interact with the read-only content on Ethereum.
It allows access to details about accounts, blocks and transactions and the ability to query event logs and simulate contract execution.
Account data includes the balance, getTransactionCount, code and state trie storage.
Simulating execution can be used to call, estimateGas and get transaction result.
The broadcastTransaction is the only method which allows updating the blockchain, but it is usually accessed by a Signer, since a private key must be used to sign the transaction before it can be broadcast.
Extends
Properties
Property | Type | Description | Overrides | Inherited from |
---|---|---|---|---|
provider | Provider | The provider iteself. This is part of the necessary API for executing a contract, as it provides a common property on any ContractRunner that can be used to access the read-only portion of the runner. | ContractRunner .provider | ContractRunner .provider |
sendTransaction? | (tx : TransactionRequest ) => Promise <TransactionResponse > | Required for state mutating calls | ContractRunner .sendTransaction | ContractRunner .sendTransaction |
Methods
addListener()
Alias for on.
Parameters
Parameter | Type |
---|---|
event | ProviderEvent |
listener | Listener |
zone ? | Zone |
Returns
Promise
<Provider
>
Inherited from
Source
broadcastTransaction()
Broadcasts the signedTx
to the network, adding it to the memory pool of any node for which the transaction
meets the rebroadcast requirements.
Parameters
Parameter | Type | Description |
---|---|---|
zone | Zone | The zone to broadcast the transaction to. |
signedTx | string | The signed transaction to broadcast. |
from ? | AddressLike | The address that signed the transaction. |
Returns
Promise
<TransactionResponse
>
A promise resolving to the transaction response.
Throws
If the transaction is invalid or the transaction is replaced.
Source
call()
Simulate the execution of tx
. If the call reverts, it will throw a
CallExceptionError which includes the revert data.
Parameters
Parameter | Type | Description |
---|---|---|
tx | TransactionRequest | The transaction to simulate. |
Returns
Promise
<string
>
A promise resolving to the result of the execution.
Overrides
ContractRunner.call
Throws
If the transaction execution reverts.
Source
createAccessList()
Required for populating access lists for state mutating calls
Parameters
Parameter | Type | Description |
---|---|---|
tx | QuaiTransactionRequest |
Returns
Promise
<AccessList
>
Overrides
ContractRunner.createAccessList
Source
destroy()
Shutdown any resources this provider is using. No additional calls should be made to this provider after calling this.
Returns
void
Source
emit()
Triggers each listener for event
with the args
.
Parameters
Parameter | Type |
---|---|
event | ProviderEvent |
zone ? | Zone |
…args ? | any [] |
Returns
Promise
<boolean
>
Inherited from
Source
estimateFeeForQi()
Estimate the fee for a Qi transaction.
Parameters
Parameter | Type | Description |
---|---|---|
tx | QiPerformActionTransaction | The transaction to estimate the fee for. |
Returns
Promise
<bigint
>
A promise resolving to the estimated fee.
Source
estimateGas()
Estimates the amount of gas required to executre tx
.
Parameters
Parameter | Type | Description |
---|---|---|
tx | TransactionRequest | The transaction to estimate the gas for. |
Returns
Promise
<bigint
>
A promise resolving to the estimated gas.
Overrides
ContractRunner.estimateGas
Throws
If the transaction execution reverts.
Source
getBalance()
Get the account balance (in wei) of address
. If blockTag
is specified and the node supports archive access
for that blockTag
, the balance is as of that BlockTag.
Parameters
Parameter | Type | Description |
---|---|---|
address | AddressLike | The address to fetch the balance for. |
blockTag ? | BlockTag | The block tag to fetch the balance from. |
Returns
Promise
<bigint
>
A promise resolving to the balance.
Note
On nodes without archive access enabled, the blockTag
may be
silently ignored by the node, which may cause issues if relied on.
Source
getBlock()
Resolves to the block for blockHashOrBlockTag
.
If prefetchTxs
, and the backend supports including transactions with block requests, all transactions will be
included and the Block object will not need to make remote calls for getting transactions.
Parameters
Parameter | Type | Description |
---|---|---|
shard | Shard | The shard to fetch the block from. |
blockHashOrBlockTag | BlockTag | The block hash or block tag to fetch. |
prefetchTxs ? | boolean | If true, prefetch the transactions. |
Returns
Promise
<null
| Block
>
A promise resolving to the block or null if not found.
Throws
If the block is not found.
Source
getBlockNumber()
Get the current block number.
Parameters
Parameter | Type | Description |
---|---|---|
shard | Shard | The shard to fetch the block number from. |
Returns
Promise
<number
>
A promise resolving to the block number.
Source
getCode()
Get the bytecode for address
.
Parameters
Parameter | Type | Description |
---|---|---|
address | AddressLike | The address to fetch the code for. |
blockTag ? | BlockTag | The block tag to fetch the code from. |
Returns
Promise
<string
>
A promise resolving to the code stored at the address.
Note
On nodes without archive access enabled, the blockTag
may be
silently ignored by the node, which may cause issues if relied on.
Source
getFeeData()
Get the best guess at the recommended FeeData.
Parameters
Parameter | Type | Description |
---|---|---|
zone | Zone | The shard to fetch the fee data from. |
txType | boolean | The transaction type to fetch the fee data for (true for Quai, false for Qi) |
Returns
Promise
<FeeData
>
A promise resolving to the fee data.
Source
getLatestQiRate()
Resolves to the current Quai rate for the given amount.
Parameters
Parameter | Type | Description |
---|---|---|
zone | Zone | - |
amt | bigint | The amount in quais to get the rate for. |
Returns
Promise
<bigint
>
A promise resolving to the latest Quai rate.
Source
getLatestQuaiRate()
Resolves to the current Quai rate for the given amount.
Parameters
Parameter | Type | Description |
---|---|---|
zone | Zone | - |
amt | bigint | The amount in quai to get the rate for. |
Returns
Promise
<bigint
>
A promise resolving to the latest Quai->Qi rate.
Source
getLogs()
Resolves to the list of Logs that match filter
Parameters
Parameter | Type | Description |
---|---|---|
filter | Filter | FilterByBlockHash | The filter to apply. |
Returns
Promise
<Log
[]>
A promise resolving to the logs.
Source
getNetwork()
Get the connected Network.
Returns
Promise
<Network
>
A promise resolving to the network.
Source
getOutpointsByAddress()
Get the UTXO entries for address
.
Parameters
Parameter | Type | Description |
---|---|---|
address | AddressLike | The address to fetch the UTXO entries for. |
Returns
Promise
<Outpoint
[]>
A promise resolving to the UTXO entries.
Note
On nodes without archive access enabled, the blockTag
may be
silently ignored by the node, which may cause issues if relied on.
Source
getPendingHeader()
Get a work object to package a transaction in.
Returns
Promise
<WorkObjectLike
>
A promise resolving to the work object.
Source
getProtocolExpansionNumber()
Resolves to the number indicating the size of the network
Returns
Promise
<number
>
A promise resolving to the current network size.
Source
getQiRateAtBlock()
Resolves to the current Quai rate for the given amount.
Parameters
Parameter | Type | Description |
---|---|---|
zone | Zone | - |
blockTag | BlockTag | - |
amt | bigint | The amount in quais to get the rate for. |
Returns
Promise
<bigint
>
A promise resolving to the latest Quai rate.
Source
getQuaiRateAtBlock()
Resolves to the current Quai rate for the given amount.
Parameters
Parameter | Type | Description |
---|---|---|
zone | Zone | - |
blockTag | BlockTag | - |
amt | bigint | The amount in quais to get the rate for. |
Returns
Promise
<bigint
>
A promise resolving to the latest Quai rate.
Source
getStorage()
Get the storage slot value for address
at slot position
.
Parameters
Parameter | Type | Description |
---|---|---|
address | AddressLike | The address to fetch the storage from. |
position | BigNumberish | The position to fetch the storage from. |
blockTag ? | BlockTag | The block tag to fetch the storage from. |
Returns
Promise
<string
>
A promise resolving to the storage value.
Note
On nodes without archive access enabled, the blockTag
may be
silently ignored by the node, which may cause issues if relied on.
Source
getTransaction()
Resolves to the transaction for hash
.
If the transaction is unknown or on pruning nodes which discard old transactions this resolves to null
.
Parameters
Parameter | Type | Description |
---|---|---|
hash | string | The transaction hash to fetch. |
Returns
Promise
<null
| TransactionResponse
>
A promise resolving to the transaction or null if not found.
Source
getTransactionCount()
Get the number of transactions ever sent for address
, which is used as the nonce
when sending a transaction.
If blockTag
is specified and the node supports archive access for that blockTag
, the transaction count is as
of that BlockTag.
Parameters
Parameter | Type | Description |
---|---|---|
address | AddressLike | The address to fetch the transaction count for. |
blockTag ? | BlockTag | The block tag to fetch the transaction count from. |
Returns
Promise
<number
>
A promise resolving to the transaction count.
Note
On nodes without archive access enabled, the blockTag
may be
silently ignored by the node, which may cause issues if relied on.
Source
getTransactionReceipt()
Resolves to the transaction receipt for hash
, if mined.
If the transaction has not been mined, is unknown or on pruning nodes which discard old transactions this
resolves to null
.
Parameters
Parameter | Type | Description |
---|---|---|
hash | string | The transaction hash to fetch the receipt for. |
Returns
Promise
<null
| TransactionReceipt
>
A promise resolving to the transaction receipt or null if not found.
Source
getTransactionResult()
Resolves to the result returned by the executions of hash
.
This is only supported on nodes with archive access and with the necessary debug APIs enabled.
Parameters
Parameter | Type | Description |
---|---|---|
hash | string | The transaction hash to fetch the result for. |
Returns
Promise
<null
| string
>
A promise resolving to the result or null if not found.
Source
getTxPoolContent()
Resolves to the current content of the transaction pool.
Parameters
Parameter | Type |
---|---|
zone | Zone |
Returns
Promise
<txpoolContentResponse
>
A promise resolving to the transaction pool content.
Source
listenerCount()
Resolves to the number of listeners for event
.
Parameters
Parameter | Type |
---|---|
event ? | ProviderEvent |
Returns
Promise
<number
>
Inherited from
EventEmitterable
.listenerCount
Source
listeners()
Resolves to the listeners for event
.
Parameters
Parameter | Type |
---|---|
event ? | ProviderEvent |
Returns
Promise
<Listener
[]>
Inherited from
Source
off()
Unregister the listener
for event
. If listener
is unspecified, all listeners are unregistered.
Parameters
Parameter | Type |
---|---|
event | ProviderEvent |
listener ? | Listener |
zone ? | Zone |
Returns
Promise
<Provider
>
Inherited from
Source
on()
Registers a listener
that is called whenever the event
occurs until unregistered.
Parameters
Parameter | Type |
---|---|
event | ProviderEvent |
listener | Listener |
zone ? | Zone |
Returns
Promise
<Provider
>
Inherited from
Source
once()
Registers a listener
that is called the next time event
occurs.
Parameters
Parameter | Type |
---|---|
event | ProviderEvent |
listener | Listener |
zone ? | Zone |
Returns
Promise
<Provider
>
Inherited from
Source
removeAllListeners()
Unregister all listeners for event
.
Parameters
Parameter | Type |
---|---|
event ? | ProviderEvent |
Returns
Promise
<Provider
>
Inherited from
EventEmitterable
.removeAllListeners
Source
removeListener()
Alias for off.
Parameters
Parameter | Type |
---|---|
event | ProviderEvent |
listener | Listener |
zone ? | Zone |
Returns
Promise
<Provider
>
Inherited from
EventEmitterable
.removeListener
Source
txPoolInspect()
Resolves to the current content of the transaction pool.
Parameters
Parameter | Type |
---|---|
zone | Zone |
Returns
Promise
<txpoolInspectResponse
>
A promise resolving to the transaction pool inspect.
Source
waitForBlock()
Resolves to the block at blockTag
once it has been mined.
This can be useful for waiting some number of blocks by using the currentBlockNumber + N
.
Parameters
Parameter | Type | Description |
---|---|---|
shard | Shard | The shard to fetch the block from. |
blockTag ? | BlockTag | The block tag to fetch. |
Returns
Promise
<Block
>
A promise resolving to the block.
Source
waitForTransaction()
Waits until the transaction hash
is mined and has confirms
confirmations.
Parameters
Parameter | Type | Description |
---|---|---|
hash | string | The transaction hash to wait for. |
confirms ? | number | The number of confirmations to wait for. |
timeout ? | number | The number of milliseconds to wait before timing out. |
Returns
Promise
<null
| TransactionReceipt
>
A promise resolving to the transaction receipt or null if not found.
Source
Was this page helpful?