Can I trigger a smart contract on specific date? If I deploy a contract today and I want execute some function of that contract tomorrow without any exteral intervention. Is it possible?
Asked
Active
Viewed 485 times
0
-
Depends on your definition for external intervention. – goodvibration Aug 30 '19 at 14:37
1 Answers
2
It is not possible for a Smart Contract to trigger itself. However, you could use an external service like the Ethereum Alarm Clock which will trigger the Contract for you.
toothleth_byte
- 166
- 6
-
can you share some code snippet of how can I use EAC for scheduling transaction on specific date? – Junior_K27 Aug 30 '19 at 06:51
-
-
The duplicate answer link has a good explanation, alternativly, the development team has a very good description with code examples in their wiki: https://ethereum-alarm-clock.readthedocs.io/en/latest/quickstart.html#scheduling-your-first-transaction – toothleth_byte Sep 02 '19 at 08:32