Questions tagged [tendermint]

75 questions
1
vote
0 answers

LotionJS Peer Discovery | Address [...] does not contain ID

I tried to start a network with docker-compose. There I'll pass the ip-address and port number to LotionJS. If i start the docker containers i get an error: Address (x.x.x.x:xxx) does not contain ID. But in the LotionJS readme is noted peers: [],…
E. Dan
  • 11
  • 2
1
vote
1 answer

To create a Tendermint Private LAN BlockChain and access it

I am working on a review submission project on Tendermint in Windows. I want to submit a tamper-proof review about a organisation and hence want to create a private block-chain network with no validators and say 5 users, who submit their review via…
user7630232
  • 135
  • 1
  • 3
  • 16
1
vote
1 answer

How to create a Tendermint local network with same ip

How to set the config.toml file when establish a local Tendermint network with the same ip address. Do I need to set both 'seeds' and 'persistent_peers' for each node? node1 congfig.toml proxy_app = "tcp://127.0.0.1:46658" moniker =…
1
vote
3 answers

Is there any way to get data from blockchain of tendermint API

Is there any way to get data from blockchain of tendermint API? tendermint
0
votes
0 answers

What is the optimal configuration of a docker container which I need to run a tendermint node and connect to abci app?

I want to write a dockerfile for running a Tendermint Node that connects to my kvstore applicaiton. Actually I want to run Tendermint Node in the container and kvstore app on local system. But my kvstore app does not recognise any new connection. I…
0
votes
0 answers

the trait `QueryResponses` is not implemented for `QueryMsg`

I am trying to compile a contract the schema.rs has this error. I was trying to compile the code using cargo build --release --target wasm32-unknown-unknown. We are trying to create a mulit sig contract using cosm wasm. I was following the tutorial…
0
votes
0 answers

Cosmos State Sync Failing

I am trying to run the full node of cosmos. I'm pretty new to it, so please correct me If I am wrong. So far I'm able to somehow ran the theta-testnet but I'm getting the following error in mainnet. Jan 25 05:57:47 ip-10-0-12-160 cosmovisor[19856]:…
Waqar Ahmed
  • 1,414
  • 2
  • 15
  • 35
0
votes
1 answer

when doing ignite scaffold :> exec: "go": executable file not found in $PATH

I am on ubuntu and installed go in path as well. go version print the version echo $PATH shows both GOPATH and go exec in path. but when I run: sudo ignite scaffold chain github.com/alice/checkers I get: : exec: "go": executable file not found in…
0
votes
1 answer

How to fix the error message that says "this version of Cosmos SDK is no longer supported" when running starport scaffold commands?

Using starport version v0.17.1 darwin/amd64 -build date: 2021-07-27T13:10:21Z, the starport scaffold commands gives an error saying "this version of Cosmos SDK is no longer supported"
Emeka Onwuliri
  • 145
  • 1
  • 4
0
votes
0 answers

Making a Bigchaindb Network

Can anyone help me in making a bigchaindb network with 3 nodes.I tried and created network by following http://docs.bigchaindb.com/projects/server/en/latest/simple-deployment-template/network-setup.html this link .After running monit process on…
Naveen
  • 1
  • 1
0
votes
1 answer

How to get historical events with the Tendermint websocket via /subscribe method?

I am subscribing to the events of Tendermint (like new transactions) with the code below; query := "tm.event='Tx'" txs, err := client.Subscribe(ctx, "some-consumer", query) or from terminal as; wscat --connect ws://0.0.0.0:26657/websocket > {…
0
votes
1 answer

Tendermint: how to change RPC IP of light node

I try to implement light node. When starting it up, RPC is always 127.0.0.1:8888. Thus I cannot connect this node from anywhere else. I also tried to change the ip in the configuration file, but it didn't work. Does anyone know how to change RPC IP?
Pakorn K
  • 111
  • 1
  • 11
0
votes
1 answer

Tendermint: websocket connection doesn't work. error :'Unexpected server response: 200'

I tried to use WebSocket to listen to events from tendermint as per the code below. It didn't work. I like to know if anyone has a snippet of how to connect via WebSocket on NodeJS? const WebSocket = require('ws'); const ws = new…
Pakorn K
  • 111
  • 1
  • 11
0
votes
1 answer

Tendermint: what is a good architecture to implement application with tendermint?

What is a good architecture to implement application on Tendermint? I concerns about these 3 parts. to implement business logic like smart contact, we could implement on any language. interface between smart contact and tendermint core. 2.1 To…
Pakorn K
  • 111
  • 1
  • 11
0
votes
0 answers

How to reduce long WebSocket IO pauses?

I have a tool called Tendermint, which is written in Golang. It processes transactions and creates blocks (details are intentionally omitted). Transactions can be submitted through the WebSocket server. Blocks are configured to be created ~ every…
melekes
  • 1,880
  • 2
  • 24
  • 30