Skip to content

Commit a87b0cd

Browse files
authored
Merge pull request #362 from stabilitydao/upd
πŸ”¨πŸ€ OS building: add token images
2 parents cc68972 + 8d0b96d commit a87b0cd

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
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.54.1",
3+
"version": "0.54.2",
44
"description": "Stability Operating System Library",
55
"main": "out/index.js",
66
"types": "out/index.d.ts",

β€Žsrc/daos.tsβ€Ž

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ export const daos: IDAO[] = [
3535
"https://t.me/stabilitydao",
3636
],
3737
activity: [Activity.DEFI_PROTOCOL_OPERATOR],
38+
images: {
39+
token: "/stbl.svg",
40+
xToken: "/xstbl.png",
41+
daoToken: "/STBL_DAO.png",
42+
},
3843
deployments: {
3944
["146"]: {
4045
tgeToken: "0x4D61CB8553bB5Db02DF3bdc6CDa88AA85b32224b",
@@ -178,6 +183,9 @@ export const daos: IDAO[] = [
178183
symbol: "BUILDER",
179184
socials: [],
180185
activity: [Activity.BUILDER, Activity.SAAS_OPERATOR],
186+
images: {
187+
token: "/builder.png",
188+
},
181189
deployments: {},
182190
units: [
183191
{
@@ -480,6 +488,9 @@ export const daos: IDAO[] = [
480488
symbol: "MEVBOT",
481489
socials: [],
482490
activity: [Activity.BUILDER, Activity.MEV_SEARCHER],
491+
images: {
492+
token: "/mevbot.jpg",
493+
},
483494
deployments: {},
484495
units: [
485496
{

β€Žsrc/os.tsβ€Ž

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,15 @@ export interface IDAO {
4646
/** Activities of the organization. */
4747
activity: Activity[];
4848

49+
/** Images of tokens. Absolute or relative from stabilitydao/.github repo /os/ folder. */
50+
images: {
51+
seedToken?: string;
52+
tgeToken?: string;
53+
token?: string;
54+
xToken?: string;
55+
daoToken?: string;
56+
};
57+
4958
/** Deployed smart-contracts */
5059
deployments: IDAODeployments;
5160

@@ -350,6 +359,7 @@ export class OS {
350359
symbol,
351360
activity,
352361
socials: [],
362+
images: {},
353363
deployments: {},
354364
units: [],
355365
agents: [],

0 commit comments

Comments
Β (0)