You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -325,7 +325,7 @@ contract PrepareAttestationRequest is Script {
325
325
The code above differs slightly from the [starter example](https://github.com/flare-foundation/flare-foundry-starter).
326
326
But, if we remove the ellipses `...` signifying missing code, we can still run the script.
327
327
328
-
Because of the `console.log` commands it will produce JSON strings that represent valid requests; we can then pass this to the [interactive verifier](https://jq-verifier-test.flare.rocks/api-doc#) to check the response.
328
+
Because of the `console.log` commands it will produce JSON strings that represent valid requests; we can then pass this to the [interactive verifier](https://fdc-verifiers-testnet.flare.network/verifier/web2/api-doc#) to check the response.
329
329
330
330
We can run the script by calling the following commands in the console.
331
331
@@ -349,11 +349,11 @@ We place `using Surl for *;` at the start of our `PostRequest` contract, and the
349
349
(, bytes memory data) = url.post(headers, body);
350
350
```
351
351
352
-
We construct the URL by appending to the verifier address `https://jq-verifier-test.flare.rocks` the path `/JsonApi/prepareRequest`.
352
+
We construct the URL by appending to the verifier address `https://fdc-verifiers-testnet.flare.network/verifier/web2` the path `/JsonApi/prepareRequest`.
@@ -155,7 +155,7 @@ function toUtf8HexString(data: string) {
155
155
}
156
156
```
157
157
158
-
Because of the `console.log` commands it will produce JSON strings that represent valid requests; we can then pass this to the [interactive verifier](https://jq-verifier-test.flare.rocks/api-doc/) to check the response.
158
+
Because of the `console.log` commands it will produce JSON strings that represent valid requests; we can then pass this to the [interactive verifier](https://fdc-verifiers-testnet.flare.network/verifier/web2/api-doc/) to check the response.
159
159
160
160
The process of posting a request to a verifier server is identical for all attestation types.
0 commit comments