Created
April 18, 2022 06:27
-
-
Save ijonas/b3adeae8129837886c8efe272a304067 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type = "directrequest" | |
schemaVersion = 1 | |
name = "Get > Uint256 0.05LINK" | |
minContractPaymentLinkJuels = 50000000000000000 | |
maxTaskDuration = "0s" | |
contractAddress = "CONTRACT ADDRESS" | |
minIncomingConfirmations = 0 | |
observationSource = """ | |
decode_log [type="ethabidecodelog" | |
abi="OracleRequest(bytes32 indexed specId, address requester, bytes32 requestId, uint256 payment, address callbackAddr, bytes4 callbackFunctionId, uint256 cancelExpiration, uint256 dataVersion, bytes data)" | |
data="$(jobRun.logData)" | |
topics="$(jobRun.logTopics)"] | |
decode_cbor [type="cborparse" data="$(decode_log.data)"] | |
fetch [type="http" method=GET url="$(decode_cbor.get)"] | |
parse [type="jsonparse" path="$(decode_cbor.path)" data="$(fetch)"] | |
multiply [type="multiply" input="$(parse)" times=100] | |
encode_data [type="ethabiencode" abi="(uint256 value)" data="{ \\"value\\": $(multiply) }"] | |
encode_tx [type="ethabiencode" | |
abi="fulfillOracleRequest(bytes32 requestId, uint256 payment, address callbackAddress, bytes4 callbackFunctionId, uint256 expiration, bytes32 data)" | |
data="{\\"requestId\\": $(decode_log.requestId), \\"payment\\": $(decode_log.payment), \\"callbackAddress\\": $(decode_log.callbackAddr), \\"callbackFunctionId\\": $(decode_log.callbackFunctionId), \\"expiration\\": $(decode_log.cancelExpiration), \\"data\\": $(encode_data)}" | |
] | |
submit_tx [type="ethtx" to="CONTRACT ADDRESS" data="$(encode_tx)"] | |
decode_log -> decode_cbor -> fetch -> parse -> multiply -> encode_data -> encode_tx -> submit_tx | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment