diff --git a/docs/classes/ERC725.md b/docs/classes/ERC725.md index 8883f2b2..bed34ec3 100644 --- a/docs/classes/ERC725.md +++ b/docs/classes/ERC725.md @@ -81,6 +81,7 @@ myErc725.checkPermissions(requiredPermissions, grantedPermissions); ``` --- + ## decodeData ```js @@ -1459,7 +1460,7 @@ myErc725.supportsInterface('0xfd4d5c50'); ERC725.supportsInterface('0xfd4d5c50', { address: '0xe408BDDbBAB1985006A2c481700DD473F932e5cB', - rpcUrl: 'https://rpc.l16.lukso.network', + rpcUrl: 'https://rpc.testnet.lukso.network', }); // false ``` @@ -1469,8 +1470,8 @@ myErc725.supportsInterface('LSP0ERC725Account'); // false ERC725.supportsInterface('LSP0ERC725Account', { - address: '0xe408BDDbBAB1985006A2c481700DD473F932e5cB', - rpcUrl: 'https://rpc.l16.lukso.network', + address: '0x0Dc07C77985fE31996Ed612F568eb441afe5768D', + rpcUrl: 'https://rpc.testnet.lukso.network', }); // true ``` diff --git a/docs/getting-started.md b/docs/getting-started.md index 82261470..cbe47702 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -57,8 +57,8 @@ const schemas = [ }, ]; -const address = '0x0c03fba782b07bcf810deb3b7f0595024a444f4e'; -const RPC_URL = 'https://rpc.l16.lukso.network'; +const address = '0x0Dc07C77985fE31996Ed612F568eb441afe5768D'; +const RPC_URL = 'https://rpc.testnet.lukso.network'; const config = { ipfsGateway: 'https://YOUR-IPFS-GATEWAY/ipfs/', }; @@ -79,10 +79,7 @@ await erc725.getData('SupportedStandards:LSP3Profile'); } */ -await erc725.getData([ - 'LSP3Profile', - 'SupportedStandards:LSP3Profile', -]); +await erc725.getData(['LSP3Profile', 'SupportedStandards:LSP3Profile']); /** { LSP3Profile: { diff --git a/docs/providers.md b/docs/providers.md index b9b29d1d..ec0b69e2 100644 --- a/docs/providers.md +++ b/docs/providers.md @@ -15,7 +15,7 @@ An RPC URL can be passed when instantiating the `ERC725` class. ```javascript import ERC725 from '@erc725/erc725.js'; -const RPC_URL = 'https://rpc.l16.lukso.network'; +const RPC_URL = 'https://rpc.testnet.lukso.network'; const erc725 = new ERC725([], '0x...', RPC_URL); ``` @@ -47,7 +47,7 @@ import Web3 from 'web3'; import ERC725 from '@erc725/erc725.js'; const web3provider = new Web3( - new Web3.providers.HttpProvider('https://rpc.l16.lukso.network'), + new Web3.providers.HttpProvider('https://rpc.testnet.lukso.network'), ); const erc725 = new ERC725([], '0x...', web3provider);