Nivek Huang

Results 9 comments of Nivek Huang

Thanks for your help, here it's the signingInstruction.msgs. works fine on single address transactions ```sh [ { "typeUrl": "/cosmos.bank.v1beta1.MsgSend", "value": { "fromAddress": "cosmos14txtjx9yx8zjxhu6s2jpa8xsx6auz3rhq7zhus", // multi address "toAddress": "cosmos19rvl6ja9h0erq9dc2xxfdzypc739ej8k5esnhg", "amount": [...

```js const { createMultisigThresholdPubkey, pubkeyToAddress, encodeSecp256k1Pubkey } = require('@cosmjs/amino'); const { fromHex } = require('@cosmjs/encoding'); async function main() { const threshold = 2; const prefix = "cosmos"; var pubkeys =...

`import { parseURL } from 'ioredis/built/utils';` the `ioredis` seems do not support the url in the options ``` const redisOption = parseURL(this.configService.get('REDIS_URL')); this.microservice.pingCheck('redis', { transport: Transport.REDIS, options: { ...redisOption, },...

1. Run the pulsar-manager ```sh docker run --rm -it \ -p 9527:9527 -p 7750:7750 \ -e SPRING_CONFIGURATION_FILE=/pulsar-manager/pulsar-manager/application.properties \ apachepulsar/pulsar-manager:v0.3.0 ``` 2. get token, exec container `ca632f969680` ```sh docker exec -it...

`SDK Version: 0.29.5` Call the `client.forceGetQueryClient().tx.simulate` ```js Error: Query failed with (6): rpc error: code = Unknown desc = invalid from address: empty address string is not allowed: invalid address...

`docker-compose.yml` ```sh version: "3" services: #Service for nameserver rmqnamesrv: image: apache/rocketmq:5.1.3 container_name: rmqnamesrv ports: - 9876:9876 environment: JAVA_OPT_EXT: "-server -Xms512M -Xmx512M -Xmn128m" volumes: - ./data/namesrv/logs:/home/rocketmq/logs command: sh mqnamesrv restart: unless-stopped...

@chendatony31 It works fine, you can check it out again.

Found a related closed PR [Add Loki to collect container logs](https://github.com/stefanprodan/dockprom/pull/266)

@bobir01 You can take a look at my repo here: [dockotlp](https://github.com/iamnivekx/dockotlp) — it includes Loki configs as well. Hope it helps!