Precompiles
A precompile refers to a pre-existing piece of code or a smart contract that is already deployed on the Filecoin network for use by developers.
Resolve Address
(bool success, bytes memory actor_id_bytes) = address(0xfe00000000000000000000000000000000000001).staticcall(fil_address_bytes);
require(success, "invalid address");
require(actor_id_bytes.length == 32, "actor not found");
uint64 actor_id = abi.decode(actor_id_bytes);Lookup Delegated Address
Call Actor By Address
Input: ABI Encoded
Output: ABI Encoded
Call Actor By ID
Last updated