-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtokenPlugin.ts
More file actions
39 lines (38 loc) · 1.82 KB
/
tokenPlugin.ts
File metadata and controls
39 lines (38 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { Network, PluginInterfaceType } from '@/shared/api/daoService';
import type { IPluginInfo } from '@/shared/types';
export const tokenPlugin: IPluginInfo = {
id: PluginInterfaceType.TOKEN_VOTING,
subdomain: 'token-voting',
name: 'Token',
installVersion: {
release: 1,
build: 4,
releaseNotes:
'https://github.com/aragon/token-voting-plugin/releases/tag/v1.4',
description:
'This optional upgrade introduces minor new features, including the ability to exclude specified addresses from the quorum calculation.',
},
repositoryAddresses: {
[Network.ARBITRUM_MAINNET]:
'0x1AeD2BEb470aeFD65B43f905Bd5371b1E4749d18',
[Network.BASE_MAINNET]: '0x2532570DcFb749A7F976136CC05648ef2a0f60b0',
[Network.CITREA_MAINNET]: '0x9a28F7690A2b02829721171364F5bBF0590cAAB6',
[Network.ETHEREUM_MAINNET]:
'0xb7401cD221ceAFC54093168B814Cc3d42579287f',
[Network.ETHEREUM_SEPOLIA]:
'0x424F4cA6FA9c24C03f2396DF0E96057eD11CF7dF',
[Network.POLYGON_MAINNET]: '0xae67aea0B830ed4504B36670B5Fa70c5C386Bb58',
[Network.ZKSYNC_MAINNET]: '0xE8F4C59f83CeE31A867E61c9959533A6e95ebCB3',
[Network.ZKSYNC_SEPOLIA]: '0x1f5f8f677164AA4D9b4465A99D22e1e01dC24160',
[Network.PEAQ_MAINNET]: '0xFBFbE98845B4E2751a8A004B5A1759e3A278FC68',
[Network.OPTIMISM_MAINNET]:
'0x666bFa1c64c40faEE8582496B040AAE35E25c19d',
[Network.CHILIZ_MAINNET]: '0x62c82a443692A1bE4D0421b1E4678F0dff8F3c1B',
[Network.AVAX_MAINNET]: '0xf56e330a183cABaC0b082b1a318F2c7ba66fe4d6',
[Network.KATANA_MAINNET]: '0xBAFF9A7c3Bf3e791B3E601fFe5A05C7759f30E5b',
},
setup: {
nameKey: 'app.plugins.token.meta.setup.name',
descriptionKey: 'app.plugins.token.meta.setup.description',
},
};