mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 15:31:32 +03:00
d44457fc32
* bump snarkvm rev * update default gitignore * impl leo execute * bump snarkvm 0.14.5 * modify examples wip * update run.sh examples * impl env file * clippy warning * fix auction example * fix auction example env * generate new private key for new env - tests failing due to env not found err * commit error changes * Fix tests; clippy * Get examples working * leo build checks that build dir is well formed; clippy * Clean up * Update examples/README.md Co-authored-by: d0cd <pranavsaig@gmail.com> Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com> * do not commit .avm files * use snarkvm commands --------- Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com> Co-authored-by: Pranav Gaddamadugu <pranav@aleo.org> Co-authored-by: d0cd <pranavsaig@gmail.com>
27 lines
537 B
Plaintext
27 lines
537 B
Plaintext
program lottery.aleo;
|
|
|
|
record Ticket:
|
|
owner as address.private;
|
|
|
|
|
|
mapping num_winners:
|
|
key left as u8.public;
|
|
value right as u8.public;
|
|
|
|
function play:
|
|
cast self.caller into r0 as Ticket.record;
|
|
output r0 as Ticket.record;
|
|
|
|
finalize;
|
|
|
|
finalize play:
|
|
lte block.height 1000u32 into r0;
|
|
assert.eq r0 true;
|
|
rand.chacha into r1 as boolean;
|
|
assert.eq r1 true;
|
|
get.or_use num_winners[0u8] 0u8 into r2;
|
|
lt r2 5u8 into r3;
|
|
assert.eq r3 true;
|
|
add r2 1u8 into r4;
|
|
set r4 into num_winners[0u8];
|