#预测 #结果 #投注 #赌注

投注

用于管理 Twitch 风格投注(即“互惠投注”)的软件包。

13 个版本

0.2.5 2024年2月28日
0.2.4 2023年7月27日
0.1.7 2023年7月19日
0.1.3 2023年4月18日

3#结果 中排名

Download history 1/week @ 2024-05-20 9/week @ 2024-06-03 2/week @ 2024-06-10 109/week @ 2024-07-29 3/week @ 2024-08-05

每月 112 次下载

无许可证

29KB
682

投注

一个用于管理 Twitch 风格投注(即 互惠投注)的 Rust 软件包。

use bets::{Bets, BetError, Amount};

fn bet_demo() -> Result<(), BetError> {
    // variables for readability
    let server_id = 1;
    let bet_id = 1;
    let (alice, bob, charlie) = (0, 1, 2);
    // Create the database
    let bets = Bets::new("bets.db")?;
    // Create 3 accounts on server 1 with 100 starting coins
    bets.create_account(server_id, alice, 100)?;
    bets.create_account(server_id, bob, 100)?;
    bets.create_account(server_id, charlie, 100)?;
    // Alice creates a bet with 2 outcomes
    bets.create_bet(
        bet_id, server_id, alice,
        "Who will win the Rocket League 1v1 ?",
        &vec!["Alice", "Bob"],
    )?;
    // Alice bets on herself (outcome with id 0) with 10 coins
    bets.bet_on(bet_id, 0, alice, 10)?;
    // Bob bets on himself (outcome with id 1) with 40 coins
    bets.bet_on(bet_id, 1, bob, 40)?;
    // Charlie bets on Alice with half of his coins (50)
    bets.bet_on(bet_id, 0, charlie, 0.5)?;
    // asserts that the money is gone from their accounts
    assert_eq!(bets.balance(server_id, alice)?, 90);
    assert_eq!(bets.balance(server_id, bob)?, 60);
    assert_eq!(bets.balance(server_id, charlie)?, 50);
    // lock the bet
    bets.lock_bet(bet_id)?;
    // ...
    // Rocket league 1v1 occurs
    // ...
    // Alice ended up winning ! we resolve the bet with outcome of id 0
    bets.resolve(bet_id, 0)?;
    // The winning side gets 10 + 40 + 50 = 100 coins
    // split proportionally among the betters
    // Alice had bet 10 out of 60 of this outcome, she wins 100*(10/60) = 16.6 rounded to 17
    assert_eq!(bets.balance(server_id, alice)?, 107);
    // Bob doesn't win anything since he bet on the wrong outcome
    assert_eq!(bets.balance(server_id, bob)?, 60);
    // Charlie had bet 50 out of 60 of this outcome, he wins 100*(50/60) = 83.3 rounded to 83
    assert_eq!(bets.balance(server_id, charlie)?, 133);
    Ok(())
}

fn main() {
    if let Err(why) = bet_demo() {
        println!("{:?}", why);
    }
}

依赖项

~23MB
~447K SLoC