Questions tagged [scheduling]
The scheduling tag has no usage guidance.
31 questions
0
votes
1
answer
27
views
Triggering User Defined Jobs On-Chain
I have been working on this dapp lately that allow users to create a product with an expiration date (don't mind the specifics of the app).
Once expired, a call to a smart contract should be made (...
0
votes
1
answer
43
views
Execute an ethereum transaction every X amount of blocks within a smart contract?
I would like to build a smart contract where users deposit crypto into a lottery like system. Every 10 blocks that have passed on the underlying chain I want to generate a random number and send out a ...
0
votes
1
answer
23
views
Scheduling a set of transactions to be executed on a basis
I am searching for a platform that can help me to have a particular function of my smart contract executed on a regular basis.
I have found a couple of solutions, but none is useful as my contract is ...
0
votes
0
answers
133
views
Subscriptions - Recurring payments (Fiat to Crypto wallet)
I checked several platforms (BitPay, Stripe, Plaid etc..) but none seem to enable me to setup a recurring payment from fiat to a crypto wallet the same way you would do it on Netflix with your bank ...
3
votes
2
answers
893
views
Subscriptions - Recurring payments (EVM)
after reading these threads link 1, link 2 and link 3, I am a bit confused as why there is no way, on the EVM, to put in place recurring payments as it's such a predominant use case IRL (rent, ...
0
votes
1
answer
51
views
Dynamically supply link to chainlink upkeeper
I've created a simple chainlink upkeep task on polygon:
import "@chainlink/contracts/src/v0.7/KeeperCompatible.sol";
contract Counter is KeeperCompatibleInterface {
/**
* Public ...
0
votes
1
answer
91
views
Looping over scheduling ETH transaction
I have used Aion smart contracts to facilitate scheduling a ETH transaction. It works fine, but when it comes to making those transactions periodically (Scheduling multiple transactions), it throws an ...
1
vote
1
answer
145
views
How to call a function with ethereum alarm clock?
In Ethereum alarm clock who is calling the contract (scheduler?) that executes the function programmed in my contract. I mean, I have a function in my contract that needs to run on a certain date, but ...
0
votes
0
answers
124
views
scheduling of smart contract functions
I am reading the alarm clock documentation http://docs.ethereum-alarm-clock.com/en/latest/ but there are things I don't understand. I have a dapp where the smart contract has different functions. For ...
1
vote
1
answer
186
views
Call Smart Contract At Unpredictable Time
Is there a call scheduling service that lets you schedule a call at a time in the future not predictable by someone with access to contract code and transaction details?
The scheduling services I've ...
0
votes
0
answers
35
views
How to schedule a transaction to a Contract? [duplicate]
I have a simple getter-setter contract. I want to schedule transactions for a method of my contract on a particular date and time.
Do we have a function to schedule transactions to a contract in ...
0
votes
1
answer
100
views
Is using oraclize to schedule using execution of a function asynchronous?
I am looking for ways to automatically execute a function call every 24 hours in my smart contract and came across this answer. Is the solution here asynchronous, i.e. can the contract execute other ...
0
votes
1
answer
152
views
Gas Estimation Failed error when scheduling Aion call
I am trying to understand the Aion scheduling system, so I tried their code example from here.
Below is the code snippet:
pragma solidity ^0.4.24;
// interface Aion
contract Aion {
uint256 ...
0
votes
1
answer
37
views
How to check state of the contract after some time?
I am writing a contract where I need to check that if in 5 minutes no new token get purchased then the sale should be ended. What I mean exactly is that, lets say user A has purchased 100 tokens and ...
0
votes
0
answers
200
views
How to auto-execute smart contract's function by Aion or other method in the private chain?
I was a little bit confused about Aion scheduling system, because I want to do it on the private chain, in the example https://github.com/ETH-Pantheon/Aion, they have both smart contract Aion and ...
0
votes
2
answers
985
views
How can the smart contract auto execute the function in the private chain?
I know currently, we can use the Ethereum Alarm Clock and Aion scheduling system to execute the function automatically, but according to what I know, it only can work in Main Net and Test Net(Rposten)....
1
vote
1
answer
438
views
Is it possible for a contract to auto-execute a function every hour? [duplicate]
I have a contract with a manual function that checks the balance of the contract and if it's zero it changes certain values in mapping. How to make this happen automatically every hour?
0
votes
2
answers
53
views
Rejecting oraclize scheduled request [closed]
Using Oracle we can call scheduled functions. But is it possible to cancel scheduled function? I mean, for example, if I scheduled an function that updates something in my contract in 10 minutes but ...
0
votes
2
answers
426
views
Can I make recursive calls using Ethereum Alarm Clock Scheduler? [duplicate]
Answer given here does not provide full solution.
Can some one please suggest me if it is practically feasible to execute a method in my smart contract every 24 hours using Ethereum Alarm Clock? You ...
0
votes
2
answers
168
views
CryptoKitty birth and auction clock
How does CryptoKitty implement scheduling functions such as give birth function or auction ending function.
I tried to track it through Eth Fiddle but didn't find how it was done. Is there a ...
3
votes
3
answers
4k
views
How can contract do recurring payments? [duplicate]
I need to create a contract that will make recurring payments as per user's request, the contract will ask the user to tell the sender and receiver address and it'll transfer some amount of erc20 ...
0
votes
0
answers
16
views
Scheduled Operation on Smart Contract [duplicate]
Looking for a way to schedule an event within the smart contract. When the event is occurred should be able to invoke the method of the contract.
I want to implement this whole feature, within the ...
0
votes
2
answers
352
views
Ethereum Alarm Clock
I am trying to test a smart contract which uses the Ethereum Alarm Clock . They have mentioned a contract address for the testnet. But that is old and it is not available for any of the new testnets. ...
2
votes
1
answer
938
views
Parity schedule on block number n-1 or n-2?
I'm trying to get in on some ICO's, and was wondering what the best way to get in was using Parity. I've read some people say that you should use n-2 so the block number the ICO starts at minus two ...
18
votes
4
answers
9k
views
How to schedule a transaction?
Anyone can guide me on how to schedule a transaction to be sent once a specific block number is mined?
Thanks
5
votes
2
answers
1k
views
How to deploy Ethereum Alarm Clock contract on a private ethereum network?
Ethereum Alarm Clock:
Schedule Contract Function Calls An ethereum contract that facilitates
scheduling function calls for a specified block in the future.
Function calls can be scheduled to ...
3
votes
2
answers
378
views
What happens when you put an recursive schedule call with Ethereum Alarm Clock scheduler?
My goal is to schedule a call once every day.
[Q] Is it possible to use recursive function to schedule a call once every day using Ethereum Alarm Clock scheduler?
Example from following answer ...
27
votes
2
answers
13k
views
Is block.timestamp safe for longer time periods?
I would like to set a timer like
uint timeout = now + 1 year;
Is it possible that a miner cheats the timestamp of the block that it's included more then let's say a month.
So if I need roughly 1 ...
11
votes
2
answers
643
views
Why can't a contract wake up and run itself?
This question is not about external solutions, but are there technical limitations to why a contract that has funds, can't schedule itself to run at a future block? Could the Ethereum protocol have ...
1
vote
0
answers
35
views
How can I schedule a call in a future? [duplicate]
Let say I want to be sure that some action is executed every 24 hours. Is there a way to guarantee this if my contract have necessary ethers to pay for this calls?
133
votes
9
answers
41k
views
How can a contract run itself at a later time?
In my blockchain application, I would like to have an event triggered at a later time, hours or perhaps even days after the application has most recently received a transaction from a user. How can I ...