leo/examples/interest
Collin Chin d44457fc32
[Feature] Implement leo execute (#2491)
* 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>
2023-07-19 18:04:09 -07:00
..
build [Feature] Implement leo execute (#2491) 2023-07-19 18:04:09 -07:00
inputs [examples] Change 'period' to 'iteration'. 2022-08-08 16:51:37 -07:00
src Rename console.assert* to assert*. (#2205) 2022-12-06 21:56:48 -08:00
.env [Feature] Implement leo execute (#2491) 2023-07-19 18:04:09 -07:00
.gitignore [Feature] Implement leo execute (#2491) 2023-07-19 18:04:09 -07:00
program.json [Feature] Implement leo execute (#2491) 2023-07-19 18:04:09 -07:00
README.md [Feature] Implement leo execute (#2491) 2023-07-19 18:04:09 -07:00

Calculating Interest

This program provides utilities for calculating interest over a fixed or bounded number of iterations.

Running the Program

To run this program, run:

leo run <function_name>

where <function_name> is one of the following:

  • fixed_iteration_interest
  • bounded_iteration_interest

Be sure to update inputs/interest.in with the desired inputs.

Executing the Program

To execute this program, run:

leo execute <function_name>

where <function_name> is one of the following:

  • fixed_iteration_interest
  • bounded_iteration_interest

Be sure to update inputs/interest.in with the desired inputs.