FAQs
Last updated
Last updated
eth-rpc-adpater
or EvmRpcProvider
?short answer
you need it when you ...
need to query for historical logs or tx receipts that exist before you start the provider or rpc adapter
OR need to query for logs or tx receipts that's older than MAX_CACHE_SIZE, which defaults to 200.
explanation
Transactions and logs from unfinalized blocks only live in cache, so new transactions will usually be in the cache first (for a couple blocks), then live in both the cache and the subquery, later, after the cache expires, they only live in subquery.
Developers who run a mandala node and eth-rpc-adaptor locally, usually won’t need to start any subquery or database services for testing, since new transaction receipts and logs will be in cache and findable without subquery.
For simple local testing setup, we can set a large MAX_CACHE_SIZE
for rpc adapter, such as 10000 blocks. So even without subquery, we should be able to query for receipts and logs for as many as 10000 blocks.
Acala EVM+ uses encoded gasPrice
and gasLimit
, so manually inputting random gas parameters might fail to decode. Please refer to gas parameter section for detailed explanations.
Metamask will sometimes cache the nonce locally, which is used to infer next tx nonce. For example, if we send a tx with nonce 3, metamask will set nonce 4 for next tx. However, after we restart the local mandala node, all accounts are reset and the nonce is back to 0, but metamaks doesn't know it!
As a result, the account with nonce 0 send a tx with nonce 4, which won't be mined and got stuck!
To solve this, we need to reset metamask after restarting local Mandala, so the nonce and cache will be cleared: settings => advanced => reset account
. Or we can simply manually override the nonce to 0
for the first metamask tx after restarting the network.
Metamask shows total balance, which might include non-transferable balances. For example, if some of your ACA is staking, they will still show in metamask, but can't be transfered.
We can check the transferable balance in the Accounts
section in polkadot.js app
Every EVM+ transaction is essentially a substrate transaction, so we can find more details about it in substrate chain explorer.
For example, for this failing tx, we can copy and paste the tx hash into the Acala Subscan, which takes us to the tx details page, the exact error should show up in the bottom Events
section.
In this case ReserveStorageFailed
means account balance not enough.
there are 2 ways:
use eth_getBlockByNumber
with finalized
block tag to get the latest finalized block number, and compare the tx block number with it.
use EVM+ specific RPC calls: eth_isTransactionFinalized or eth_isBlockFinalized.