Skip to content

Commit 24d67c8

Browse files
authored
Merge pull request #334 from stabilitydao/upd
πŸͺ™πŸ€– STBL_DAO; agents update
2 parents 06bacf2 + f479bd6 commit 24d67c8

File tree

5 files changed

+51
-3
lines changed

5 files changed

+51
-3
lines changed

β€Ž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.46.1",
3+
"version": "0.46.2",
44
"description": "Stability Integration Library",
55
"main": "out/index.js",
66
"types": "out/index.d.ts",

β€Žsrc/agents.tsβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ export const agents: Agent[] = [
6565
name: "Stability Operator",
6666
tokenization: "2026",
6767
telegram: "@stability_dao_bot",
68+
image: "OPERATOR.png",
6869
...emptyRuntime,
6970
api: ["https://api.stability.farm", "https://api.stabilitydao.org"],
7071
},

β€Žsrc/assets.tsβ€Ž

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1067,6 +1067,15 @@ export const assets: Asset[] = [
10671067
website: "https://stability.farm/",
10681068
color: "#3fc00d",
10691069
},
1070+
{
1071+
addresses: {
1072+
"146": "0x77773Cb473aD1bfE991bA299a127F64b45C17777",
1073+
},
1074+
symbol: "STBL_DAO",
1075+
description: "Stability DAO power token",
1076+
website: "https://stability.farm/",
1077+
color: "#6600ff",
1078+
},
10701079
];
10711080

10721081
export const sonicWhitelistedAssets: {

β€Žsrc/builder.tsβ€Ž

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,34 @@ export interface IConveyorStep {
7676
guide?: string;
7777
}
7878

79+
export interface IWorker {
80+
username: string;
81+
img: string;
82+
}
83+
84+
export interface IIssue {
85+
repo: string;
86+
id: number;
87+
title: string;
88+
labels: ILabel[];
89+
assignees: IWorker;
90+
body?: string;
91+
}
92+
93+
export interface IBuilderMemory {
94+
openIssues: {
95+
total: { [repo: string]: number };
96+
pools: { [poolName: string]: IIssue[] };
97+
};
98+
conveyors: {
99+
[conveyorName: string]: {
100+
[taskId: string]: {
101+
[stepName: string]: IIssue[];
102+
};
103+
};
104+
};
105+
}
106+
79107
export const pools: IPool[] = [
80108
{
81109
name: "Products",
@@ -278,6 +306,7 @@ export const builder: Agent = {
278306
status: AgentStatus.UNDER_CONSTRUCTION,
279307
name: "Stability Builder",
280308
tokenization: "2026",
309+
image: "BUILDER.png",
281310
...emptyRuntime,
282311
repo: [
283312
"stabilitydao/stability",

β€Žsrc/stability.tokenlist.jsonβ€Ž

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
"name": "Stability Token List",
33
"logoURI": "https://stability.farm/logo.svg",
44
"keywords": [],
5-
"timestamp": "2025-10-20T00:00:00+00:00",
5+
"timestamp": "2025-10-27T00:00:00+00:00",
66
"version": {
77
"major": 1,
8-
"minor": 30,
8+
"minor": 31,
99
"patch": 0
1010
},
1111
"tags": {
@@ -1490,6 +1490,15 @@
14901490
"decimals": 6,
14911491
"logoURI": "https://raw.githubusercontent.com/stabilitydao/.github/main/tokens/wmetaUSDT.png",
14921492
"tags": ["usd"]
1493+
},
1494+
{
1495+
"chainId": 146,
1496+
"address": "0x77773Cb473aD1bfE991bA299a127F64b45C17777",
1497+
"symbol": "STBL_DAO",
1498+
"name": "Stability DAO",
1499+
"decimals": 18,
1500+
"logoURI": "https://raw.githubusercontent.com/stabilitydao/.github/main/tokens/STBL_DAO.png",
1501+
"tags": []
14931502
}
14941503
]
14951504
}

0 commit comments

Comments
Β (0)