Skip to content

Instantly share code, notes, and snippets.

View pleiades-s's full-sized avatar
🇰🇷
Serving in the Republic of Korea Army

Yun pleiades-s

🇰🇷
Serving in the Republic of Korea Army
View GitHub Profile
@pleiades-s
pleiades-s / bet.vy
Created January 12, 2020 02:09 — forked from thtl1999/bet.vy
vyper betting app
a_addr: public(address)
b_addr: public(address)
oracle_addr: public(address)
bet_price: public(wei_value)
a_stake: public(wei_value)
b_stake: public(wei_value)
@public
def __init__(user_a: address, user_b: address, oracle: address, require_wei: wei_value):
self.a_addr = user_a