diff --git a/docs/guides/universal-profile/read-profile-data.md b/docs/guides/universal-profile/read-profile-data.md index c278ed4f87..0a2db4d720 100644 --- a/docs/guides/universal-profile/read-profile-data.md +++ b/docs/guides/universal-profile/read-profile-data.md @@ -44,7 +44,7 @@ To inspect the address and check if it has an ERC725 contract, we can call its i - [LSP3 - Universal Profile Metadata](../../standards/universal-profile/lsp3-universal-profile-metadata) describes the data in the Universal Profile contract storage, and which keys to use to retrieve it. We can import the schema directly from the [erc725.js](../../tools/erc725js/schemas#standard-lsp-schemas) library. - - `SupportedStandards` shows the interface using a Metadata Standard with a key. In our case we use `SupportedStandards:LSP3UniversalProfile` from to check if the contract is an Universal Profile. + - `SupportedStandards` shows the interface using a Metadata Standard with a key. In our case we use `SupportedStandards:LSP3UniversalProfile` from to check if the contract is a Universal Profile. - `LSP3Profile` shows the data of the Universal Profile. - `LSP12IssuedAssets[]` shows assets the Universal Profile issued. - `LSP5ReceivedAssets[]` shows assets the Universal Profile received. @@ -249,7 +249,7 @@ async function fetchProfile(address) { const profile = new ERC725(erc725schema, address, provider, config); return await profile.fetchData(); } catch (error) { - return console.log('This is not an ERC725 Contract'); + return console.log('This is not an ERC725 Contract'); } } @@ -265,7 +265,7 @@ async function fetchProfileData(address) { const profile = new ERC725(erc725schema, address, provider, config); return await profile.fetchData('LSP3Profile'); } catch (error) { - return console.log('This is not an ERC725 Contract'); + return console.log('This is not an ERC725 Contract'); } } @@ -278,5 +278,4 @@ fetchProfile(SAMPLE_PROFILE_ADDRESS).then((profileData) => fetchProfileData(SAMPLE_PROFILE_ADDRESS).then((profileData) => console.log(JSON.stringify(profileData, undefined, 2)), ); - ``` diff --git a/docs/guides/vault/interact-with-contracts.md b/docs/guides/vault/interact-with-contracts.md index 841818175c..1449e05e00 100644 --- a/docs/guides/vault/interact-with-contracts.md +++ b/docs/guides/vault/interact-with-contracts.md @@ -124,7 +124,7 @@ const myEOA = new ethers.Wallet(privateKey).connect(provider); Further we will create instances for our contracts -- Create an Universal Profile contract instance from `universalProfileAddress`. +- Create a Universal Profile contract instance from `universalProfileAddress`. - Create a Target Contract instance from the `targetContractAddress`.