Skip to content

Commit 8058ec0

Browse files
committed
more minor fixes and linking
1 parent 5816b2e commit 8058ec0

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/content/quickstarts/transmitter.mdx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Before you start this tutorial, ensure you have the following prerequisites:
8585
## Steps to Implement
8686

8787
<Accordion title="Deploy Consumer Contract" number={1}>
88-
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.
8989

9090
1. Install [Foundry][FOUNDRY_INSTALL], or update it to the latest version by running `foundryup` in your terminal.
9191

@@ -114,7 +114,7 @@ First, deploy a `DataStreamsFeed.sol` contract. This contract receives and store
114114
115115
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).
116116
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).
118118
119119
1. Load the environment variables into your current shell session:
120120
@@ -124,7 +124,9 @@ First, deploy a `DataStreamsFeed.sol` contract. This contract receives and store
124124
125125
1. Configure `script/DeployDataStreamsFeed.s.sol`.
126126
127-
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:
128130
129131
| Parameter | Value | Description |
130132
| :--------------------- | :------------------------------------------------------------------- | :----------------------------------------- |
@@ -263,7 +265,7 @@ With a consumer contract on-chain, you can now set up the Transmitter service to
263265
targetContracts:
264266
# This configuration sends ETH/USD data to a contract on Fuji
265267
- feedId: "0x000359843a543ee2fe414dc14c7e7920ef10f4372990b79d6361cdc0dd1ba782"
266-
address: "0xYourDataStreamsFeedContractOnFuji" # <-- UPDATE WITH YOUR CONTRACT ADDRESS
268+
address: "0xYourDataStreamsFeedContractOnFuji" # <-- TODO: Update with your deployed contract address
267269
# The name of the function to call on your smart contract
268270
functionName: "verifyAndUpdateReport"
269271
# The arguments the Transmitter should prepare and send to the function

0 commit comments

Comments
 (0)