127 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
19
views
MsgDelegate via Keplr Wallet
I'm trying to stake tokens to a validator via a frontend I build using our custom cosmos chain that we are building by signing MsgDelegate from the standard Cosmos staking module, but I keep getting ...
0
votes
0
answers
47
views
Virtualbox hosted COSMOS Does Not Get IP with mobile hotspot
I'am hosting a NAS OS with cosmos and oracle virtualbox with vs 2022 C#. But unfortunately somehow it doesn't get IP address with mobile hotspot meanwhile it works through wifi from home. In the ...
user avatar
user21041924
0
votes
1
answer
180
views
Incorrect Injective address from mnemonic using DirectSecp256k1HdWallet with custom HD path
I'm trying to derive a bech32 address on the Injective chain using a mnemonic and the Ethereum HD path (m/44'/60'/0'/0/0). Here's the code I'm using:
import { DirectSecp256k1HdWallet } from '@cosmjs/...
2
votes
0
answers
70
views
How do I fix `System.Exception` error in COSMOS C#?
I was making a rmdir command for my COSMOS C# operating system, and all of a sudden I am getting a Exception: System.Exception error in Visual Studio 2022. It says its on line one of IL2CPU, so I'm ...
0
votes
1
answer
178
views
How to solve the Exception: System.Exception error on build with COSMOS on VS2022?
I was making an OS in COSMOS after i heard about it. I have some knowledge on C#. But somehow, there is a build error in the switch(cmd) part.
The switch part:
switch (cmd)
{
...
0
votes
1
answer
144
views
Cosmos-kit Osmosis custom RPC endpoints - Cosmos ecosystem
I got an assignment in the cosmos ecosystem. It's my first time building on Cosmos network, specifically Osmosis and I am having a problem connecting to my custom RCP endpoints, it always falls back ...
-1
votes
1
answer
29
views
Is there any method or mode provided by Tendermint-core to remove the heavily used write-ahead log mechanism?
The Tendermint-core uses a write-ahead log (WAL) mechanism to guarantee consensus safety after crashed validators recover. But this mechanism requires validators to write any received or generated ...
0
votes
1
answer
115
views
How can I expand Keplr wallet extension?
I use this Keplr wallet for developing.
Whenever touch other position of the screen, this disappears, so it's very troublesome.
How can I expand Keplr wallet extension?
0
votes
1
answer
187
views
cosmos openc3 delete default demo example
using https://github.com/OpenC3/cosmos I'm trying to build a github actions to test some features using cosmos openc3 as a frontend.
It has as default a demo example that is running in background with ...
1
vote
0
answers
57
views
MWAA(airflow) tasks on abnormally on EKS(k8s)
Environments:
MWAA(airflow) 2.8.1
requirements.txt
astronomer-cosmos==1.3.2
apache-airflow-providers-cncf-kubernetes
EKS(k8s) 1.27
DAG code below:
from pathlib import Path
from airflow import DAG
...
0
votes
2
answers
368
views
Run Evmos (Cosmos-SDK based) node
What I did wrong ?
I am trying to run node with help of this useless docs
https://docs.evmos.org/protocol/evmos-cli/single-node
evmosd init testing --chain-id=evmos_9000-4
evmosd keys add my_validator
...
0
votes
2
answers
652
views
Exception of type 'System.Exception' was thrown. Error in Cosmos Project
I am trying to work on Operating System in C# through Cosmos. I am using Visual Studio 2022.
The problem is every time I press create project button after selecting the COSMOS Kernal project template ...
1
vote
0
answers
225
views
How to run the CosmosOS File System on real hardware
When trying to run my OS (made on CosmosOS) ISO on VMware (On Windows) and Virtualbox (on Mac), it shows the following error:
How can I fix this? I used the following commands to initialize the file ...
1
vote
2
answers
2k
views
How to use Polly for retry mechanism on specific exception?
I am trying to implement retry mechanism on DbUpdateConcurrencyException (link). There are some ways to that, like add counter or have logic in catch block to retry (this link shows that).
Here, I am ...
0
votes
2
answers
302
views
CW20 vs. ERC20 For Interchain Transactions
When sending cosmos tokens to evm chains. How are Cosmos specific tokens for example CW20s (not the same as an ERC20, but similar) handled? It can't exist on the EVM chain, so if the CW20 is on your ...