Skip to content

Commit

Permalink
bump kvindexer and update swagger
Browse files Browse the repository at this point in the history
  • Loading branch information
Vritra4 committed May 2, 2024
1 parent fbf1746 commit bdb7962
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 20 deletions.
2 changes: 1 addition & 1 deletion client/docs/statik/statik.go

Large diffs are not rendered by default.

27 changes: 14 additions & 13 deletions client/docs/swagger-ui/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41293,7 +41293,7 @@ paths:
- Query
/indexer/version:
get:
summary: Version queries all the collections of an account
summary: Version queries all the versions of the submodules
operationId: Versions
responses:
'200':
Expand Down Expand Up @@ -41340,6 +41340,7 @@ paths:
- Query
/indexer/vmtype:
get:
summary: VMType queries the type of the Minitia's VM
operationId: VMType
responses:
'200':
Expand Down Expand Up @@ -41488,7 +41489,7 @@ paths:
type: string
title: >-
Proposer represents the proposer of a block: for
minitia, its the L2 operator
minitia, it is the L2 operator
title: Block represents a indexed block in a blockchain
pagination:
description: pagination defines the pagination in the response.
Expand Down Expand Up @@ -41660,9 +41661,9 @@ paths:
type: string
title: >-
Proposer represents the proposer of a block: for minitia,
its the L2 operator
it is the L2 operator
title: Block represents a indexed block in a blockchain
description: BlockResponse defines the response for the Blocks RPC.
description: BlockResponse defines the response for the Block RPC.
default:
description: An unexpected error response.
schema:
Expand Down Expand Up @@ -42203,7 +42204,7 @@ paths:
- Query
/indexer/tx/v1/txs/by_account/{account}:
get:
summary: TxsByAccount queries all the collections of given account
summary: TxsByAccount queries all transactions of given account
operationId: TxsByAccount
responses:
'200':
Expand Down Expand Up @@ -42716,7 +42717,7 @@ paths:
- Query
/indexer/tx/v1/txs/by_height/{height}:
get:
summary: TxsByHeight queries all the collections of given height
summary: TxsByHeight queries all transactions of given height
operationId: TxsByHeight
responses:
'200':
Expand Down Expand Up @@ -44216,7 +44217,7 @@ paths:
- Query
/indexer/pair/v1/pairs:
get:
summary: Pairs queries all the collections of an account
summary: Pairs queries all the pairs of L1 and L2
operationId: Pairs
responses:
'200':
Expand Down Expand Up @@ -70460,7 +70461,7 @@ definitions:
operator_address:
type: string
title: >-
Proposer represents the proposer of a block: for minitia, its the L2
Proposer represents the proposer of a block: for minitia, it is the L2
operator
title: Block represents a indexed block in a blockchain
indexer.block.v1.BlockResponse:
Expand Down Expand Up @@ -70523,10 +70524,10 @@ definitions:
operator_address:
type: string
title: >-
Proposer represents the proposer of a block: for minitia, its the
L2 operator
Proposer represents the proposer of a block: for minitia, it is
the L2 operator
title: Block represents a indexed block in a blockchain
description: BlockResponse defines the response for the Blocks RPC.
description: BlockResponse defines the response for the Block RPC.
indexer.block.v1.BlocksResponse:
type: object
properties:
Expand Down Expand Up @@ -70589,7 +70590,7 @@ definitions:
operator_address:
type: string
title: >-
Proposer represents the proposer of a block: for minitia, its
Proposer represents the proposer of a block: for minitia, it is
the L2 operator
title: Block represents a indexed block in a blockchain
pagination:
Expand Down Expand Up @@ -70627,7 +70628,7 @@ definitions:
operator_address:
type: string
title: >-
Proposer represents the proposer of a block: for minitia, its the L2
Proposer represents the proposer of a block: for minitia, it is the L2
operator
indexer.tx.v1.QueryTxResponse:
type: object
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ require (
github.com/hashicorp/go-metrics v0.5.3
github.com/initia-labs/OPinit v0.2.6
github.com/initia-labs/initia v0.2.7
github.com/initia-labs/kvindexer v0.1.2
github.com/initia-labs/kvindexer v0.1.3
github.com/initia-labs/kvindexer/submodules/block v0.1.0
github.com/initia-labs/kvindexer/submodules/tx v0.1.0
github.com/initia-labs/kvindexer/submodules/wasm-nft v0.1.1
github.com/initia-labs/kvindexer/submodules/wasm-nft v0.1.2
github.com/initia-labs/kvindexer/submodules/wasm-pair v0.1.0
github.com/noble-assets/forwarding v0.0.0-20240416085758-ed8e9efaf69a
github.com/pkg/errors v0.9.1
Expand Down
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -743,14 +743,14 @@ github.com/initia-labs/ibc-go/v8 v8.0.0-20240419124350-4275a05abe2c h1:FDwh5zZbm
github.com/initia-labs/ibc-go/v8 v8.0.0-20240419124350-4275a05abe2c/go.mod h1:wj3qx75iC/XNnsMqbPDCIGs0G6Y3E/lo3bdqCyoCy+8=
github.com/initia-labs/initia v0.2.7 h1:avSfEh+nheYC7gFxnfHaXSHRBZYWHI19vn/T0luI4y8=
github.com/initia-labs/initia v0.2.7/go.mod h1:PFWX4I983j462shp3a1lLRheBiIfZrRoF/MQI/CsL9o=
github.com/initia-labs/kvindexer v0.1.2 h1:P7wATqtLtz4wwmahrf+zO0Z+DY3NIGfvVUyT/g3VM3M=
github.com/initia-labs/kvindexer v0.1.2/go.mod h1:+2hInhMys7TFlGsAey2bFH4tA9fu+5/W17Ttecf1NHc=
github.com/initia-labs/kvindexer v0.1.3 h1:TLkgJjp5TiPnH+OzYfk7ZKQTKqGOfSte59Y3gasob+o=
github.com/initia-labs/kvindexer v0.1.3/go.mod h1:rvAmgCAmEs4KM8sRRPcyTqNNwi8s2JiHybiFkYfp4KE=
github.com/initia-labs/kvindexer/submodules/block v0.1.0 h1:y+EXnksd/I2F96mzIoQA64nZUZON2P+99YrSzeLCLoY=
github.com/initia-labs/kvindexer/submodules/block v0.1.0/go.mod h1:4c+c59wVAnjuaJv/pcDYaUkeVmOqVV+orqEjya/RIjo=
github.com/initia-labs/kvindexer/submodules/tx v0.1.0 h1:6kbf6wmzXPN0XCQLasiFgq1AlZHkt5K3/ZG+IWw1nNs=
github.com/initia-labs/kvindexer/submodules/tx v0.1.0/go.mod h1:i0XeLbLa6xdgTR01WF8kaAO50vMmwxbeq0fKexwpFHU=
github.com/initia-labs/kvindexer/submodules/wasm-nft v0.1.1 h1:tXg3p4mhpzXfINUjzKWbezO9yu9DdoT5o+ShhCa57gQ=
github.com/initia-labs/kvindexer/submodules/wasm-nft v0.1.1/go.mod h1:E6vyhETNyrmFS8En1kJqxjWslyerDcFfD8BxwYUFx7k=
github.com/initia-labs/kvindexer/submodules/wasm-nft v0.1.2 h1:JAn1BkURDDYQlM0Ge6uVERsi0yTxEgT0prG9j9Qjj6w=
github.com/initia-labs/kvindexer/submodules/wasm-nft v0.1.2/go.mod h1:1HD0/oH6kErv8F0J5ayGfLqerWSCPveGHSCbcfiBELw=
github.com/initia-labs/kvindexer/submodules/wasm-pair v0.1.0 h1:Ns7bxZkwdby67aIq3VXFAzlpoLdGONJbDaMiqu6k408=
github.com/initia-labs/kvindexer/submodules/wasm-pair v0.1.0/go.mod h1:SEotHE6mJ3VKr9g4j0AoXHgEYz6qhL3i1bX1QRnVT6g=
github.com/initia-labs/movevm v0.2.7 h1:6UM35Cp6XQ1LgM7gnaSYouc7osSwxSQJsZgQdpXnBM4=
Expand Down

0 comments on commit bdb7962

Please sign in to comment.