agent-rs icon indicating copy to clipboard operation
agent-rs copied to clipboard

A collection of libraries and tools for building software around the Internet Computer, in Rust.

Results 51 agent-rs issues
Sort by recently updated
recently updated
newest added

The `disable_range_check` condition should check that the call is to the Management Canister, not to an application canister offering a method with the name `provisional_canister_create_with_cycles`. Moreover, the certification validation should...

# [WIP] We need move icx-asset e2e tests to sdk repo. Implements https://dfinity.atlassian.net/browse/SDK-607 # Description The two crates have been moved to sdk repo. # Checklist: - [x] The title...

# Description Closes https://dfinity.atlassian.net/browse/SDK-626 # How Has This Been Tested? Not tested, instead I'm counting on github action tests that will run for this PR # Checklist: - [x] The...

A user asked a question on the forum https://forum.dfinity.org/t/about-iot-using-dfinity/14518 Is it currently possible to compile `ic-agent` with `no_std` flag?

In https://github.com/rust-lang/rust/pull/98839 a check for `transmute_copy`'s precondition that T is not smaller than U was added. A crater run was done, which did affect pkcs11, but I didn't think to...

Reqwest supports a WebAssembly backend, and only minimal changes are required to support it. Namely, TLS is moved to its own feature, and cfgs are added to not require WASM...

I want to use rust to implement the front end. When I use ic-agent in wasm, I can't compile it normally.

# Description Added DelegationIdentity Fixes # (issue) https://github.com/dfinity/agent-rs/issues/347 # How Has This Been Tested? I new a DelegationIdentity, and call the canister on chain, it works # Checklist: - [...

cla:agreed

In agent-js, the delegation functions is supported in identity: https://github.com/dfinity/agent-js/blob/c31a4cb1eb02ec82af60ac37dc9b9ccb149aaaea/packages/identity/src/identity/delegation.ts So, does the agent-rs library plan to support delegation functions in identity?

I added `ic-utils = "0.3.1"` to the `[dependencies]` section of my `Cargo.toml` file so I could do the following: ```rust use ic_cdk_macros::{query}; use ic_utils::interfaces::http_request::{HttpResponse, HttpRequest}; #[query] fn http_request(request: HttpRequest) ->...