Skip to content

Commit aa0c6c7

Browse files
committed
updated currency contract
1 parent bb78076 commit aa0c6c7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/xian/tools/genesis/contracts/currency.s.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ def seed(vk: str):
7979
balances["team_lock"] += 49999999.95 # 45% Second batch of public tokens, to be sent out after mint
8080
balances[vk] += 5555555.55 # 5% Seed participation tokens
8181

82-
8382
metadata["token_name"] = "XIAN"
8483
metadata["token_symbol"] = "XIAN"
8584
metadata["token_logo_url"] = "https://xian.org/assets/img/logo.svg"
@@ -91,14 +90,13 @@ def seed(vk: str):
9190
# 1824 * 24 * 60 * 60 = 157593600 (seconds in duration)
9291
# 16666666.65 / 157593600 (release per second)
9392

94-
setup_seed_stream(stream_id="team_vesting", sender="team_vesting", receiver="team_lock", rate=0.10575725568804825, duration_days=1824)
95-
9693
# DAO FUNDING STREAM
9794
# 365 * 5 + 364 = 2189 (5 years + 1 leap-year)
9895
# 2189 * 24 * 60 * 60 = 189129600 (seconds in duration)
9996
# 22333333.311 / 189129600 = 0.1180848122715852 (release per second)
97+
# EDIT : 15% Team Tokens to be returned to DAO, and streamed over 6 years.
10098

101-
setup_seed_stream(stream_id="dao_funding_stream", sender="dao_funding_stream", receiver="dao", rate=0.1180848122715852, duration_days=2189)
99+
setup_seed_stream(stream_id="dao_funding_stream", sender="dao_funding_stream", receiver="dao", rate=0.15823364844392418, duration_days=2189)
102100

103101
def setup_seed_stream(stream_id: str, sender: str, receiver: str, rate: float, duration_days: int):
104102
streams[stream_id, 'status'] = "active"

0 commit comments

Comments
 (0)