Skip to content

Commit b38431f

Browse files
authored
Merge pull request #312 from polywrap/pileks/fix/quick-start-beginner-feedback
fixed quick-start based on feedback from junior-ish developers
2 parents 671835f + 0276b26 commit b38431f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/docs/quick-start.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ const usdcResult = await client.invoke({
144144
uri: "ens/uniswap.wraps.eth:v3",
145145
method: "fetchToken",
146146
args: {
147-
address: "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
147+
address: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
148148
chainId: "MAINNET",
149149
},
150150
});
@@ -208,7 +208,9 @@ if (!resolutionResult.ok) {
208208
console.log(resolutionResult.value);
209209
```
210210

211-
Now, if we look at the `uri` property of `resolutionResult.value`, we will see a WRAP URI
211+
Now, if we look at the `uri` property of `resolutionResult.value`, we will see a WRAP URI.
212+
We can also see a `manifest` property which is set to `null`, which you can safely ignore for now.
213+
This is because our ENS Text Record Resolver Wrap only resolves from an ENS Text Record to another URI.
212214

213215
Once we have the IPFS hash, we will use the IPFS Wrap to fetch the contents of the Wrap's manifest file (`wrap.info`), and print them out.
214216

0 commit comments

Comments
 (0)