Can I modify the returns statement to include a bool [] memory instead of just bool ?
Change checkUpkeep function returns arguments
59 Views Asked by Ibra At
1
There are 1 best solutions below
Related Questions in CHAINLINK
- How do I call a function from another contract using Chainlink Automation
- How to use chainlink automation to call a function with onlyAdmin modifier?
- Error: Error fetching information for subscription ID, Chainlink Functions
- Error encountered when attempting to send request to DON gateway URL
- how to send an abi encoded message with Chainlink CCIP?
- Failed to fetch error in chainlink functions registration
- Two quotation marks in sum task
- Where can I find the address of the CommitStore contracts?
- Is there anyway to debug a Chainlink Functions request that returns 'Fulfilled with error'?
- How can I use the chainlink VRF to randomly get 4 numbers by calling the dealCards function?
- How to use raw Buffer in Chainlink Functions?
- Cant see the (Chainlink)requested data in my smartcontract
- How to paste ETH price feeds as rate in my crowdsale.sol
- Chainlink Functions Error in SendRequest to an API
- NFT Metadata URL not being sent from source chain to destination chain using Chainlink's CCIP
Related Questions in CHAINLINK-KEEPERS
- How do I call a function from another contract using Chainlink Automation
- NFT Metadata URL not being sent from source chain to destination chain using Chainlink's CCIP
- How to create a time-based upkeep directly from my contract rather than use the GUI?
- How to Implement off chain Keepers for Decentralize Perpetual Exchanges like GMX.io?
- How to test blokchain lottery using Chainlink VRFv2 and Chainlink Keeper?
- Whenever i write some code in Chianlink VRF fulfillRandomWords function it does not get updated
- What is the use of Check gas limit in Chainlink Keepers?
- How can I automate Smart Contract code execution?
- When using chainlink automation, can another person call my performUpKeep function of smart contract?
- PeformUpkeep does not execute when checkUpkeep returns true using Chainlink automation
- Can chainlink function read local data?
- Chainlink VRF v1 Error Message: Below Paid Agreement
- How do I configure the perform upkeep to know which function to call in chainlink keepers?
- How to automate a ChainLink Job to call a smart-contract function that requires the caller to be a given admin address?
- Unable to transact Operator.setAuthorizedSenders on Chainlink - Goerli
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You cannot.
The Chainlink node is looking for a specific return type, if you change the interface the nodes won't be sure that's the function they should be calling.
That being said, you can change what checkupkeep returns, just a chainlink keeper node wouldn't be able to call checkupkeeps.