2022-11-17 14:55:40 +00:00
|
|
|
package evm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
|
|
|
actorstypes "github.com/filecoin-project/go-state-types/actors"
|
|
|
|
"github.com/filecoin-project/go-state-types/cbor"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2024-02-21 20:20:00 +00:00
|
|
|
|
|
|
|
"github.com/filecoin-project/go-state-types/exitcode"
|
2022-12-13 23:02:34 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/manifest"
|
2022-11-17 14:55:40 +00:00
|
|
|
|
|
|
|
builtin{{.latestVersion}} "github.com/filecoin-project/go-state-types/builtin"
|
|
|
|
)
|
|
|
|
|
|
|
|
var Methods = builtin{{.latestVersion}}.MethodsEVM
|
|
|
|
|
2024-02-21 20:20:00 +00:00
|
|
|
// See https://github.com/filecoin-project/builtin-actors/blob/6e781444cee5965278c46ef4ffe1fb1970f18d7d/actors/evm/src/lib.rs#L35-L42
|
|
|
|
const (
|
|
|
|
ErrReverted exitcode.ExitCode = iota + 33 // EVM exit codes start at 33
|
|
|
|
ErrInvalidInstruction
|
|
|
|
ErrUndefinedInstruction
|
|
|
|
ErrStackUnderflow
|
|
|
|
ErrStackOverflow
|
|
|
|
ErrIllegalMemoryAccess
|
|
|
|
ErrBadJumpdest
|
|
|
|
ErrSelfdestructFailed
|
|
|
|
)
|
|
|
|
|
2022-11-17 14:55:40 +00:00
|
|
|
func Load(store adt.Store, act *types.Actor) (State, error) {
|
|
|
|
if name, av, ok := actors.GetActorMetaByCode(act.Code); ok {
|
2022-12-13 23:02:34 +00:00
|
|
|
if name != manifest.EvmKey {
|
2022-11-17 14:55:40 +00:00
|
|
|
return nil, xerrors.Errorf("actor code is not evm: %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
switch av {
|
|
|
|
{{range .versions}}
|
|
|
|
case actorstypes.Version{{.}}:
|
|
|
|
return load{{.}}(store, act.Head)
|
|
|
|
{{end}}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, xerrors.Errorf("unknown actor code %s", act.Code)
|
|
|
|
}
|
|
|
|
|
|
|
|
func MakeState(store adt.Store, av actorstypes.Version, bytecode cid.Cid) (State, error) {
|
|
|
|
switch av {
|
|
|
|
{{range .versions}}
|
|
|
|
case actorstypes.Version{{.}}:
|
|
|
|
return make{{.}}(store, bytecode)
|
|
|
|
{{end}}
|
|
|
|
default: return nil, xerrors.Errorf("evm actor only valid for actors v10 and above, got %d", av)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type State interface {
|
|
|
|
cbor.Marshaler
|
|
|
|
|
|
|
|
Nonce() (uint64, error)
|
2023-02-17 04:07:20 +00:00
|
|
|
IsAlive() (bool, error)
|
2022-11-17 14:55:40 +00:00
|
|
|
GetState() interface{}
|
2023-02-09 12:12:16 +00:00
|
|
|
|
2023-02-09 12:21:20 +00:00
|
|
|
GetBytecode() ([]byte, error)
|
2023-02-09 12:12:16 +00:00
|
|
|
GetBytecodeCID() (cid.Cid, error)
|
|
|
|
GetBytecodeHash() ([32]byte, error)
|
2022-11-17 14:55:40 +00:00
|
|
|
}
|