Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
### IMPROVEMENTS

- [\#758](https://github.com/cosmos/evm/pull/758) Cleanup precompiles abi.json.
- [\#788](https://github.com/cosmos/evm/pull/788) Use go-abi to replace go-ethereum/accounts/abi usage in precompiles.

### FEATURES

Expand Down
3 changes: 3 additions & 0 deletions eips/testdata/contracts.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ import (
evmtypes "github.com/cosmos/evm/x/vm/types"
)

//go:generate go run ../../precompiles/cmd -input Counter.json -artifact-input -output counter.abi.go
//go:generate go run ../../precompiles/cmd -input CounterFactory.json -artifact-input -output counter_factory.abi.go

func LoadCounterContract() (evmtypes.CompiledContract, error) {
return contractutils.LoadContractFromJSONFile("Counter.json")
}
Expand Down
202 changes: 202 additions & 0 deletions eips/testdata/counter.abi.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading