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
- API available for [DOGE](https://fdc-verifiers-testnet.flare.network/verifier/doge/api-doc#/AddressValidity/BTCAddressValidityVerifierController_prepareRequest) and [XRP](https://fdc-verifiers-testnet.flare.network/verifier/xrp/api-doc#/AddressValidity/BTCAddressValidityVerifierController_prepareRequest).
80
80
81
81
### Example Values
@@ -258,7 +258,7 @@ If you are accessing a different chain, replace the `baseSourceName` with an app
258
258
The code above differs slightly from the [starter example](https://github.com/flare-foundation/flare-foundry-starter).
259
259
But, if we remove the ellipses `...` signifying missing code, we can still run the script.
260
260
261
-
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/btc/api-doc#/AddressValidity/BTCAddressValidityVerifierController_prepareRequest) to check what the response is.
261
+
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/btc_testnet4/api-doc#/AddressValidity/BTCAddressValidityVerifierController_prepareRequest) to check what the response is.
262
262
263
263
We can run the script by calling the following commands in the console.
The prerequisite for this is that the `.env` file is not missing the `PRIVATE KEY` and `COSTON2_RPC_URL` values.
@@ -283,7 +283,7 @@ We place `using Surl for *;` at the start of our `PostRequest` contract, and the
283
283
(, bytes memory data) = url.post(headers, body);
284
284
```
285
285
286
-
We construct the URL by appending to the verifier address `https://fdc-verifiers-testnet.flare.network/` the path `verifier/btc/AddressValidity/prepareRequest`.
286
+
We construct the URL by appending to the verifier address `https://fdc-verifiers-testnet.flare.network/` the path `verifier/btc_testnet4/AddressValidity/prepareRequest`.
Copy file name to clipboardExpand all lines: docs/fdc/guides/foundry/evm-transaction.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -279,7 +279,7 @@ If you are accessing a different chain, replace the `baseSourceName` with an app
279
279
The code above differs slightly from the [starter example](https://github.com/flare-foundation/flare-foundry-starter).
280
280
But, if we remove the ellipses `...` signifying missing code, we can still run the script.
281
281
282
-
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/btc/api-doc#/EVMTransaction/BTCEVMTransactionVerifierController_prepareRequest) to check what the response will be.
282
+
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/eth/EVMTransaction/prepareRequest) to check what the response will be.
283
283
284
284
We can run the script by calling the following commands in the console.
The prerequisite for this is that the `.env` file is not missing the `PRIVATE KEY` and `COSTON2_RPC_URL` values.
@@ -304,7 +304,7 @@ We place `using Surl for *;` at the start of our `PostRequest` contract, and the
304
304
(, bytes memory data) = url.post(headers, body);
305
305
```
306
306
307
-
We construct the URL by appending to the verifier address `https://fdc-verifiers-testnet.flare.network/` the path `verifier/btc/EVMTransaction/prepareRequest`.
307
+
We construct the URL by appending to the verifier address `https://fdc-verifiers-testnet.flare.network/` the path `/verifier/eth/EVMTransaction/prepareRequest`.
0 commit comments