@@ -79,7 +79,6 @@ def seed(vk: str):
79
79
balances ["team_lock" ] += 49999999.95 # 45% Second batch of public tokens, to be sent out after mint
80
80
balances [vk ] += 5555555.55 # 5% Seed participation tokens
81
81
82
-
83
82
metadata ["token_name" ] = "XIAN"
84
83
metadata ["token_symbol" ] = "XIAN"
85
84
metadata ["token_logo_url" ] = "https://xian.org/assets/img/logo.svg"
@@ -91,14 +90,13 @@ def seed(vk: str):
91
90
# 1824 * 24 * 60 * 60 = 157593600 (seconds in duration)
92
91
# 16666666.65 / 157593600 (release per second)
93
92
94
- setup_seed_stream (stream_id = "team_vesting" , sender = "team_vesting" , receiver = "team_lock" , rate = 0.10575725568804825 , duration_days = 1824 )
95
-
96
93
# DAO FUNDING STREAM
97
94
# 365 * 5 + 364 = 2189 (5 years + 1 leap-year)
98
95
# 2189 * 24 * 60 * 60 = 189129600 (seconds in duration)
99
96
# 22333333.311 / 189129600 = 0.1180848122715852 (release per second)
97
+ # EDIT : 15% Team Tokens to be returned to DAO, and streamed over 6 years.
100
98
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 )
102
100
103
101
def setup_seed_stream (stream_id : str , sender : str , receiver : str , rate : float , duration_days : int ):
104
102
streams [stream_id , 'status' ] = "active"
0 commit comments