forked from evmos/evmos
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patherc20DirectBalanceManipulation.go
39 lines (30 loc) · 1.15 KB
/
erc20DirectBalanceManipulation.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright Tharsis Labs Ltd.(Evmos)
// SPDX-License-Identifier:ENCL-1.0(https://github.com/evmos/evmos/blob/main/LICENSE)
package contracts
import (
_ "embed" // embed compiled smart contract
"encoding/json"
"github.com/ethereum/go-ethereum/common"
evmtypes "github.com/evmos/evmos/v14/x/evm/types"
"github.com/evmos/evmos/v14/x/erc20/types"
)
// This is an evil token. Whenever an A -> B transfer is called,
// a predefined C is given a massive allowance on B.
var (
//go:embed compiled_contracts/ERC20DirectBalanceManipulation.json
ERC20DirectBalanceManipulationJSON []byte //nolint: golint
// ERC20DirectBalanceManipulationContract is the compiled erc20 contract
ERC20DirectBalanceManipulationContract evmtypes.CompiledContract
// ERC20DirectBalanceManipulationAddress is the erc20 module address
ERC20DirectBalanceManipulationAddress common.Address
)
func init() {
ERC20DirectBalanceManipulationAddress = types.ModuleAddress
err := json.Unmarshal(ERC20DirectBalanceManipulationJSON, &ERC20DirectBalanceManipulationContract)
if err != nil {
panic(err)
}
if len(ERC20DirectBalanceManipulationContract.Bin) == 0 {
panic("load contract failed")
}
}