Rano | Ranadeep

Results 100 comments of Rano | Ranadeep

I had this problem on ArchLinux, because the current latest gcc version is 15. But I noticed that `[email protected]` depends on `gcc14`. So I compiled it as ``` CXX=g++-14 cargo...

Thanks for the report! Currently, `ibc-rs` is vulnerable to permissionless calls to `send_packet_validate`. This requires port management to fix this completely. We need to include port capability check in `send_packet_validate`...

Adding more context. We will probably need #465 and make sure, `*_packet_execute` cannot be called without `*_packet_validate` called before. We will most likely need a way to create `ValidatedContext` after...

here it is: [sha256_proof.json](https://github.com/user-attachments/files/20100432/sha256_proof.json)

ah. I may have messed up something somewhere before. you're right. 🙏🏼 thanks for pointing me to the right direction. 🙌🏼 currently, I am using this [sha256_proof.json](https://github.com/user-attachments/files/20102354/sha256_proof.json) and I am...

Hey @seanchen1991, we are waiting to be included in the ICF security program - which is due to happen sometime this month.

I just realized, this works fine on my personal Arch Linux computer. But fails on docker images. I tried: 1. `alpine`, `debian`, `ubuntu` tags for `denoland/deno` image. 2. `archlinux` image...

It looks like it might be something with `root` user. The following works fine: ```console $ docker run --user=deno --workdir=/home/deno denoland/deno:alpine eval ' import * as tar from "npm:[email protected]"; import...

It should be fixed now. This works on the latest: ```console $ docker run --pull=always denoland/deno:alpine eval ' import * as tar from "npm:[email protected]"; import { pipeline } from "node:stream/promises";...