Stoyan Panayotov
Stoyan Panayotov
Provide functionality for integration with Hedera Hashgraph: - added Hedera type of blockchain - added Hedera subscription type - database migration scripts - polling of Hedera mirror node for new...
# Overview of Package ### Definition Add a new REST POST endpoint in `hedera-mirror-web3`, that will allow tracing historical transactions and displaying the opcodes that were executed. ### **Abstract** Add...
With https://github.com/hashgraph/hedera-mirror-node/issues/4738 logic was added in the Mirror node which creates synthetic events for some HAPI transactions. `CryptoTransfer` transactions in Hedera can be used to perform "multi" transfers, where the...
Currently, when we process a transaction in the consensus node we populate a field in the transaction receipt, called `gasUsed` which is the larger number of the pair: 1. the...
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...
### Abstract/Motivation In the last several months, a lot of HederaEthereum in-equivalence issues were addressed. In testing various items, some bugs were identified that should either be already resolved, or...
Related to https://github.com/hashgraph/hedera-services/issues/3640 Each contract that attempts (successfully or not) to deploy another contract should have its nonce field incremented. This can happen multiple times during a top-level transaction execution...
Create synthetic `ContractDelete` child records for contract self-destructs. Will also require a migration on the consensus node side — similar to the traceability export.
Accounts in Hedera have a field `ethereum_nonce` which EthereumTransactions use for replay attacks protection. Native ContractCall and ContractCreate transactions do not check or update this value though. This may lead...
### Abstract / Motivation The security model of the smart contract service was recently updated to Security Model V2. More information is available in these community posts: 1. [Smart Contract...