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
First, deploy a `DataStreamsFeed.sol` contract. This contract receives and stores the data relayed by the Transmitter. This guide uses [Foundry](https://book.getfoundry.sh/) to build and deploy the contract from a pre-configured repository.
88
+
First, deploy a [`DataStreamsFeed.sol` contract](https://github.com/woogieboogie-jl/chainlink-transmitter-contract/blob/main/src/feed/DataStreamsFeed.sol), which receives, verifies, and stores the data relayed by the Transmitter.
89
89
90
90
1. Install [Foundry][FOUNDRY_INSTALL], or update it to the latest version by running `foundryup` in your terminal.
91
91
@@ -114,7 +114,7 @@ First, deploy a `DataStreamsFeed.sol` contract. This contract receives and store
114
114
115
115
Replace `0xYOUR_PRIVATE_KEY` with your actual wallet private key and `<https://...>` with the [RPC URL for the Avalanche Fuji network](https://build.avax.network/docs/quick-start/networks/fuji-testnet#add-avalanche-c-chain-testnet-to-wallet).
116
116
117
-
The `LINK_TOKEN` address for Avalanche Fuji is `0x5947BB275c521040051D82396192181b413227A3`, but you can refer to the [Chainlink documentation for`LINK` token addresses on other networks](/resources/link-token-contracts).
117
+
The `LINK_TOKEN` address for Avalanche Fuji is `0x5947BB275c521040051D82396192181b413227A3`. Refer to the [Chainlink documentation for`LINK` token addresses on other networks](/resources/link-token-contracts).
118
118
119
119
1. Load the environment variables into your current shell session:
120
120
@@ -124,7 +124,9 @@ First, deploy a `DataStreamsFeed.sol` contract. This contract receives and store
This script deploys the `DataStreamsFeed` contract, which is the consumer contract that will receive data from the Transmitter. You need to set the constructor arguments for the contract.
127
+
This script deploys the `DataStreamsFeed` contract, which will receive data from the Transmitter.
128
+
129
+
You must set the constructor arguments for the contract:
0 commit comments