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.54.4",
"version": "0.55.0",
"description": "Stability Operating System Library",
"main": "out/index.js",
"types": "out/index.d.ts",
Expand Down
20 changes: 20 additions & 0 deletions src/addresses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,23 @@ export const almFactories: {
},
},
};

export const layerZeroV2: {
[chainId: string]: {
endpoint: `0x${string}`;
endpointId: number;
};
} = {
"146": {
endpoint: "0x6F475642a6e85809B1c36Fa62763669b1b48DD5B",
endpointId: 30332,
},
"9745": {
endpoint: "0x6F475642a6e85809B1c36Fa62763669b1b48DD5B",
endpointId: 30383,
},
"43114": {
endpoint: "0x1a44076050125825900e736c501f859c50fE728c",
endpointId: 30106,
},
};
11 changes: 11 additions & 0 deletions src/daos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,17 @@ export const daos: IDAO[] = [
["Community"]: "0xEF2CE83527FAE22E0012Efc4d64987C1a51448c5",
["Team"]: "0xe6C2AA6e67EF1B806B9Daec7147b113051a445E8",
},
tokenBridge: "0xD6a8b05f08834Ed2f205E3d591CD6D1A84b7C19B",
xTokenBridge: "0x533A0c7869e36D1640D4058Bac4604DB6b4d7AD5",
},
["9745"]: {
token: "0xfdf91362B7E9330F232e500c0236a02B0DE3e492",
xToken: "0xF40D0724599282CaF9dfb66feB630e936bC0CFBE",
staking: "0x601572b91DC054Be500392A6d3e15c690140998D",
revenueRouter: "0x5AC5b2740F77200CCe6562795cFcf4c3c2aC3745",
daoToken: "0x87C51aa090587790A5298ea4C2d0DBbcCD0026A6",
tokenBridge: "0xfdf91362B7E9330F232e500c0236a02B0DE3e492",
xTokenBridge: "0x4E3F0A27bbF443Ba81FCf17E28F4100f35b1b51B",
},
},
units: [
Expand Down
6 changes: 6 additions & 0 deletions src/os.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,12 @@ export interface IDAODeployments {
recovery?: `0x${string}`;
/** Set of vesting contracts. */
vesting?: { [name: string]: `0x${string}` };
/** Bridge for Token */
tokenBridge?: `0x${string}`;
/** Bridge for XToken */
xTokenBridge?: `0x${string}`;
/** Bridge for Governance token */
daoTokenBridge?: `0x${string}`;
};
}

Expand Down