Skip to content
Cosmopediaby Unity Nodes
DiscussionsCosmos-SDKSend transactionForum ↗

Send transaction

Cosmos-SDK7 posts2,127 views1 likesLast activity Sep 2019
VI
Viktor-SPOP
Jul 2019

Hi there!

I can send an ATOM via the CLI to the COSMOS-SDK. Is there any other way to send an ATOM? RPC or REST methods?

KA
katernoir
Jul 2019

Hey Viktor,

you can inject signed transaction of any kind (Transfer, Delegate, Unbond etc. ) to the network via the Cosmos Lite Client. Have a look here. I guess post_txs is what you are looking for.

Best,

Florian from Staking Facilities

VI
Viktor-SP
Jul 2019

Hi Katernoir, thanks! By Cosmos Lite Client I can send ONLY signed transaction… But sign Tx are posible only in CLI…

KA
katernoir
Jul 2019

That’s not true, transactions can be signed in various ways (e.g. using the cosmos-ledger library or writing your own signing solution)
What are you trying to achieve? Maybe if we know what you’re trying to do, we can point you in the right direction

VI
Viktor-SP
Jul 2019 1

My goal is to install a cosmos-hub fullnode in the docker and then send commands to the docker to check the transaction history and send transactions. I tried to sign transactions through the WingsDao, but “/post_txs” is returned with an error. Maybe you can tell me an example of how a transaction should look like for signing and in what format to send it to “/post_txs”?

CO
coolbobo
Sep 2019

do you solve this problem?
i have the same issue, how do you solve this problem?
root@stage-usdt-node:/home/jim# curl ‘localhost:26657/broadcast_tx_commit?tx=67846a18d9c1d59b2599d2ce733ed4a0e5e62e748b2e6548a94f4129a1ec51411fa166f1b5ea063f204b44609baf3bbda10693937e2752353b1e26de164e5eca’
{
“jsonrpc”: “2.0”,
“id”: “”,
“error”: {
“code”: -32602,
“message”: “Invalid params”,
“data”: “Error converting http params to arguments: invalid character ‘a’ after top-level value”
}
}

VI
Viktor-SP
Sep 2019

Hi coolbobo!
To solve this problem I use https://github.com/cosmostation/cosmosjs for create tx, and “fetch” to send

← Back to Discussions