hedera-json-rpc-relay
hedera-json-rpc-relay copied to clipboard
Implementation of Ethereum JSON-RPC APIs for Hedera
### Problem Currently, it would seem that the Hedera JSON RPC Relay forwards all transactions to consensus nodes, regardless of the gas price specified by the transaction. This approach results...
### Problem Currently, we pass blockNumber/blockHash/blockTag to the getCode endpoint but these parameters are not used. The current code at this address is always returned ### Solution - If possible...
### Description Hi team, I am getting the following error when trying to deploy a medium - large smart contracts. Even though Truffle returned error, the transaction was actually successful....
I'm sending a transfer to an existing account with an EVM address alias. I'm using the following code snippet: ``` const [owner, operator] = await ethers.getSigners(); const tx = await...
### Description The section titled "Pre-requirements" lists node (version 18), and then no version numbers for npm, pnpm, and docker. A newer version of npm can cause the lockFileVersion of...
### Problem As a developer I'd like to be able to use Foundry with the Hedera JSON-RPC Relay. ### Solution We'd want to test out all available scenarios with the...
### Problem As a developer I'd like to be able to use trace endpoints. ### Solution ```[tasklist] ### Tasks ``` ### Alternatives _No response_
### Problem The relay currently has no debug methods to expose information on contract executions. Developers may want to explore state changes or actions through eth methods ### Solution Provide...
Currently the following syntax: ``` await expect(contract.connect(spenderWallet).transferFrom(tokenOwner, to, amount)) .to.be.revertedWith('ERC20: transfer amount exceeds balance'); ``` will not catch the error properly and will evaluate that the transaction was successful, however...
### Problem CUrrently acceptance tests exist but an automated deployment flow to hook into doesn't ### Solution When deployment flow is automated. Add logic to run acceptance test post deployment...