Skip to content

Commit 1b38aa5

Browse files
committed
Merge branch 'main' into bump/cosmos-sdk
2 parents c5cd990 + 734db98 commit 1b38aa5

File tree

4 files changed

+21
-20
lines changed

4 files changed

+21
-20
lines changed

client/docs/statik/statik.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/docs/swagger-ui/swagger.yaml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -41293,7 +41293,7 @@ paths:
4129341293
- Query
4129441294
/indexer/version:
4129541295
get:
41296-
summary: Version queries all the collections of an account
41296+
summary: Version queries all the versions of the submodules
4129741297
operationId: Versions
4129841298
responses:
4129941299
'200':
@@ -41340,6 +41340,7 @@ paths:
4134041340
- Query
4134141341
/indexer/vmtype:
4134241342
get:
41343+
summary: VMType queries the type of the Minitia's VM
4134341344
operationId: VMType
4134441345
responses:
4134541346
'200':
@@ -41488,7 +41489,7 @@ paths:
4148841489
type: string
4148941490
title: >-
4149041491
Proposer represents the proposer of a block: for
41491-
minitia, its the L2 operator
41492+
minitia, it is the L2 operator
4149241493
title: Block represents a indexed block in a blockchain
4149341494
pagination:
4149441495
description: pagination defines the pagination in the response.
@@ -41660,9 +41661,9 @@ paths:
4166041661
type: string
4166141662
title: >-
4166241663
Proposer represents the proposer of a block: for minitia,
41663-
its the L2 operator
41664+
it is the L2 operator
4166441665
title: Block represents a indexed block in a blockchain
41665-
description: BlockResponse defines the response for the Blocks RPC.
41666+
description: BlockResponse defines the response for the Block RPC.
4166641667
default:
4166741668
description: An unexpected error response.
4166841669
schema:
@@ -42203,7 +42204,7 @@ paths:
4220342204
- Query
4220442205
/indexer/tx/v1/txs/by_account/{account}:
4220542206
get:
42206-
summary: TxsByAccount queries all the collections of given account
42207+
summary: TxsByAccount queries all transactions of given account
4220742208
operationId: TxsByAccount
4220842209
responses:
4220942210
'200':
@@ -42716,7 +42717,7 @@ paths:
4271642717
- Query
4271742718
/indexer/tx/v1/txs/by_height/{height}:
4271842719
get:
42719-
summary: TxsByHeight queries all the collections of given height
42720+
summary: TxsByHeight queries all transactions of given height
4272042721
operationId: TxsByHeight
4272142722
responses:
4272242723
'200':
@@ -44216,7 +44217,7 @@ paths:
4421644217
- Query
4421744218
/indexer/pair/v1/pairs:
4421844219
get:
44219-
summary: Pairs queries all the collections of an account
44220+
summary: Pairs queries all the pairs of L1 and L2
4422044221
operationId: Pairs
4422144222
responses:
4422244223
'200':
@@ -70460,7 +70461,7 @@ definitions:
7046070461
operator_address:
7046170462
type: string
7046270463
title: >-
70463-
Proposer represents the proposer of a block: for minitia, its the L2
70464+
Proposer represents the proposer of a block: for minitia, it is the L2
7046470465
operator
7046570466
title: Block represents a indexed block in a blockchain
7046670467
indexer.block.v1.BlockResponse:
@@ -70523,10 +70524,10 @@ definitions:
7052370524
operator_address:
7052470525
type: string
7052570526
title: >-
70526-
Proposer represents the proposer of a block: for minitia, its the
70527-
L2 operator
70527+
Proposer represents the proposer of a block: for minitia, it is
70528+
the L2 operator
7052870529
title: Block represents a indexed block in a blockchain
70529-
description: BlockResponse defines the response for the Blocks RPC.
70530+
description: BlockResponse defines the response for the Block RPC.
7053070531
indexer.block.v1.BlocksResponse:
7053170532
type: object
7053270533
properties:
@@ -70589,7 +70590,7 @@ definitions:
7058970590
operator_address:
7059070591
type: string
7059170592
title: >-
70592-
Proposer represents the proposer of a block: for minitia, its
70593+
Proposer represents the proposer of a block: for minitia, it is
7059370594
the L2 operator
7059470595
title: Block represents a indexed block in a blockchain
7059570596
pagination:
@@ -70627,7 +70628,7 @@ definitions:
7062770628
operator_address:
7062870629
type: string
7062970630
title: >-
70630-
Proposer represents the proposer of a block: for minitia, its the L2
70631+
Proposer represents the proposer of a block: for minitia, it is the L2
7063170632
operator
7063270633
indexer.tx.v1.QueryTxResponse:
7063370634
type: object

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ require (
3636
github.com/hashicorp/go-metrics v0.5.3
3737
github.com/initia-labs/OPinit v0.2.6
3838
github.com/initia-labs/initia v0.2.7
39-
github.com/initia-labs/kvindexer v0.1.2
39+
github.com/initia-labs/kvindexer v0.1.3
4040
github.com/initia-labs/kvindexer/submodules/block v0.1.0
4141
github.com/initia-labs/kvindexer/submodules/tx v0.1.0
42-
github.com/initia-labs/kvindexer/submodules/wasm-nft v0.1.1
42+
github.com/initia-labs/kvindexer/submodules/wasm-nft v0.1.2
4343
github.com/initia-labs/kvindexer/submodules/wasm-pair v0.1.0
4444
github.com/noble-assets/forwarding v0.0.0-20240416085758-ed8e9efaf69a
4545
github.com/pkg/errors v0.9.1

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -743,14 +743,14 @@ github.com/initia-labs/ibc-go/v8 v8.0.0-20240419124350-4275a05abe2c h1:FDwh5zZbm
743743
github.com/initia-labs/ibc-go/v8 v8.0.0-20240419124350-4275a05abe2c/go.mod h1:wj3qx75iC/XNnsMqbPDCIGs0G6Y3E/lo3bdqCyoCy+8=
744744
github.com/initia-labs/initia v0.2.7 h1:avSfEh+nheYC7gFxnfHaXSHRBZYWHI19vn/T0luI4y8=
745745
github.com/initia-labs/initia v0.2.7/go.mod h1:PFWX4I983j462shp3a1lLRheBiIfZrRoF/MQI/CsL9o=
746-
github.com/initia-labs/kvindexer v0.1.2 h1:P7wATqtLtz4wwmahrf+zO0Z+DY3NIGfvVUyT/g3VM3M=
747-
github.com/initia-labs/kvindexer v0.1.2/go.mod h1:+2hInhMys7TFlGsAey2bFH4tA9fu+5/W17Ttecf1NHc=
746+
github.com/initia-labs/kvindexer v0.1.3 h1:TLkgJjp5TiPnH+OzYfk7ZKQTKqGOfSte59Y3gasob+o=
747+
github.com/initia-labs/kvindexer v0.1.3/go.mod h1:rvAmgCAmEs4KM8sRRPcyTqNNwi8s2JiHybiFkYfp4KE=
748748
github.com/initia-labs/kvindexer/submodules/block v0.1.0 h1:y+EXnksd/I2F96mzIoQA64nZUZON2P+99YrSzeLCLoY=
749749
github.com/initia-labs/kvindexer/submodules/block v0.1.0/go.mod h1:4c+c59wVAnjuaJv/pcDYaUkeVmOqVV+orqEjya/RIjo=
750750
github.com/initia-labs/kvindexer/submodules/tx v0.1.0 h1:6kbf6wmzXPN0XCQLasiFgq1AlZHkt5K3/ZG+IWw1nNs=
751751
github.com/initia-labs/kvindexer/submodules/tx v0.1.0/go.mod h1:i0XeLbLa6xdgTR01WF8kaAO50vMmwxbeq0fKexwpFHU=
752-
github.com/initia-labs/kvindexer/submodules/wasm-nft v0.1.1 h1:tXg3p4mhpzXfINUjzKWbezO9yu9DdoT5o+ShhCa57gQ=
753-
github.com/initia-labs/kvindexer/submodules/wasm-nft v0.1.1/go.mod h1:E6vyhETNyrmFS8En1kJqxjWslyerDcFfD8BxwYUFx7k=
752+
github.com/initia-labs/kvindexer/submodules/wasm-nft v0.1.2 h1:JAn1BkURDDYQlM0Ge6uVERsi0yTxEgT0prG9j9Qjj6w=
753+
github.com/initia-labs/kvindexer/submodules/wasm-nft v0.1.2/go.mod h1:1HD0/oH6kErv8F0J5ayGfLqerWSCPveGHSCbcfiBELw=
754754
github.com/initia-labs/kvindexer/submodules/wasm-pair v0.1.0 h1:Ns7bxZkwdby67aIq3VXFAzlpoLdGONJbDaMiqu6k408=
755755
github.com/initia-labs/kvindexer/submodules/wasm-pair v0.1.0/go.mod h1:SEotHE6mJ3VKr9g4j0AoXHgEYz6qhL3i1bX1QRnVT6g=
756756
github.com/initia-labs/movevm v0.2.7 h1:6UM35Cp6XQ1LgM7gnaSYouc7osSwxSQJsZgQdpXnBM4=

0 commit comments

Comments
 (0)