|
1 | 1 | # ================================================================= |
2 | | -# │ Chainlink Data Streams Transmitter Example │ |
| 2 | +# │ Push Engine Example │ |
3 | 3 | # ================================================================= |
4 | 4 | # |
5 | 5 | # Copy this file to 'config.yml' and fill in your specific details. |
|
9 | 9 | # ----------------------------------------------------------------- |
10 | 10 | # ✅ ON-CHAIN VERIFICATION CONFIG (LINK-FUNDED FEED) ✅ |
11 | 11 | # ----------------------------------------------------------------- |
12 | | -# • The transmitter sends the raw report and fee-token parameter to |
| 12 | +# • The push engine sends the raw report and fee-token parameter to |
13 | 13 | # `verifyAndUpdateReport(bytes unverifiedReportData, bytes parameterPayload)`. |
14 | 14 | # • No REPORT_VERIFIER role assignment is required; the function is public. |
15 | 15 | # • The DataStreamsFeed contract MUST hold enough LINK (fee token) so the |
@@ -78,9 +78,9 @@ targetChains: |
78 | 78 | address: '0xYourDataStreamsFeedContractOnFuji' # <-- CHANGED |
79 | 79 | # The name of the function to call on your smart contract |
80 | 80 | functionName: 'verifyAndUpdateReport' |
81 | | - # The arguments the Transmitter should prepare and send to the function |
| 81 | + # The arguments the push engine should prepare and send to the function |
82 | 82 | # • rawReport = the unverified payload from the Data Streams websocket |
83 | | - # • parameterPayload = abi.encode(address feeToken) – produced automatically by the transmitter |
| 83 | + # • parameterPayload = abi.encode(address feeToken) – produced automatically by the push engine |
84 | 84 | functionArgs: ['rawReport', 'parameterPayload'] |
85 | 85 | # The ABI for the target function, required to encode the transaction |
86 | 86 | abi: |
|
0 commit comments