Interface: IExecConfigArgs
April 29, 2026 ยท View on GitHub
iexec / IExecConfigArgs
Interface: IExecConfigArgs
Properties
ethProvider
ethProvider:
string|number|AbstractSigner<Provider|null> |BrowserProvider|Eip1193Provider|AbstractProvider
A web3 Eth provider, a network name, a chain id or an ethers provider
read-only provider examples:
"arbitrum-sepolia-testnet"or421614or"421614"for arbitrum sepolia testnet provider"arbitrum-mainnet"or42161or"42161"for arbitrum mainnet provider"http://localhost:8545"for local chainnew ethers.JsonRpcProvider("https://<rpc-provider>")ethers provider connected to your RPC provider
signer provider examples:
window.ethereumfor browser injected wallet providerutils.getSignerFromPrivateKey('arbitrum-sepolia-testnet', PRIVATE_KEY)signer connected to arbitrum sepolia testnet using a private keynew ethers.Wallet(PRIVATE_KEY, new ethers.JsonRpcProvider("https://<rpc-provider>"))ethers wallet connected to a specific network