Questions tagged [cosmos-sdk]
48 questions
4
votes
1 answer
Unknown revision error when implementing Protobuf. (GO)
I am coding at the moment GO with GitHub Repositories and need to pull a package.
go get github.com/cosmos/cosmos-sdk/types
When I enter there comes:
go get: github.com/cosmos/cosmos-sdk@v0.33.2 updating to
github.com/cosmos/cosmos-sdk@v0.44.5…

SurpriseMF
- 174
- 9
4
votes
1 answer
Why do I get "invalid coin denomination" when using Starport with the CosmosSDK
I am using Starport (https://github.com/tendermint/starport) to bootstrap my Cosmos SDK blockchain. I only want one Token for staking and usage of the blockchain.
This is my config.yml file
version: 1
accounts:
- name: user1
coins:…

Tosch
- 475
- 5
- 12
3
votes
0 answers
signature verification failed; please verify account number and chain-id: unauthorized
You don't want to know how many hours I've spent trying to figure this one out.
I'm trying to send a broadcast to the Cosmos Blockchain, via the Terra Pisco/Rebel1 Api.
LUNA2: https://pisco-lcd.terra.dev/swagger/#/
LUNC:…

Dan Gerchcovich
- 168
- 5
- 12
3
votes
1 answer
How to generate hd wallet keys & addresses given seed phrase with cosmos sdk?
I am trying to generate hd wallet private keys , public keys and addresess using cosmos sdk. Below is the equivalent implementation in python which generates the keys , address as expected but when trying to generated in golang using cosmos sdk it…

Mozhi
- 757
- 1
- 11
- 28
3
votes
2 answers
What does the bytes (like `0x34`) mean in the module specs?
In the specs of the Cosmos SDK, what does the byte 0x34 in a line like this mean?
Redelegations: 0x34 | DelegatorAddr | ValidatorSrcAddr | ValidatorDstAddr -> amino(redelegation)
And I guess amino is the decoder?

hjorthjort
- 55
- 4
2
votes
1 answer
Compile time error of cosmos-sdk/proto/bank/v1beta1/query.proto file
After installing the protoc and saving the cosmos-sdk/proto/bank/v1beta1/query.proto file this file shows a lot of error and for acknowledging the error I ran this command protoc --go_out=. query.proto
Here is the problem…

Md. Saiful Islam
- 81
- 6
2
votes
0 answers
Having an error while compiling a Rollkit on Linux for a blockchain built on Cosmos
I'm just learning and stuck in the middle of process.
While compiling, one document marks this error:
✘ File: /root/minibar/proto/minibar/minibar/query.proto: :21:3: found "message" but expected [service comment|rpc]
The file:
syntax =…

crptcpchk
- 21
- 2
2
votes
1 answer
Viewing CosmWasm smart contract data on a blockchain explorer
Is it possible to view the actual data (schema data) that is stored by a smart contract? There is a "Counter" smart contract out there and I would like to see (perhaps on a block explorer) how and where this data is stored. I am looking to find…

gevik
- 3,177
- 4
- 25
- 28
2
votes
1 answer
How to get cosmos wallet balance with python's library cosmpy?
I'm trying to use the cosmpy library as a client for Cosmos network
Trying to do it this way:
from cosmpy.aerial.client import LedgerClient
from cosmpy.aerial.config import NetworkConfig
from cosmpy.aerial.wallet import LocalWallet
…

John
- 53
- 4
2
votes
1 answer
Tendermint web application - customize
I am new to blockchain development and to tendermint as well.
I already have a blockchain running locally.
Using this command starport scaffold vue I could mount a local web application. Inspecting a bit I could replicate some network requests…

fatada
- 21
- 3
2
votes
0 answers
How can I run a multinode blockchain using starport
How can I run a multinode blockchain using starport or cosmos SDK?

Sandeep Kumar
- 21
- 1
2
votes
3 answers
Starport & CosmWasm Smart contracts
I am trying to follow the instructions from this tutorial https://www.notion.so/Smart-contracts-with-CosmWasm-c6fbcd584b78437a843e738b922dc108 in order to scaffold and set up a local blockchain node with CosmWasm smart contracts.
The error: unknown…

p_zuckerman
- 41
- 6
2
votes
1 answer
Cosmos SDK account sequence mismatch
I am using the Cosmos SDK and run into an issue creating new transactions.
I get the following error when I try to create a transaction with the CLI:
account sequence mismatch, expected 3787, got 3786: incorrect account sequence
This is on the…

Tosch
- 475
- 5
- 12
2
votes
3 answers
Install startport mv: cannot move './starport' to '/usr/local/bin/starport': Permission denied
mv: cannot move './starport' to '/usr/local/bin/starport': Permission denied

Alain Sst
- 135
- 1
- 4
2
votes
0 answers
cosmos-sdk multimsg partial failure
We're building a Cosmos SDK chain but we're seeing some odd behaviour when sending a multimsg transaction, for example:
I[2021-01-31|05:46:05.271] Executed block module=state height=1657 validTxs=3 invalidTxs=1
When we…

intlman
- 21
- 1