2021-01-07 21:45:32 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package ethermint.evm.v1alpha1;
|
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
import "ethermint/evm/v1alpha1/evm.proto";
|
|
|
|
|
2021-06-22 10:49:18 +00:00
|
|
|
option go_package = "github.com/tharsis/ethermint/x/evm/types";
|
2021-01-07 21:45:32 +00:00
|
|
|
|
|
|
|
// GenesisState defines the evm module's genesis state.
|
|
|
|
message GenesisState {
|
|
|
|
// accounts is an array containing the ethereum genesis accounts.
|
2021-04-19 07:10:57 +00:00
|
|
|
repeated GenesisAccount accounts = 1 [(gogoproto.nullable) = false];
|
2021-01-07 21:45:32 +00:00
|
|
|
// chain_config defines the Ethereum chain configuration.
|
2021-04-19 07:10:57 +00:00
|
|
|
ChainConfig chain_config = 2 [(gogoproto.moretags) = "yaml:\"chain_config\"", (gogoproto.nullable) = false];
|
2021-01-07 21:45:32 +00:00
|
|
|
// params defines all the paramaters of the module.
|
2021-04-19 07:10:57 +00:00
|
|
|
Params params = 3 [(gogoproto.nullable) = false];
|
2021-01-07 21:45:32 +00:00
|
|
|
|
2021-04-19 07:10:57 +00:00
|
|
|
repeated TransactionLogs txs_logs = 4 [(gogoproto.moretags) = "yaml:\"txs_logs\"", (gogoproto.nullable) = false];
|
2021-01-07 21:45:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GenesisAccount defines an account to be initialized in the genesis state.
|
|
|
|
// Its main difference between with Geth's GenesisAccount is that it uses a
|
|
|
|
// custom storage type and that it doesn't contain the private key field.
|
|
|
|
message GenesisAccount {
|
|
|
|
// address defines an ethereum hex formated address of an account
|
|
|
|
string address = 1;
|
|
|
|
// code defines the hex bytes of the account code.
|
2021-04-17 10:00:07 +00:00
|
|
|
string code = 2;
|
2021-01-07 21:45:32 +00:00
|
|
|
// storage defines the set of state key values for the account.
|
2021-04-19 07:10:57 +00:00
|
|
|
repeated State storage = 3 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "Storage"];
|
2021-04-18 15:54:18 +00:00
|
|
|
}
|