Questions tagged [tendermint]

75 questions
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

Error while launching tendermint node with "tendermint init"

I am launching tendermint with the command "tendermint init" followed by "tendermint node". But it is showing an error message as follows: tendermint node I[04-06|20:44:11.141] Starting multiAppConn module=proxy…
Alankar Dhuri
  • 53
  • 1
  • 8
3
votes
1 answer

Tendermint Networks, what is the parameter before @?

When I use the Tendermint Networks like this: tendermint node --p2p.persistent_peers "429fcf25974313b95673f58d77eacdd434402665@10.11.12.13:46656,96663a3dd0d7b9d17d4c8211b191af259621c693@10.11.12.14:46656" What does the part before the @ sign mean?
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
1 answer

Tendermint, GRPC and C# - Stream terminated by RST_STREAM with error code: PROTOCOL_ERROR

I need Tendermint in one of my projects but have never used it before so I am trying to implement a very simple example from here first: https://docs.tendermint.com/master/tutorials/java.html but in C# (.NET 5.0). (Download: Minimal Example) I have…
rvnlord
  • 3,487
  • 3
  • 23
  • 32
2
votes
2 answers

Unable to expose docker container port other than port 80 to host

Im am running a Tendermint HTTP RPC server at port 26657 on docker container using ubuntu image. docker run -itd --name t1 -p 26657:26657 tendermint When I perform a curl operaion inside the container, i get the JSON reponse from the RPC…
Ren
  • 81
  • 7
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
2
votes
2 answers

cosmos-sdk decimal precision for coins onchain

Am building a cosmos-sdk chain and was wondering what the official support was for coin's decimal precision on a cosmos chain either being minted via a peg or seeded via genesis as the primary staking/demon token. We would like to support 10**18 as…
utx0_
  • 1,364
  • 14
  • 24
2
votes
1 answer

Querying delegations for a validator at a specific height

Is it possible to query: the set of delegators for a given validator at a specific height? the amount each delegator has delegated to a given validator at a specific height? Something like the output of the…
2
votes
3 answers

How to use an OR condition with the Tendermint websocket /subscribe method?

What's the best way to implement an OR condition in the query of a Tendermint websocket /subscribe method? https://docs.tendermint.com/master/rpc/#/Websocket/subscribe Specifically I want to query message.sender='${address}' OR…
assafmo
  • 1,047
  • 3
  • 15
  • 32
2
votes
1 answer

How to convert exported Cosmos SDK private key to format that can be imported by Keplr or Metamask?

Keplr just added the feature to import an account using a private key (which is awesome!). This was primarily requested because a number of lunie users lost their mnemonic phrases but maintained their access to lunie itself. That meant lunie could…
okwme
  • 740
  • 1
  • 7
  • 19
2
votes
1 answer

How to use mongoDB with tendermint?

Currently the default db of tendermint is LevelDB but i want to use mongoDB and did not find any helpful documentation over it. So, can anybody help or is it even possible? It's possible, i saw, but how?
renny
  • 590
  • 4
  • 23
2
votes
1 answer

lotion.js : error in application that counts number of transactions occured so far (TypeError : app.listen is not a function)

let app = require('lotion')({ initialState: { count: 0 } }) app.use((state, tx) => { state.count++ }) app.listen(3000) On running this code (which I found on the lotion js official website), I am getting this…
KSH
  • 21
  • 3
2
votes
1 answer

Confusion about tendermint block creation interval

Tendermint seems to lack a description of block creation time... They create default config file as timeout_propose = 3000 timeout_propose_delta = 500 timeout_prevote = 1000 timeout_prevote_delta = 500 timeout_precommit =…
Thunnini
  • 103
  • 1
  • 6
2
votes
2 answers

How to insert json data in Tendermint

How to insert json data in Tendermint in order to fetch using Tx_search URL curl "localhost:26657/tx_search?query=\"account.owner='Ivan'\"&prove=true" Guys I see this example on every platform, but no-one talks about how account.owner is added Help…
Priyal
  • 31
  • 3
1
2 3 4 5