Skip to content

Commit 2b72274

Browse files
committed
fix(test): add warning in the concerned scripts
1 parent 80e39e2 commit 2b72274

File tree

7 files changed

+7
-0
lines changed

7 files changed

+7
-0
lines changed

examples/developer-hub-go/flare/fetch_anchor_feeds.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// THIS IS EXAMPLE CODE. DO NOT USE THIS CODE IN PRODUCTION.
12
package flare
23

34
import (

examples/developer-hub-go/flare/fetch_and_verify_anchor_onchain.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// THIS IS EXAMPLE CODE. DO NOT USE THIS CODE IN PRODUCTION.
12
package flare
23

34
import (

examples/developer-hub-javascript/fetch_anchor_feeds.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// THIS IS EXAMPLE CODE. DO NOT USE THIS CODE IN PRODUCTION.
12
const BASE_URL = "https://flr-data-availability.flare.network/";
23
const API_KEY = "<your-api-key>";
34
// Feed IDs, see https://dev.flare.network/ftso/scaling/anchor-feeds for full list

examples/developer-hub-python/fetch_anchor_feeds.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# THIS IS EXAMPLE CODE. DO NOT USE THIS CODE IN PRODUCTION.
12
import asyncio
23

34
import aiohttp

examples/developer-hub-python/fetch_and_verify_anchor_onchain.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# THIS IS EXAMPLE CODE. DO NOT USE THIS CODE IN PRODUCTION.
12
import asyncio
23

34
from web3 import AsyncHTTPProvider, AsyncWeb3

examples/developer-hub-rust/src/bin/fetch_anchor_feeds.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// THIS IS EXAMPLE CODE. DO NOT USE THIS CODE IN PRODUCTION.
12
#![allow(dead_code)]
23
#![allow(unused)]
34

examples/developer-hub-rust/src/bin/fetch_and_verify_anchor_onchain.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// THIS IS EXAMPLE CODE. DO NOT USE THIS CODE IN PRODUCTION.
12
use crate::FtsoV2AnchorFeedConsumer::{FeedData, FeedDataWithProof};
23
use alloy::{
34
network::EthereumWallet,

0 commit comments

Comments
 (0)