From 8b8379f8e1b061ed106d03d736dc47151c2f46c7 Mon Sep 17 00:00:00 2001 From: Son of Odin <2700975-son-of-odin@users.noreply.gitlab.com> Date: Mon, 11 Mar 2024 10:19:43 -0400 Subject: [PATCH] use string instead of bytes for creator --- proto/arkeo/arkeo/tx.proto | 22 +++++++++++----------- proto/arkeo/claim/tx.proto | 10 +++++----- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/proto/arkeo/arkeo/tx.proto b/proto/arkeo/arkeo/tx.proto index 17438e5a..6e52e2d3 100644 --- a/proto/arkeo/arkeo/tx.proto +++ b/proto/arkeo/arkeo/tx.proto @@ -21,8 +21,8 @@ service Msg { rpc SetVersion (MsgSetVersion) returns (MsgSetVersionResponse); } message MsgBondProvider { - bytes creator = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"] ; - bytes provider = 2 [(gogoproto.casttype) = "github.com/arkeonetwork/arkeo/common.PubKey" ] ; + string creator = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"] ; + string provider = 2 [(gogoproto.casttype) = "github.com/arkeonetwork/arkeo/common.PubKey" ] ; string service = 3; string bond = 4 [(cosmos_proto.scalar) = "cosmos.Int" , (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false]; } @@ -30,8 +30,8 @@ message MsgBondProvider { message MsgBondProviderResponse {} message MsgModProvider { - bytes creator = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; - bytes provider = 2 [(gogoproto.casttype) = "github.com/arkeonetwork/arkeo/common.PubKey" ]; + string creator = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + string provider = 2 [(gogoproto.casttype) = "github.com/arkeonetwork/arkeo/common.PubKey" ]; string service = 3; string metadata_uri = 4; uint64 metadata_nonce = 5; @@ -46,11 +46,11 @@ message MsgModProvider { message MsgModProviderResponse {} message MsgOpenContract { - bytes creator = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"] ; - bytes provider = 2 [(gogoproto.casttype) = "github.com/arkeonetwork/arkeo/common.PubKey" ] ; + string creator = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"] ; + string provider = 2 [(gogoproto.casttype) = "github.com/arkeonetwork/arkeo/common.PubKey" ] ; string service = 3; - bytes client = 4 [(gogoproto.casttype) = "github.com/arkeonetwork/arkeo/common.PubKey" ] ; - bytes delegate = 5 [(gogoproto.casttype) = "github.com/arkeonetwork/arkeo/common.PubKey" ] ; + string client = 4 [(gogoproto.casttype) = "github.com/arkeonetwork/arkeo/common.PubKey" ] ; + string delegate = 5 [(gogoproto.casttype) = "github.com/arkeonetwork/arkeo/common.PubKey" ] ; ContractType contract_type = 6; int64 duration = 7; cosmos.base.v1beta1.Coin rate = 8 [(gogoproto.nullable) = false ] ; @@ -63,14 +63,14 @@ message MsgOpenContract { message MsgOpenContractResponse {} message MsgCloseContract { - bytes creator = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + string creator = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; uint64 contract_id = 2; } message MsgCloseContractResponse {} message MsgClaimContractIncome { - bytes creator = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + string creator = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; uint64 contract_id = 2; bytes signature = 4; int64 nonce = 5; @@ -81,7 +81,7 @@ message MsgClaimContractIncomeResponse {} // this line is used by starport scaffolding # proto/tx/message message MsgSetVersion { - bytes creator = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"] ; + string creator = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"] ; int64 version = 2; } diff --git a/proto/arkeo/claim/tx.proto b/proto/arkeo/claim/tx.proto index cda75cb4..295e9218 100644 --- a/proto/arkeo/claim/tx.proto +++ b/proto/arkeo/claim/tx.proto @@ -14,7 +14,7 @@ service Msg { // this line is used by starport scaffolding # proto/tx/rpc } message MsgClaimEth { - bytes creator = 1 [ (gogoproto.casttype) = + string creator = 1 [ (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress" ]; string eth_address = 2; // the adress the claim is for string signature = 3; // EIP712 signature that has to be signed by ethAddress @@ -23,23 +23,23 @@ message MsgClaimEth { message MsgClaimEthResponse {} message MsgClaimArkeo { - bytes creator = 1 [ (gogoproto.casttype) = + string creator = 1 [ (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress" ]; } message MsgClaimArkeoResponse {} message MsgTransferClaim { - bytes creator = 1 [ (gogoproto.casttype) = + string creator = 1 [ (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress" ]; - bytes toAddress = 2 [ (gogoproto.casttype) = + string toAddress = 2 [ (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress" ]; } message MsgTransferClaimResponse {} message MsgAddClaim { - bytes creator = 1 [ (gogoproto.casttype) = + string creator = 1 [ (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress" ]; Chain chain = 2; string address = 3;