Skip to content

Commit 7b9c7f7

Browse files
authored
Merge branch 'main' into melcher/fix-functions-import-mainnet
2 parents 9712399 + 20e37e0 commit 7b9c7f7

File tree

9 files changed

+30
-7
lines changed

9 files changed

+30
-7
lines changed

.github/scripts/data/detect-data.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ node <<EOF
155155
// === data-streams networks
156156
const STREAMS_NETWORKS = [
157157
"apechain", "arbitrum", "avalanche", "base", "berachain", "blast",
158-
"bnb-chain", "bob", "ethereum", "hashkey", "hyperliquid",
158+
"bnb-chain", "bob", "ethereum", "gnosis-chain", "hashkey", "hyperliquid",
159159
"ink", "lens", "linea", "mantle", "opbnb", "optimism", "ronin",
160160
"scroll", "shibarium", "soneium", "sonic",
161161
"solana", "taiko", "unichain", "worldchain", "zksync"

public/changelog.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,14 @@
246246
}
247247
},
248248
"data": [
249+
{
250+
"category": "integration",
251+
"date": "2025-04-17",
252+
"description": "Chainlink Data Streams is available on Gnosis. The verifier proxy addresses and stream IDs are available on the [Stream Addresses](https://docs.chain.link/data-streams/crypto-streams) page.",
253+
"relatedNetworks": ["gnosis-chain"],
254+
"title": "Data Streams on Gnosis",
255+
"topic": "Data Streams"
256+
},
249257
{
250258
"category": "integration",
251259
"date": "2025-04-13",

src/components/Header/Nav/ProductNavigation/Desktop/megaMenu.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
color: var(--gray-900);
125125
}
126126

127-
/* TODO: change with a var when avaialble in the chainlink repo */
127+
/* TODO: change with a var when available in the chainlink repo */
128128
.bottomLink a:hover {
129129
color: #0847f7;
130130
}

src/components/Header/Nav/ProductNavigation/Desktop/productNavigation.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
content: "";
3636
width: var(--space-4x);
3737
height: var(--space-4x);
38-
/* TODO: change with a var when avaialble in the chainlink repo */
38+
/* TODO: change with a var when available in the chainlink repo */
3939
background-color: #0847f7;
4040
top: -35px;
4141
left: 50%;

src/components/QuickLinks/data/productChainLinks.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ export const productChainLinks: ProductChainLinks = {
121121
bob: "/data-streams/crypto-streams",
122122
botanix: "/data-streams/crypto-streams",
123123
ethereum: "/data-streams/crypto-streams",
124+
"gnosis-chain": "/data-streams/crypto-streams",
124125
hashkey: "/data-streams/crypto-streams",
125126
hyperliquid: "/data-streams/crypto-streams",
126127
ink: "/data-streams/crypto-streams",

src/features/feeds/data/StreamsNetworksData.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,20 @@ export const StreamsNetworksData: NetworkData[] = [
158158
explorerUrl: "https://sepolia.etherscan.io/address/%s",
159159
},
160160
},
161+
{
162+
network: "Gnosis",
163+
logoUrl: "/assets/chains/gnosis-chain.svg",
164+
mainnet: {
165+
label: "Gnosis Mainnet",
166+
verifierProxy: "0x60fAa7faC949aF392DFc858F5d97E3EEfa07E9EB",
167+
explorerUrl: "https://gnosis.blockscout.com/address/%s",
168+
},
169+
testnet: {
170+
label: "Gnosis Chiado",
171+
verifierProxy: "0x60fAa7faC949aF392DFc858F5d97E3EEfa07E9EB",
172+
explorerUrl: "https://gnosis-chiado.blockscout.com/address/%s",
173+
},
174+
},
161175
{
162176
network: "HashKey Chain",
163177
logoUrl: "/assets/chains/hashkey.svg",

src/scripts/chainlink-automation/networks-config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const getChainlinkAutomationConfigs = async () => {
7979
configs[key] = config
8080
} catch (error) {
8181
console.error(error)
82-
console.error(`Error while retriving chainlink automation config for ${key}`)
82+
console.error(`Error while retrieving chainlink automation config for ${key}`)
8383
}
8484
}
8585
}

src/scripts/helper/find-nonchecksummed-addresses.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const getCorrectAddress = (value: string) => {
1818
} catch (error) {
1919
if (error.reason && (error.reason as string).includes("bad address checksum")) {
2020
console.error(error.reason)
21-
console.error(`Search manually for ${error.value} and replace its occurences with a valid checksum`)
21+
console.error(`Search manually for ${error.value} and replace its occurrences with a valid checksum`)
2222
}
2323

2424
return undefined

src/scripts/link-to-wallet.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ const addAssetToWallet = async (ethereum: MetaMaskInpageProvider, parameters: Ad
135135
/**
136136
* Call this function to make the wallet switch to the desired chain
137137
* @param chainId designed chain in HexString
138-
* @param ethereum ethereum inpage provider (e.g.: provider loaded by Metamask)
138+
* @param ethereum inpage provider (e.g.: provider loaded by Metamask)
139139
*/
140140
const switchToChain = async (chainId: string, ethereum: MetaMaskInpageProvider) => {
141141
if (!isChainIdFormatValid(chainId)) {
@@ -172,7 +172,7 @@ const switchToChain = async (chainId: string, ethereum: MetaMaskInpageProvider)
172172
/**
173173
* Call this function to add a new chain to the wallet. Should only be called if the chain doesn't exist already in the wallet
174174
* @param chainId designed chain in HexString
175-
* @param ethereum ethereum in page provider (e.g.: provider loaded by Metamask)
175+
* @param ethereum in page provider (e.g.: provider loaded by Metamask)
176176
*/
177177
const addChainToWallet = async (chainId: string, ethereum: MetaMaskInpageProvider) => {
178178
if (!isChainIdFormatValid(chainId)) {

0 commit comments

Comments
 (0)