Skip to content

Commit 8d00f8c

Browse files
committed
chore(plugins): delete optimism and lock to vote
1 parent 8d7aca9 commit 8d00f8c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+1
-8290
lines changed

.env.example

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@ NEXT_PUBLIC_TOKEN_ADDRESS=0x9A3218197C77F54BB2510FBBcc7Da3A4D2bE0DeE
66

77
# Plugin addresses
88
NEXT_PUBLIC_TOKEN_VOTING_PLUGIN_ADDRESS=0x7AdF2545e746E014887916e476DfCB3Fb57D78b0
9-
NEXT_PUBLIC_LOCK_TO_VOTE_PLUGIN_ADDRESS=
10-
NEXT_PUBLIC_OPT_MULTISIG_PLUGIN_ADDRESS=0xf49d54D40A331441536BDF74C44FFb527cf113c9
11-
NEXT_PUBLIC_DUAL_GOVERNANCE_PLUGIN_ADDRESS=0x31df2Cf73f36732c10523E4F228a458292B8F6DF
129
NEXT_PUBLIC_PUBLIC_KEY_REGISTRY_CONTRACT_ADDRESS=0x4BA2de07E5B7FB284d363DBb4c481F330c25b2A5
13-
NEXT_PUBLIC_DELEGATION_WALL_CONTRACT_ADDRESS=0x78b109462dEB44A5a94000b835ebbD7F078Aa12f
1410

1511
NEXT_PUBLIC_BRIDGE_ADDRESS=0x0000000000000000000000000000001234567890
1612

constants.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,9 @@ import { type ChainName, getChain } from "./utils/chains";
55
export const PUB_DAO_ADDRESS = (process.env.NEXT_PUBLIC_DAO_ADDRESS ?? "") as Address;
66
export const PUB_TOKEN_ADDRESS = (process.env.NEXT_PUBLIC_TOKEN_ADDRESS ?? "") as Address;
77

8-
export const PUB_OPT_MULTISIG_PLUGIN_ADDRESS = (process.env.NEXT_PUBLIC_OPT_MULTISIG_PLUGIN_ADDRESS ?? "") as Address;
9-
10-
export const PUB_DUAL_GOVERNANCE_PLUGIN_ADDRESS = (process.env.NEXT_PUBLIC_DUAL_GOVERNANCE_PLUGIN_ADDRESS ??
11-
"") as Address;
12-
export const PUB_LOCK_TO_VOTE_PLUGIN_ADDRESS = (process.env.NEXT_PUBLIC_LOCK_TO_VOTE_PLUGIN_ADDRESS ?? "") as Address;
138
export const PUB_TOKEN_VOTING_PLUGIN_ADDRESS = (process.env.NEXT_PUBLIC_TOKEN_VOTING_PLUGIN_ADDRESS ?? "") as Address;
149
export const PUB_PUBLIC_KEY_REGISTRY_CONTRACT_ADDRESS = (process.env.NEXT_PUBLIC_PUBLIC_KEY_REGISTRY_CONTRACT_ADDRESS ??
1510
"") as Address;
16-
export const PUB_DELEGATION_WALL_CONTRACT_ADDRESS = (process.env.NEXT_PUBLIC_DELEGATION_WALL_CONTRACT_ADDRESS ??
17-
"") as Address;
1811

1912
export const PUB_BRIDGE_ADDRESS = (process.env.NEXT_PUBLIC_BRIDGE_ADDRESS ?? "") as Address;
2013

plugins/index.ts

Lines changed: 1 addition & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
import {
2-
PUB_DELEGATION_WALL_CONTRACT_ADDRESS,
3-
PUB_DUAL_GOVERNANCE_PLUGIN_ADDRESS,
4-
PUB_TOKEN_VOTING_PLUGIN_ADDRESS,
5-
PUB_LOCK_TO_VOTE_PLUGIN_ADDRESS,
6-
PUB_OPT_MULTISIG_PLUGIN_ADDRESS,
7-
} from "@/constants";
1+
import { PUB_TOKEN_VOTING_PLUGIN_ADDRESS } from "@/constants";
82
import { type IconType } from "@aragon/ods";
93

104
type PluginItem = {
@@ -26,32 +20,4 @@ export const plugins: PluginItem[] = [
2620
// icon: IconType.BLOCKCHAIN_BLOCKCHAIN,
2721
pluginAddress: PUB_TOKEN_VOTING_PLUGIN_ADDRESS,
2822
},
29-
{
30-
id: "lock-to-vote",
31-
folderName: "lockToVote",
32-
title: "Lock to vote",
33-
// icon: IconType.BLOCKCHAIN_BLOCK,
34-
pluginAddress: PUB_LOCK_TO_VOTE_PLUGIN_ADDRESS,
35-
},
36-
{
37-
id: "optimistic",
38-
folderName: "optimistic-proposals",
39-
title: "Optimistic",
40-
// icon: IconType.APP_MEMBERS,
41-
pluginAddress: PUB_DUAL_GOVERNANCE_PLUGIN_ADDRESS,
42-
},
43-
{
44-
id: "opt-multisig",
45-
folderName: "opt-multisig",
46-
title: "Multisig (Optimistic)",
47-
// icon: IconType.BLOCKCHAIN_BLOCKCHAIN,
48-
pluginAddress: PUB_OPT_MULTISIG_PLUGIN_ADDRESS,
49-
},
50-
{
51-
id: "members",
52-
folderName: "members",
53-
title: "Members",
54-
// icon: IconType.BLOCKCHAIN_BLOCKCHAIN,
55-
pluginAddress: PUB_DELEGATION_WALL_CONTRACT_ADDRESS,
56-
},
5723
];

0 commit comments

Comments
 (0)