Skip to content

Commit

Permalink
Merge pull request #62 from provenance-io/add-hold-module
Browse files Browse the repository at this point in the history
add the hold module and bring coroutines client up to date
  • Loading branch information
benarena authored Mar 14, 2024
2 parents 850cdc7 + 7df0d7b commit 42b0822
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,11 @@ open class PbCoroutinesClient(
val connectionClient = ibc.core.connection.v1.QueryGrpcKt.QueryCoroutineStub(channel)
val distributionClient = cosmos.distribution.v1beta1.QueryGrpcKt.QueryCoroutineStub(channel)
val evidenceClient = cosmos.evidence.v1beta1.QueryGrpcKt.QueryCoroutineStub(channel)
val exchangeClient = io.provenance.exchange.v1.QueryGrpc.newBlockingStub(channel)
val feegrantClient = cosmos.feegrant.v1beta1.QueryGrpcKt.QueryCoroutineStub(channel)
val govClient = cosmos.gov.v1beta1.QueryGrpcKt.QueryCoroutineStub(channel)
val groupClient = cosmos.group.v1.QueryGrpc.newBlockingStub(channel)
val holdClient = io.provenance.hold.v1.QueryGrpc.newBlockingStub(channel)
val markerClient = io.provenance.marker.v1.QueryGrpcKt.QueryCoroutineStub(channel)
val metadataClient = io.provenance.metadata.v1.QueryGrpcKt.QueryCoroutineStub(channel)
val mintClient = cosmos.mint.v1beta1.QueryGrpcKt.QueryCoroutineStub(channel)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ open class AbstractPbClient<T : ManagedChannelBuilder<T>>(
val feegrantClient = cosmos.feegrant.v1beta1.QueryGrpc.newBlockingStub(channel)
val govClient = cosmos.gov.v1beta1.QueryGrpc.newBlockingStub(channel)
val groupClient = cosmos.group.v1.QueryGrpc.newBlockingStub(channel)
val holdClient = io.provenance.hold.v1.QueryGrpc.newBlockingStub(channel)
val markerClient = io.provenance.marker.v1.QueryGrpc.newBlockingStub(channel)
val metadataClient = io.provenance.metadata.v1.QueryGrpc.newBlockingStub(channel)
val mintClient = cosmos.mint.v1beta1.QueryGrpc.newBlockingStub(channel)
Expand Down

0 comments on commit 42b0822

Please sign in to comment.