Skip to content

Commit 380aff6

Browse files
authored
Merge pull request #355 from stabilitydao/upd
πŸ“¦πŸ”¨β™»οΈπŸ¦„πŸΊπŸ›οΈ OS: TokenizationState; DAOs update
2 parents fadbdde + fca34c7 commit 380aff6

File tree

3 files changed

+36
-19
lines changed

3 files changed

+36
-19
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,28 @@ yarn prettier . --write
4141

4242
### Commit and PR prefix
4343

44+
#### Units
45+
46+
- πŸ€ Stability OS
47+
- 🧊 VaaS
48+
- πŸ“œ DeFi Strategies
49+
- ⛓️ Chain support
50+
- 🏦 Lending
51+
- πŸ¦„ Arbitrage
52+
- πŸ“™ MEV Strategies
53+
- 🐺 Liquidation
54+
- πŸ“™ MEV Strategies
55+
56+
#### Common
57+
4458
- πŸ“¦ New version
4559
- πŸ“š Knowledge (πŸͺ™ assets, 🌐 protocols, ⛓️ chains)
4660
- πŸ”¨ Types, refactor
4761
- ♻️ Update data (DAOs, strats, integrations, etc)
4862
- πŸ›οΈ DAO
4963
- πŸ§‘β€πŸŽ“ Docs
50-
- πŸ“œ DeFi Strategies
51-
- πŸ“™ MEV Strategies
5264
- ✨ Epic
5365
- πŸ€– Agents
5466
- πŸ“‘ API
55-
- 🏦 Lending
5667
- 🧺 Products
5768
- πŸŽ‡ Content generator

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stabilitydao/stability",
3-
"version": "0.51.4",
3+
"version": "0.52.0",
44
"description": "Stability Operating System Library",
55
"main": "out/index.js",
66
"types": "out/index.d.ts",

β€Žsrc/os.tsβ€Ž

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -65,16 +65,22 @@ export const enum Activity {
6565
BUILDER = "BUILDER",
6666
}
6767

68-
export const enum TokenizationState {
69-
/** Initial funding */
70-
PRE_SEED = "PRE_SEED",
71-
RESEARCH = "RESEARCH",
68+
export enum TokenizationState {
69+
/** Created */
70+
DRAFT = "DRAFT",
71+
/** Initial funding. DAO project passed requirements */
7272
SEED = "SEED",
73-
BUILDING = "BUILDING",
73+
/** Using SEED funds to launch MVP / Unit generating */
74+
RESEARCH_AND_DEVELOPMENTS = "RESEARCH_AND_DEVELOPMENTS",
75+
/** TGE is funding event for token liquidity and DAO developments */
7476
TGE = "TGE",
77+
/** Delay before any vesting allocation started */
7578
LIVE_CLIFF = "LIVE_CLIFF",
79+
/** Vesting period active */
7680
LIVE_VESTING = "LIVE_VESTING",
81+
/** Vesting ended - token fully distributed */
7782
LIVE = "LIVE",
83+
/** Absorbed by other DAO running on Stability OS */
7884
ABSORBED = "ABSORBED",
7985
}
8086

@@ -233,7 +239,7 @@ export const daos: IDAO[] = [
233239
name: "DeFi Builder",
234240
activity: [Activity.BUILDER, Activity.SAAS_OPERATOR],
235241
tokenization: {
236-
state: TokenizationState.BUILDING,
242+
state: TokenizationState.DRAFT,
237243
tokenSymbol: "BUILDER",
238244
xSymbol: "xBUILDER",
239245
daoSymbol: "BUILDER_DAO",
@@ -460,7 +466,7 @@ export const daos: IDAO[] = [
460466
unitIds: ["stability:stabilityFarm", "stability:stabilityMarket"],
461467
name: "Products",
462468
label: {
463-
name: "builder:PRODUCT",
469+
name: "STBL:PRODUCT",
464470
description: "New product request",
465471
color: "#02a3fc",
466472
},
@@ -471,7 +477,7 @@ export const daos: IDAO[] = [
471477
unitIds: ["stability:stabilityFarm", "stability:stabilityMarket"],
472478
name: "Features",
473479
label: {
474-
name: "builder:FEAT",
480+
name: "STBL:FEAT",
475481
description: "",
476482
color: "#3b15d2",
477483
},
@@ -480,7 +486,7 @@ export const daos: IDAO[] = [
480486
unitIds: ["stability:stabilityFarm", "stability:stabilityMarket"],
481487
name: "Maintenance",
482488
label: {
483-
name: "builder:MAINTENANCE",
489+
name: "STBL:MAINTENANCE",
484490
description: "",
485491
color: "#da7130",
486492
},
@@ -489,7 +495,7 @@ export const daos: IDAO[] = [
489495
unitIds: ["os"],
490496
name: "Stability OS",
491497
label: {
492-
name: "builder:OS",
498+
name: "BUILDER:OS",
493499
description: "",
494500
color: "#00b243",
495501
},
@@ -501,33 +507,33 @@ export const daos: IDAO[] = [
501507
name: "MEV Fighter",
502508
activity: [Activity.BUILDER, Activity.MEV_SEARCHER],
503509
tokenization: {
504-
state: TokenizationState.PRE_SEED,
510+
state: TokenizationState.DRAFT,
505511
tokenSymbol: "MEVBOT",
506512
xSymbol: "xMEVBOT",
507513
daoSymbol: "MEVBOT_DAO",
508514
},
509515
units: [
510516
{
511517
unitId: "mevbot:liquidation",
512-
name: "Liquidator",
518+
name: "Liquidation",
513519
status: UnitStatus.RESEARCH,
514520
revenueShare: 100,
515521
type: UnitType.MEV,
516522
components: {
517523
[UnitComponentCategory.MEV_STRATEGY]: [],
518524
},
519-
emoji: "πŸ₯·",
525+
emoji: "🐺",
520526
},
521527
{
522528
unitId: "mevbot:arb",
523-
name: "Arbitrager",
529+
name: "Arbitrage",
524530
status: UnitStatus.RESEARCH,
525531
revenueShare: 100,
526532
type: UnitType.MEV,
527533
components: {
528534
[UnitComponentCategory.MEV_STRATEGY]: [],
529535
},
530-
emoji: "πŸ§‘β€πŸ’Ό",
536+
emoji: "πŸ¦„",
531537
},
532538
],
533539
agents: [

0 commit comments

Comments
Β (0)