From 1f1a0c95cc486f0b2381a52f3785942041952b12 Mon Sep 17 00:00:00 2001 From: Hardhat Chad Date: Mon, 26 May 2025 10:36:55 -0700 Subject: [PATCH] readme --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 4822e99..2700fc8 100644 --- a/README.md +++ b/README.md @@ -9,17 +9,17 @@ - [`Instruction`](api/src/instruction.rs) – Declared instructions and arguments. ## Instructions -- [`Bet`](program/src/bet.rs) - Creates a wager on the current block. -- [`Bury`](program/src/bury.rs) - Swaps bets into ORE and burns it. -- [`Close`](program/src/close.rs) - Closes a wager account. -- [`Initialize`](program/src/initialize.rs) - Initializes the program. -- [`Payout`](program/src/payout.rs) - Distributes the block reward to the winner. -- [`Reset`](program/src/reset.rs) - Resets the program for the next block. +- [`Bet`](program/src/bet.rs) - Open a wager. +- [`Bury`](program/src/bury.rs) - Swap wagered tokens into ORE and burns it. +- [`Close`](program/src/close.rs) - Close a wager account. +- [`Initialize`](program/src/initialize.rs) - Initialize the program. +- [`Payout`](program/src/payout.rs) - Payout the block reward to the winning wager. +- [`Reset`](program/src/reset.rs) - Start the next block. ## State - [`Block`](api/src/state/block.rs) - A singleton account tracking rounds of wagering. - [`Proof`](api/src/state/proof.rs) - (Deprecated) An account which tracks a miner's current hash and current stake. -- [`Treasury`](api/src/state/treasury.rs) – The ORE mint authority. +- [`Treasury`](api/src/state/treasury.rs) – The mint authority on the ORE token. - [`Wager`](api/src/state/wager.rs) - A bet placed by a user.