How to call IC from the rust agent package

Yeah that’s true :+1:t2:
I tried to deploy a canister on the Beta Mainnet now, but it’s not possible just yet as is described here:

Therefore, I’m deploying locally for now. Calling the query with

let response = query_builder.with_arg("everyone".to_string()).call().await;

returned this error: IDL error: missing magic bytes.

Changing the string to .with_arg("DIDLeveryone".to_string()) as you suggested here:

got me to the next error: IDL error: too many types.
I’m not sure what it means though. :sweat_smile:
Is there maybe some other convention from candid that needs to be considered?