2022-04-21 20:16:28 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package kava.evmutil.v1beta1;
|
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
import "cosmos_proto/cosmos.proto";
|
2022-08-23 17:04:40 +00:00
|
|
|
import "kava/evmutil/v1beta1/conversion_pair.proto";
|
2022-04-21 20:16:28 +00:00
|
|
|
|
2022-08-23 17:04:40 +00:00
|
|
|
option go_package = "github.com/kava-labs/kava/x/evmutil/types";
|
|
|
|
option (gogoproto.equal_all) = true;
|
|
|
|
option (gogoproto.verbose_equal_all) = true;
|
2022-04-21 20:16:28 +00:00
|
|
|
|
|
|
|
// GenesisState defines the evmutil module's genesis state.
|
|
|
|
message GenesisState {
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
|
|
|
|
repeated Account accounts = 1 [(gogoproto.nullable) = false];
|
2022-08-23 17:04:40 +00:00
|
|
|
|
|
|
|
// params defines all the parameters of the module.
|
|
|
|
Params params = 2 [(gogoproto.nullable) = false];
|
2022-04-21 20:16:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// BalanceAccount defines an account in the evmutil module.
|
|
|
|
message Account {
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
|
|
|
|
bytes address = 1 [
|
|
|
|
(cosmos_proto.scalar) = "cosmos.AddressBytes",
|
|
|
|
(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"
|
|
|
|
];
|
|
|
|
|
|
|
|
// balance indicates the amount of akava owned by the address.
|
|
|
|
string balance = 2 [
|
|
|
|
(cosmos_proto.scalar) = "cosmos.Int",
|
|
|
|
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
|
|
|
|
(gogoproto.nullable) = false
|
|
|
|
];
|
|
|
|
}
|
2022-08-23 17:04:40 +00:00
|
|
|
|
|
|
|
// Params defines the evmutil module params
|
|
|
|
message Params {
|
|
|
|
// enabled_conversion_pairs defines the list of conversion pairs allowed to be
|
|
|
|
// converted between Kava ERC20 and sdk.Coin
|
|
|
|
repeated ConversionPair enabled_conversion_pairs = 4
|
|
|
|
[(gogoproto.nullable) = false, (gogoproto.castrepeated) = "ConversionPairs"];
|
|
|
|
}
|