Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stabilitydao/stability",
"version": "0.46.1",
"version": "0.46.2",
"description": "Stability Integration Library",
"main": "out/index.js",
"types": "out/index.d.ts",
Expand Down
1 change: 1 addition & 0 deletions src/agents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export const agents: Agent[] = [
name: "Stability Operator",
tokenization: "2026",
telegram: "@stability_dao_bot",
image: "OPERATOR.png",
...emptyRuntime,
api: ["https://api.stability.farm", "https://api.stabilitydao.org"],
},
Expand Down
9 changes: 9 additions & 0 deletions src/assets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1067,6 +1067,15 @@ export const assets: Asset[] = [
website: "https://stability.farm/",
color: "#3fc00d",
},
{
addresses: {
"146": "0x77773Cb473aD1bfE991bA299a127F64b45C17777",
},
symbol: "STBL_DAO",
description: "Stability DAO power token",
website: "https://stability.farm/",
color: "#6600ff",
},
];

export const sonicWhitelistedAssets: {
Expand Down
29 changes: 29 additions & 0 deletions src/builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,34 @@ export interface IConveyorStep {
guide?: string;
}

export interface IWorker {
username: string;
img: string;
}

export interface IIssue {
repo: string;
id: number;
title: string;
labels: ILabel[];
assignees: IWorker;
body?: string;
}

export interface IBuilderMemory {
openIssues: {
total: { [repo: string]: number };
pools: { [poolName: string]: IIssue[] };
};
conveyors: {
[conveyorName: string]: {
[taskId: string]: {
[stepName: string]: IIssue[];
};
};
};
}

export const pools: IPool[] = [
{
name: "Products",
Expand Down Expand Up @@ -278,6 +306,7 @@ export const builder: Agent = {
status: AgentStatus.UNDER_CONSTRUCTION,
name: "Stability Builder",
tokenization: "2026",
image: "BUILDER.png",
...emptyRuntime,
repo: [
"stabilitydao/stability",
Expand Down
13 changes: 11 additions & 2 deletions src/stability.tokenlist.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"name": "Stability Token List",
"logoURI": "https://stability.farm/logo.svg",
"keywords": [],
"timestamp": "2025-10-20T00:00:00+00:00",
"timestamp": "2025-10-27T00:00:00+00:00",
"version": {
"major": 1,
"minor": 30,
"minor": 31,
"patch": 0
},
"tags": {
Expand Down Expand Up @@ -1490,6 +1490,15 @@
"decimals": 6,
"logoURI": "https://raw.githubusercontent.com/stabilitydao/.github/main/tokens/wmetaUSDT.png",
"tags": ["usd"]
},
{
"chainId": 146,
"address": "0x77773Cb473aD1bfE991bA299a127F64b45C17777",
"symbol": "STBL_DAO",
"name": "Stability DAO",
"decimals": 18,
"logoURI": "https://raw.githubusercontent.com/stabilitydao/.github/main/tokens/STBL_DAO.png",
"tags": []
}
]
}