hashgraph / hedera-smart-contracts

Contains Hedera Smart Contract Service supporting files
Apache License 2.0
38 stars 53 forks source link

Simplifying Contract Artifacts #692

Closed quiet-node closed 7 months ago

quiet-node commented 7 months ago

Problem

Presently, the repository commits contract artifacts to retain contract ABIs for reference by other developers. While this is beneficial, non-critical updates (such as changes in Solidity versions) result in the contract bytecode and deployed bytecode being overwritten. This may lead to potential inconsistencies and difficulties in tracking changes over time. To address this issue, we should consider implementing a solution that preserves only the ABIs and ignore other attributes.

Solution

Alternatives

No response