-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcapitalDistributorPlugin.ts
More file actions
41 lines (39 loc) · 1.88 KB
/
capitalDistributorPlugin.ts
File metadata and controls
41 lines (39 loc) · 1.88 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
40
41
import { IconType } from '@aragon/gov-ui-kit';
import { Network, PluginInterfaceType } from '@/shared/api/daoService';
import type { IPluginInfo } from '@/shared/types';
export enum CapitalDistributorPluginPages {
REWARDS = 'rewards',
}
export const capitalDistributorPlugin: IPluginInfo = {
id: PluginInterfaceType.CAPITAL_DISTRIBUTOR,
subdomain: 'capital-distributor',
name: 'Capital Distributor',
installVersion: { release: 1, build: 1, releaseNotes: '', description: '' },
repositoryAddresses: {
[Network.ARBITRUM_MAINNET]:
'0x0000000000000000000000000000000000000000',
[Network.BASE_MAINNET]: '0x0000000000000000000000000000000000000000',
[Network.CITREA_MAINNET]: '0x0000000000000000000000000000000000000000',
[Network.ETHEREUM_MAINNET]:
'0x0000000000000000000000000000000000000000',
[Network.ETHEREUM_SEPOLIA]:
'0x0000000000000000000000000000000000000000',
[Network.POLYGON_MAINNET]: '0x0000000000000000000000000000000000000000',
[Network.ZKSYNC_MAINNET]: '0x0000000000000000000000000000000000000000',
[Network.ZKSYNC_SEPOLIA]: '0x0000000000000000000000000000000000000000',
[Network.PEAQ_MAINNET]: '0x0000000000000000000000000000000000000000',
[Network.OPTIMISM_MAINNET]:
'0x0000000000000000000000000000000000000000',
[Network.CHILIZ_MAINNET]: '0x0000000000000000000000000000000000000000',
[Network.AVAX_MAINNET]: '0x0000000000000000000000000000000000000000',
[Network.KATANA_MAINNET]: '0x0000000000000000000000000000000000000000',
},
pageLinksRight: (baseUrl, context) => [
{
label: 'app.plugins.capitalDistributor.meta.link.rewards',
link: `${baseUrl}/${CapitalDistributorPluginPages.REWARDS}`,
icon: IconType.REWARDS,
lgHidden: context === 'dialog',
},
],
};