pub fn remove_allowed_calls(key_id: Address, target: Address) -> CallExpand description
Build a removeAllowedCalls(address,address) precompile call.
§Examples
ⓘ
use alloy_primitives::address;
use tempo_alloy::provider::keychain::remove_allowed_calls;
let key_id = address!("0x1111111111111111111111111111111111111111");
let token = address!("0x20c0000000000000000000000000000000000001");
// Remove all call-scope rules targeting `token`
let call = remove_allowed_calls(key_id, token);