Skip to content

Commit 94a3211

Browse files
authored
Merge branch 'main' into webui-1.4
2 parents be925fd + b7f2bde commit 94a3211

File tree

10 files changed

+510
-506
lines changed

10 files changed

+510
-506
lines changed

proto/quicksilver/claimsmanager/v1/claimsmanager.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ message Claim {
3737
uint64 _amount = 5 [deprecated = true];
3838
string amount = 6 [
3939
(cosmos_proto.scalar) = "cosmos.Int",
40-
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
40+
(gogoproto.customtype) = "cosmossdk.io/math.Int",
4141
(gogoproto.nullable) = false
4242
];
4343
}

proto/quicksilver/interchainquery/v1/interchainquery.proto

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ message Query {
1818
// change these to uint64 in v0.5.0
1919
string period = 6 [
2020
(cosmos_proto.scalar) = "cosmos.Int",
21-
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
21+
(gogoproto.customtype) = "cosmossdk.io/math.Int",
2222
(gogoproto.nullable) = false
2323
];
2424
string last_height = 7 [
2525
(cosmos_proto.scalar) = "cosmos.Int",
26-
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
26+
(gogoproto.customtype) = "cosmossdk.io/math.Int",
2727
(gogoproto.nullable) = false
2828
];
2929
string callback_id = 8;
3030
uint64 ttl = 9;
3131
string last_emission = 10 [
3232
(cosmos_proto.scalar) = "cosmos.Int",
33-
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
33+
(gogoproto.customtype) = "cosmossdk.io/math.Int",
3434
(gogoproto.nullable) = false
3535
];
3636
}
@@ -40,12 +40,12 @@ message DataPoint {
4040
// change these to uint64 in v0.5.0
4141
string remote_height = 2 [
4242
(cosmos_proto.scalar) = "cosmos.Int",
43-
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
43+
(gogoproto.customtype) = "cosmossdk.io/math.Int",
4444
(gogoproto.nullable) = false
4545
];
4646
string local_height = 3 [
4747
(cosmos_proto.scalar) = "cosmos.Int",
48-
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
48+
(gogoproto.customtype) = "cosmossdk.io/math.Int",
4949
(gogoproto.nullable) = false
5050
];
5151
bytes value = 4 [(gogoproto.jsontag) = "result,omitempty"];

proto/quicksilver/interchainstaking/v1/interchainstaking.proto

+4-4
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ message Zone {
5252
SubzoneInfo subzoneInfo = 29;
5353
string dust_threshold = 30 [
5454
(cosmos_proto.scalar) = "cosmos.Int",
55-
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
55+
(gogoproto.customtype) = "cosmossdk.io/math.Int",
5656
(gogoproto.nullable) = false
5757
];
5858
string transfer_channel = 31;
@@ -98,7 +98,7 @@ message Distribution {
9898
uint64 _amount = 2 [deprecated = true];
9999
string amount = 3 [
100100
(cosmos_proto.scalar) = "cosmos.Int",
101-
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
101+
(gogoproto.customtype) = "cosmossdk.io/math.Int",
102102
(gogoproto.nullable) = false
103103
];
104104
}
@@ -157,7 +157,7 @@ message RedelegationRecord {
157157
];
158158
string amount = 7 [
159159
(cosmos_proto.scalar) = "cosmos.Int",
160-
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
160+
(gogoproto.customtype) = "cosmossdk.io/math.Int",
161161
(gogoproto.nullable) = false
162162
];
163163
}
@@ -176,7 +176,7 @@ message Validator {
176176
];
177177
string voting_power = 4 [
178178
(cosmos_proto.scalar) = "cosmos.Int",
179-
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
179+
(gogoproto.customtype) = "cosmossdk.io/math.Int",
180180
(gogoproto.nullable) = false
181181
];
182182
string score = 5 [

proto/quicksilver/interchainstaking/v1/proposals.proto

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ message RegisterZoneProposal {
2929
bool is_118 = 14;
3030
string dust_threshold = 15 [
3131
(cosmos_proto.scalar) = "cosmos.Int",
32-
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
32+
(gogoproto.customtype) = "cosmossdk.io/math.Int",
3333
(gogoproto.nullable) = false
3434
];
3535
string transfer_channel = 16;
@@ -56,7 +56,7 @@ message RegisterZoneProposalWithDeposit {
5656
bool is_118 = 15;
5757
string dust_threshold = 16 [
5858
(cosmos_proto.scalar) = "cosmos.Int",
59-
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
59+
(gogoproto.customtype) = "cosmossdk.io/math.Int",
6060
(gogoproto.nullable) = false
6161
];
6262
string transfer_channel = 17;

proto/quicksilver/interchainstaking/v1/query.proto

+4-4
Original file line numberDiff line numberDiff line change
@@ -127,19 +127,19 @@ message Statistics {
127127
string chain_id = 1;
128128
string deposited = 2 [
129129
(cosmos_proto.scalar) = "cosmos.Int",
130-
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
130+
(gogoproto.customtype) = "cosmossdk.io/math.Int",
131131
(gogoproto.nullable) = false
132132
];
133133
int64 deposits = 3;
134134
int64 depositors = 4;
135135
string delegated = 5 [
136136
(cosmos_proto.scalar) = "cosmos.Int",
137-
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
137+
(gogoproto.customtype) = "cosmossdk.io/math.Int",
138138
(gogoproto.nullable) = false
139139
];
140140
string supply = 6 [
141141
(cosmos_proto.scalar) = "cosmos.Int",
142-
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
142+
(gogoproto.customtype) = "cosmossdk.io/math.Int",
143143
(gogoproto.nullable) = false
144144
];
145145
string distance_to_target = 7;
@@ -229,7 +229,7 @@ message QueryDelegationsResponse {
229229
repeated Delegation delegations = 1 [(gogoproto.nullable) = false];
230230
string tvl = 2 [
231231
(cosmos_proto.scalar) = "cosmos.Int",
232-
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
232+
(gogoproto.customtype) = "cosmossdk.io/math.Int",
233233
(gogoproto.nullable) = false
234234
];
235235
cosmos.base.query.v1beta1.PageResponse pagination = 3;

x/claimsmanager/types/claimsmanager.pb.go

+46-46
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)