Providers
The provider by which @erc725/erc725.js
will request blockchain data is set on the instantiation of the class through the configuration object.
The following provider types are supported:
RPC URL
An RPC URL can be passed when instantiating the ERC725
class.
import ERC725 from '@erc725/erc725.js';
const RPC_URL = 'https://rpc.testnet.lukso.network';
const erc725 = new ERC725([], '0x...', RPC_URL);