Skip to content

Commit

Permalink
chore(contracts): Migrate contracts directory and add CompiledContract (
Browse files Browse the repository at this point in the history
evmos#1306)

* chore: Migrate contracts directory and add CompiledContract

* Changelog

* Update CHANGELOG.md

---------

Co-authored-by: Federico Kunze Küllmer <[email protected]>
  • Loading branch information
Vvaradinov and fedekunze authored Feb 1, 2023
1 parent c0dba09 commit 95d37ae
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ Ref: https://keepachangelog.com/en/1.0.0/

### State Machine Breaking

- (evm)[#1308](https://github.com/evmos/evmos/pull/1308) Migrate `evm` and `feemarket` types
- (contracts) [#1306](https://github.com/evmos/evmos/pull/1306) Migrate `contracts` directory to evmos repository
- (proto) [#1305](https://github.com/evmos/evmos/pull/1305) Migrate Ethermint proto files
- (ante) [#1266](https://github.com/evmos/evmos/pull/1266) Use `DynamicFeeChecker` for Cosmos txs.

### Improvements
Expand Down
2 changes: 1 addition & 1 deletion contracts/erc20.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"encoding/json"

"github.com/ethereum/go-ethereum/common"
evmtypes "github.com/evmos/ethermint/x/evm/types"
evmtypes "github.com/evmos/evmos/v11/x/evm/types"

"github.com/evmos/evmos/v11/x/erc20/types"
)
Expand Down
2 changes: 1 addition & 1 deletion contracts/erc20DirectBalanceManipulation.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"encoding/json"

"github.com/ethereum/go-ethereum/common"
evmtypes "github.com/evmos/ethermint/x/evm/types"
evmtypes "github.com/evmos/evmos/v11/x/evm/types"

"github.com/evmos/evmos/v11/x/erc20/types"
)
Expand Down
2 changes: 1 addition & 1 deletion contracts/erc20burnable.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
_ "embed" // embed compiled smart contract
"encoding/json"

evmtypes "github.com/evmos/ethermint/x/evm/types"
evmtypes "github.com/evmos/evmos/v11/x/evm/types"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion contracts/erc20maliciousdelayed.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"encoding/json"

"github.com/ethereum/go-ethereum/common"
evmtypes "github.com/evmos/ethermint/x/evm/types"
evmtypes "github.com/evmos/evmos/v11/x/evm/types"

"github.com/evmos/evmos/v11/x/erc20/types"
)
Expand Down

0 comments on commit 95d37ae

Please sign in to comment.