@continuumdao/ctm-mpc-defi 0.2.37 → 0.2.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent/catalog.cjs +49 -38
- package/dist/agent/catalog.cjs.map +1 -1
- package/dist/agent/catalog.d.ts +722 -2
- package/dist/agent/catalog.js +49 -38
- package/dist/agent/catalog.js.map +1 -1
- package/dist/agent/skills/continuum-dao/SKILL.md +18 -2
- package/dist/{buildBatch-CngvebiD.d.ts → buildBatch-tsEUVn_a.d.ts} +3 -3
- package/dist/chains/evm/index.cjs +33 -22
- package/dist/chains/evm/index.cjs.map +1 -1
- package/dist/chains/evm/index.d.ts +10 -6
- package/dist/chains/evm/index.js +33 -22
- package/dist/chains/evm/index.js.map +1 -1
- package/dist/chains/near/index.d.ts +1 -1
- package/dist/chains/solana/index.d.ts +1 -1
- package/dist/core/index.d.ts +5 -5
- package/dist/{eip712Multisign-DCW7heqX.d.ts → eip712Multisign-6oNIlObj.d.ts} +1 -1
- package/dist/{envelope-C_bfuKab.d.ts → envelope-Cm-llShH.d.ts} +1 -1
- package/dist/index.cjs +33 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +6 -6
- package/dist/index.js +33 -22
- package/dist/index.js.map +1 -1
- package/dist/protocols/evm/aave-v4/index.d.ts +1 -1
- package/dist/protocols/evm/aerodrome/index.d.ts +4 -4
- package/dist/protocols/evm/arcus/index.d.ts +2 -2
- package/dist/protocols/evm/circle-cctp/index.d.ts +2 -2
- package/dist/protocols/evm/compound-v3/index.d.ts +1 -1
- package/dist/protocols/evm/continuum-dao/index.cjs +810 -51
- package/dist/protocols/evm/continuum-dao/index.cjs.map +1 -1
- package/dist/protocols/evm/continuum-dao/index.d.ts +191 -5
- package/dist/protocols/evm/continuum-dao/index.js +770 -53
- package/dist/protocols/evm/continuum-dao/index.js.map +1 -1
- package/dist/protocols/evm/curve-dao/index.d.ts +2 -2
- package/dist/protocols/evm/ethena/index.d.ts +1 -1
- package/dist/protocols/evm/euler-v2/index.cjs +33 -22
- package/dist/protocols/evm/euler-v2/index.cjs.map +1 -1
- package/dist/protocols/evm/euler-v2/index.d.ts +1 -1
- package/dist/protocols/evm/euler-v2/index.js +33 -22
- package/dist/protocols/evm/euler-v2/index.js.map +1 -1
- package/dist/protocols/evm/gmx/index.d.ts +2 -2
- package/dist/protocols/evm/hyperliquid/index.d.ts +2 -2
- package/dist/protocols/evm/lido/index.d.ts +1 -1
- package/dist/protocols/evm/maple/index.d.ts +1 -1
- package/dist/protocols/evm/morpho/index.d.ts +1 -1
- package/dist/protocols/evm/pendle/index.d.ts +4 -4
- package/dist/protocols/evm/permit2/index.d.ts +1 -1
- package/dist/protocols/evm/sky/index.d.ts +1 -1
- package/dist/protocols/evm/uniswap-v4/index.d.ts +3 -3
- package/dist/protocols/evm/venice/index.d.ts +1 -1
- package/dist/{registry-DxDSPQ-p.d.ts → registry-BvsXh0-r.d.ts} +1 -1
- package/dist/{types-RZWOTm8c.d.ts → types-RJpoU4Pc.d.ts} +1 -1
- package/dist/{types-PZrvtjv8.d.ts → types-lIfv59N1.d.ts} +2 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as KeyGenSubsetForPermit, K as KeyGenSubset, M as MultisignBuildResult, e as ProtocolModule } from '../../../types-
|
|
1
|
+
import { b as KeyGenSubsetForPermit, K as KeyGenSubset, M as MultisignBuildResult, e as ProtocolModule } from '../../../types-lIfv59N1.js';
|
|
2
2
|
import { Address } from 'viem';
|
|
3
3
|
|
|
4
4
|
declare const CONTINUUM_DAO_PROTOCOL_ID = "continuum-dao";
|
|
@@ -12,6 +12,14 @@ declare const VECTM_TOKEN_SYMBOL = "veCTM";
|
|
|
12
12
|
declare const CTM_TOKEN_DECIMALS = 18;
|
|
13
13
|
declare const WEEK_SECONDS: number;
|
|
14
14
|
declare const MAXTIME_SECONDS: number;
|
|
15
|
+
/** Node-app / MCP lock-duration cap (4 years floored to whole weeks). */
|
|
16
|
+
declare const VECTM_MAX_LOCK_WEEKS = 208;
|
|
17
|
+
/** VotingEscrow.minimumLock default (1 CTM). Live value is read on-chain when available. */
|
|
18
|
+
declare const VECTM_DEFAULT_MINIMUM_LOCK_WEI: bigint;
|
|
19
|
+
/** VotingEscrow.liquidate — `value <= 100 gwei` reverts VotingEscrow_InvalidValue. */
|
|
20
|
+
declare const VECTM_LIQ_MIN_LOCKED_WEI = 100n;
|
|
21
|
+
declare const VECTM_LIQ_PENALTY_NUM = 50000n;
|
|
22
|
+
declare const VECTM_LIQ_PENALTY_DEN = 100000n;
|
|
15
23
|
type ContinuumDaoDeployment = {
|
|
16
24
|
ctm: `0x${string}`;
|
|
17
25
|
votingEscrow: `0x${string}`;
|
|
@@ -19,7 +27,11 @@ type ContinuumDaoDeployment = {
|
|
|
19
27
|
rewards: `0x${string}`;
|
|
20
28
|
governor: `0x${string}`;
|
|
21
29
|
};
|
|
22
|
-
/**
|
|
30
|
+
/** Production CTM token — same address on Linea mainnet and Ethereum mainnet. */
|
|
31
|
+
declare const CTM_TOKEN_ADDRESS: `0x${string}`;
|
|
32
|
+
/** Linea mainnet VotingEscrow (veCTM). */
|
|
33
|
+
declare const VOTING_ESCROW_LINEA_ADDRESS: `0x${string}`;
|
|
34
|
+
/** Placeholder deployments — fill NodeProperties / Rewards / governor after redeploy. */
|
|
23
35
|
declare const CONTINUUM_DAO_DEPLOYMENTS: Readonly<Record<number, ContinuumDaoDeployment>>;
|
|
24
36
|
/** Public ContinuumDAO governance API (same host continuumdao-app proxies). */
|
|
25
37
|
declare const CONTINUUM_DAO_GOVERNANCE_API = "https://app-api.continuumdao.org";
|
|
@@ -45,6 +57,163 @@ type ContinuumDaoDefaultAsset = {
|
|
|
45
57
|
/** Default registry rows when the configured address is non-zero. */
|
|
46
58
|
declare function listContinuumDaoDefaultAssets(): ContinuumDaoDefaultAsset[];
|
|
47
59
|
|
|
60
|
+
type VeCtmLockState = {
|
|
61
|
+
tokenId: bigint;
|
|
62
|
+
amountWei: bigint;
|
|
63
|
+
endSec: bigint;
|
|
64
|
+
owner: `0x${string}`;
|
|
65
|
+
attached: boolean;
|
|
66
|
+
vePowerWei: bigint;
|
|
67
|
+
};
|
|
68
|
+
declare function maxLockDurationSeconds(): number;
|
|
69
|
+
declare function floorUnlockTimeSeconds(nowSec: number, durationSec: bigint): bigint;
|
|
70
|
+
declare function assertCtmAmountAtLeastMinimum(amountWei: bigint, minimumLockWei: bigint, label: string): void;
|
|
71
|
+
declare function assertCreateLockAmount(amountWei: bigint, minimumLockWei: bigint, balanceWei?: bigint): void;
|
|
72
|
+
declare function assertLockDurationSeconds(durationSec: bigint, nowSec: number, label: string): bigint;
|
|
73
|
+
declare function assertIncreaseAmount(amountWei: bigint, lock: VeCtmLockState, nowSec: number, balanceWei?: bigint): void;
|
|
74
|
+
declare function assertIncreaseUnlockTime(durationSec: bigint, lock: VeCtmLockState, nowSec: number): bigint;
|
|
75
|
+
declare function assertSplitExtracted(extractedWei: bigint, lock: VeCtmLockState, minimumLockWei: bigint, nowSec: number): void;
|
|
76
|
+
declare function assertMerge(fromLock: VeCtmLockState, toLock: VeCtmLockState): void;
|
|
77
|
+
declare function assertWithdraw(lock: VeCtmLockState, nowSec: number): void;
|
|
78
|
+
declare function computeLiquidationAmounts(args: {
|
|
79
|
+
lockedAmountWei: bigint;
|
|
80
|
+
vePowerWei: bigint;
|
|
81
|
+
lockEndSec: bigint;
|
|
82
|
+
nowSec: number;
|
|
83
|
+
}): {
|
|
84
|
+
userWei: bigint;
|
|
85
|
+
treasuryWei: bigint;
|
|
86
|
+
lockExpired: boolean;
|
|
87
|
+
tooSmall: boolean;
|
|
88
|
+
zeroPenalty: boolean;
|
|
89
|
+
};
|
|
90
|
+
declare function assertLiquidate(lock: VeCtmLockState, liquidationsEnabled: boolean | null, nowSec: number): void;
|
|
91
|
+
declare function assertDelegatee(delegateeRaw: string, executor: string): `0x${string}`;
|
|
92
|
+
declare function assertUndelegateNotAlreadySelf(alreadySelf: boolean, account: string): void;
|
|
93
|
+
declare function assertTransfer(lock: VeCtmLockState, toRaw: string, fromRaw: string): `0x${string}`;
|
|
94
|
+
declare function assertExecutorOwnsLock(lock: VeCtmLockState, executor: string): void;
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* On-chain preflight for CTM / veCTM MCP builders.
|
|
98
|
+
* Reads VotingEscrow + NodeProperties so agents cannot assemble reverting batches.
|
|
99
|
+
*/
|
|
100
|
+
|
|
101
|
+
declare function readMinimumLockWei(args: {
|
|
102
|
+
rpcUrl: string;
|
|
103
|
+
chainId: number;
|
|
104
|
+
votingEscrow: Address;
|
|
105
|
+
}): Promise<bigint>;
|
|
106
|
+
declare function readCtmBalanceWei(args: {
|
|
107
|
+
rpcUrl: string;
|
|
108
|
+
chainId: number;
|
|
109
|
+
ctm: Address;
|
|
110
|
+
owner: Address;
|
|
111
|
+
}): Promise<bigint | undefined>;
|
|
112
|
+
declare function readVeCtmLockState(args: {
|
|
113
|
+
rpcUrl: string;
|
|
114
|
+
chainId: number;
|
|
115
|
+
votingEscrow: Address;
|
|
116
|
+
tokenId: bigint;
|
|
117
|
+
}): Promise<VeCtmLockState>;
|
|
118
|
+
declare function preflightCreateLock(args: {
|
|
119
|
+
rpcUrl: string;
|
|
120
|
+
chainId: number;
|
|
121
|
+
votingEscrow: Address;
|
|
122
|
+
ctm: Address;
|
|
123
|
+
owner: Address;
|
|
124
|
+
amountWei: bigint;
|
|
125
|
+
durationSec: bigint;
|
|
126
|
+
}): Promise<void>;
|
|
127
|
+
declare function preflightIncreaseAmount(args: {
|
|
128
|
+
rpcUrl: string;
|
|
129
|
+
chainId: number;
|
|
130
|
+
votingEscrow: Address;
|
|
131
|
+
ctm: Address;
|
|
132
|
+
owner: Address;
|
|
133
|
+
tokenId: bigint;
|
|
134
|
+
amountWei: bigint;
|
|
135
|
+
}): Promise<void>;
|
|
136
|
+
declare function preflightIncreaseUnlockTime(args: {
|
|
137
|
+
rpcUrl: string;
|
|
138
|
+
chainId: number;
|
|
139
|
+
votingEscrow: Address;
|
|
140
|
+
owner: Address;
|
|
141
|
+
tokenId: bigint;
|
|
142
|
+
durationSec: bigint;
|
|
143
|
+
}): Promise<void>;
|
|
144
|
+
declare function preflightSplit(args: {
|
|
145
|
+
rpcUrl: string;
|
|
146
|
+
chainId: number;
|
|
147
|
+
votingEscrow: Address;
|
|
148
|
+
owner: Address;
|
|
149
|
+
tokenId: bigint;
|
|
150
|
+
extractedWei: bigint;
|
|
151
|
+
}): Promise<void>;
|
|
152
|
+
declare function preflightMerge(args: {
|
|
153
|
+
rpcUrl: string;
|
|
154
|
+
chainId: number;
|
|
155
|
+
votingEscrow: Address;
|
|
156
|
+
owner: Address;
|
|
157
|
+
fromTokenId: bigint;
|
|
158
|
+
toTokenId: bigint;
|
|
159
|
+
}): Promise<void>;
|
|
160
|
+
declare function preflightWithdraw(args: {
|
|
161
|
+
rpcUrl: string;
|
|
162
|
+
chainId: number;
|
|
163
|
+
votingEscrow: Address;
|
|
164
|
+
owner: Address;
|
|
165
|
+
tokenId: bigint;
|
|
166
|
+
}): Promise<void>;
|
|
167
|
+
declare function preflightLiquidate(args: {
|
|
168
|
+
rpcUrl: string;
|
|
169
|
+
chainId: number;
|
|
170
|
+
votingEscrow: Address;
|
|
171
|
+
owner: Address;
|
|
172
|
+
tokenId: bigint;
|
|
173
|
+
}): Promise<void>;
|
|
174
|
+
declare function preflightDelegate(args: {
|
|
175
|
+
rpcUrl: string;
|
|
176
|
+
chainId: number;
|
|
177
|
+
votingEscrow: Address;
|
|
178
|
+
owner: Address;
|
|
179
|
+
delegatee: string;
|
|
180
|
+
}): Promise<`0x${string}`>;
|
|
181
|
+
declare function preflightUndelegate(args: {
|
|
182
|
+
rpcUrl: string;
|
|
183
|
+
chainId: number;
|
|
184
|
+
votingEscrow: Address;
|
|
185
|
+
owner: Address;
|
|
186
|
+
}): Promise<void>;
|
|
187
|
+
declare function preflightTransfer(args: {
|
|
188
|
+
rpcUrl: string;
|
|
189
|
+
chainId: number;
|
|
190
|
+
votingEscrow: Address;
|
|
191
|
+
owner: Address;
|
|
192
|
+
tokenId: bigint;
|
|
193
|
+
to: string;
|
|
194
|
+
}): Promise<`0x${string}`>;
|
|
195
|
+
declare function preflightAttachVeCtm(args: {
|
|
196
|
+
rpcUrl: string;
|
|
197
|
+
chainId: number;
|
|
198
|
+
mpaWallet: Address;
|
|
199
|
+
nodeKey: string;
|
|
200
|
+
tokenId: bigint;
|
|
201
|
+
owner: Address;
|
|
202
|
+
votingEscrow?: Address;
|
|
203
|
+
}): Promise<void>;
|
|
204
|
+
declare function preflightRequestDetach(args: {
|
|
205
|
+
rpcUrl: string;
|
|
206
|
+
chainId: number;
|
|
207
|
+
nodeProperties: Address;
|
|
208
|
+
owner: Address;
|
|
209
|
+
tokenId: bigint;
|
|
210
|
+
}): Promise<void>;
|
|
211
|
+
|
|
212
|
+
declare const VECTM_NODE_INFO_TUPLE = "(string,string,uint8[4],uint16[8],string,uint256,uint256,string,string,bytes)";
|
|
213
|
+
declare const ATTACH_VECTM_SIGNATURE = "attachVeCtm(string,uint256,(string,string,uint8[4],uint16[8],string,uint256,uint256,string,string,bytes),string)";
|
|
214
|
+
/** Bind attach to the attaching KeyGen's mpc-auth GroupId. Do not pick a different group. */
|
|
215
|
+
declare function resolveAttachGroupId(keyGen: KeyGenSubsetForPermit, explicit?: string): string;
|
|
216
|
+
|
|
48
217
|
/**
|
|
49
218
|
* ContinuumDAO multi-sign builders: CTM lock / veCTM escrow + MPA attach / request detach.
|
|
50
219
|
* Do not prepend billing legs — these are protocol txs, not register / deposit / syncBilling.
|
|
@@ -62,8 +231,8 @@ declare const CONTINUUM_DAO_DELEGATE_FALLBACK = 160000n;
|
|
|
62
231
|
declare const CONTINUUM_DAO_TRANSFER_FALLBACK = 160000n;
|
|
63
232
|
declare const CONTINUUM_DAO_ATTACH_FALLBACK = 450000n;
|
|
64
233
|
declare const CONTINUUM_DAO_DETACH_FALLBACK = 220000n;
|
|
65
|
-
declare const
|
|
66
|
-
|
|
234
|
+
declare const INCREASE_UNLOCK_TIME_SIGNATURE = "increase_unlock_time(uint256,uint256)";
|
|
235
|
+
|
|
67
236
|
declare const CONTINUUM_DAO_EVM_TYPES: Set<string>;
|
|
68
237
|
type ChainRow = {
|
|
69
238
|
legacy?: boolean;
|
|
@@ -84,6 +253,7 @@ type ContinuumDaoCommonArgs = {
|
|
|
84
253
|
executorAddress: Address;
|
|
85
254
|
purposeText: string;
|
|
86
255
|
};
|
|
256
|
+
declare function continuumDaoSignatureText(extra: Record<string, unknown>, chainId: number): string;
|
|
87
257
|
declare function buildEvmMultisignBodyContinuumDaoCreateLock(args: ContinuumDaoCommonArgs & {
|
|
88
258
|
amountHuman: string;
|
|
89
259
|
lockDurationSeconds: string | number | bigint;
|
|
@@ -202,6 +372,7 @@ declare function buildEvmMultisignBodyContinuumDaoAttachVeCtm(args: ContinuumDao
|
|
|
202
372
|
mpaWallet: string;
|
|
203
373
|
nodeInfo?: Parameters<typeof encodeContinuumDaoNodeInfo>[0];
|
|
204
374
|
nodeInfoTuple?: ContinuumDaoNodeInfoTuple;
|
|
375
|
+
groupId?: string;
|
|
205
376
|
}): Promise<{
|
|
206
377
|
bodyForSign: Record<string, unknown>;
|
|
207
378
|
messageToSign: string;
|
|
@@ -218,6 +389,7 @@ declare function buildEvmMultisignBodyContinuumDaoAttachVeCtmFromMcp(args: Conti
|
|
|
218
389
|
nodeKey: string;
|
|
219
390
|
tokenId: string | number | bigint;
|
|
220
391
|
mpaWallet: string;
|
|
392
|
+
groupId?: string;
|
|
221
393
|
forumHandle?: string;
|
|
222
394
|
email?: string;
|
|
223
395
|
vps?: string;
|
|
@@ -360,6 +532,20 @@ declare function continuumDaoFetchProposalState(args: {
|
|
|
360
532
|
againstVotes: string;
|
|
361
533
|
forVotes: string;
|
|
362
534
|
abstainVotes: string;
|
|
535
|
+
/** True when proposalVotes() failed but state() succeeded. */
|
|
536
|
+
votesPartial: boolean;
|
|
537
|
+
}>;
|
|
538
|
+
/** Snapshot voting power and prior vote for a KeyGen on a proposal. */
|
|
539
|
+
declare function continuumDaoFetchProposalVoteEligibility(args: {
|
|
540
|
+
chainId: number | string;
|
|
541
|
+
rpcUrl: string;
|
|
542
|
+
proposalId: string | number | bigint;
|
|
543
|
+
account: string;
|
|
544
|
+
governor?: string;
|
|
545
|
+
}): Promise<{
|
|
546
|
+
hasVoted: boolean;
|
|
547
|
+
snapshotVotes: string;
|
|
548
|
+
snapshotBlock: string;
|
|
363
549
|
}>;
|
|
364
550
|
declare function continuumDaoFetchProposalCount(args: {
|
|
365
551
|
chainId: number;
|
|
@@ -745,4 +931,4 @@ declare function buildEvmMultisignBodyContinuumDaoForumSignIn(args: {
|
|
|
745
931
|
|
|
746
932
|
declare const continuumDaoProtocolModule: ProtocolModule;
|
|
747
933
|
|
|
748
|
-
export { ATTACH_VECTM_SIGNATURE, CONTINUUM_DAO_APPROVE_FALLBACK, CONTINUUM_DAO_ATTACH_FALLBACK, CONTINUUM_DAO_CANCEL_FALLBACK, CONTINUUM_DAO_CREATE_LOCK_FALLBACK, CONTINUUM_DAO_DELEGATE_FALLBACK, CONTINUUM_DAO_DEPLOYMENTS, CONTINUUM_DAO_DETACH_FALLBACK, CONTINUUM_DAO_ETHEREUM_CHAIN_ID, CONTINUUM_DAO_EVM_TYPES, CONTINUUM_DAO_EXECUTE_FALLBACK, CONTINUUM_DAO_GOVERNANCE_API, CONTINUUM_DAO_GOV_EVM_TYPES, CONTINUUM_DAO_INCREASE_AMOUNT_FALLBACK, CONTINUUM_DAO_INCREASE_UNLOCK_FALLBACK, CONTINUUM_DAO_LINEA_CHAIN_ID, CONTINUUM_DAO_LINEA_SEPOLIA_CHAIN_ID, CONTINUUM_DAO_LIQUIDATE_FALLBACK, CONTINUUM_DAO_MERGE_FALLBACK, CONTINUUM_DAO_PROPOSE_FALLBACK, CONTINUUM_DAO_PROTOCOL_ID, CONTINUUM_DAO_SPLIT_FALLBACK, CONTINUUM_DAO_TRANSFER_FALLBACK, CONTINUUM_DAO_VOTE_FALLBACK, CONTINUUM_DAO_WITHDRAW_FALLBACK, CTM_TOKEN_DECIMALS, CTM_TOKEN_NAME, CTM_TOKEN_SYMBOL, type ContinuumDaoCommonArgs, type ContinuumDaoDefaultAsset, type ContinuumDaoDeployment, type ContinuumDaoExplainProposalResult, type ContinuumDaoLiveProposalsResult, type ContinuumDaoNodeInfoTuple, type ContinuumDaoRegisterProposalPayload, type ExplainedAction, type ExplainedOption, FORUM_GOVERNANCE_SECTIONS, FORUM_IDEA_SECTION, FORUM_LOGIN_DELIVERY_KIND, type ForumGovernanceSection, type ForumSignInEligible, GOVERNOR_STATE, GOVERNOR_STATE_LABELS, type GovActionInput, type GovOptionInput, type LiveProposalBucket, type LiveProposalRow, MAXTIME_SECONDS, PROPOSAL_TYPE_LABELS, PROPOSAL_TYPE_TO_FORUM_SECTION, VECTM_NODE_INFO_TUPLE, VECTM_TOKEN_NAME, VECTM_TOKEN_SYMBOL, WEEK_SECONDS, applyForumSectionCheck, assertContinuumDaoForumDeleteInput, assertContinuumDaoForumMarkReadInput, assertContinuumDaoForumRecentInput, assertContinuumDaoForumSearchInput, assertContinuumDaoForumTopicKey, bucketGovernorState, buildBravoProposalArgs, buildDeltaProposalArgs, buildEvmMultisignBodyContinuumDaoAttachVeCtm, buildEvmMultisignBodyContinuumDaoAttachVeCtmFromMcp, buildEvmMultisignBodyContinuumDaoCancel, buildEvmMultisignBodyContinuumDaoCastVoteBravo, buildEvmMultisignBodyContinuumDaoCastVoteBravoFromMcp, buildEvmMultisignBodyContinuumDaoCastVoteDelta, buildEvmMultisignBodyContinuumDaoCreateLock, buildEvmMultisignBodyContinuumDaoDelegate, buildEvmMultisignBodyContinuumDaoExecute, buildEvmMultisignBodyContinuumDaoForumSignIn, buildEvmMultisignBodyContinuumDaoIncreaseAmount, buildEvmMultisignBodyContinuumDaoIncreaseUnlockTime, buildEvmMultisignBodyContinuumDaoLiquidate, buildEvmMultisignBodyContinuumDaoMerge, buildEvmMultisignBodyContinuumDaoProposeBravo, buildEvmMultisignBodyContinuumDaoProposeDelta, buildEvmMultisignBodyContinuumDaoProposeDeltaFromMcp, buildEvmMultisignBodyContinuumDaoRequestDetach, buildEvmMultisignBodyContinuumDaoSplit, buildEvmMultisignBodyContinuumDaoTransfer, buildEvmMultisignBodyContinuumDaoUndelegate, buildEvmMultisignBodyContinuumDaoWithdraw, continuumDaoDeployment, continuumDaoExplainProposal, continuumDaoFetchDelegates, continuumDaoFetchLiveProposals, continuumDaoFetchProposal, continuumDaoFetchProposalCount, continuumDaoFetchProposalState, continuumDaoFetchProposals, continuumDaoFetchVotingPower, continuumDaoForumCreateIdea, continuumDaoForumCreateTopic, continuumDaoForumDelete, continuumDaoForumFetchPost, continuumDaoForumFetchThread, continuumDaoForumMarkRead, continuumDaoForumMarkUnread, continuumDaoForumMe, continuumDaoForumReact, continuumDaoForumRecent, continuumDaoForumReply, continuumDaoForumReplyCount, continuumDaoForumResolve, continuumDaoForumSearch, continuumDaoForumSections, continuumDaoForumSignInEligible, continuumDaoForumSignInNonce, continuumDaoForumSignOut, continuumDaoForumUnread, continuumDaoForumUrl, continuumDaoForumUserPostIds, continuumDaoHashProposal, continuumDaoMpaFlag, continuumDaoMpaListing, continuumDaoMpaMailboxList, continuumDaoMpaMailboxOpen, continuumDaoMpaMailboxSend, continuumDaoMpaRetract, continuumDaoProtocolModule, continuumDaoRegisterProposal, continuumDaoTechnocoreBind, ctmTokenAddressOnEvmChain, encodeContinuumDaoNodeInfo, encodeDeltaMetadata, encodeDeltaVoteParams, encodeGovActionCalldata, expectedForumSectionForProposalType, explainGovAction, explainProposalRecord, governorAddressOnEvmChain, isConfiguredAddress, isContinuumDaoCtmOnAssetsChain, isContinuumDaoLockChain, isContinuumDaoSupportedChainId, isContinuumDaoVeCtmOnAssetsChain, isCtmTokenSymbol, isForumIdeaSection, isGovNoOpAction, isVotingEscrowContinuumName, listContinuumDaoDefaultAssets, proposalDescriptionHash, summarizeLiveProposals, votingEscrowAddressOnEvmChain };
|
|
934
|
+
export { ATTACH_VECTM_SIGNATURE, CONTINUUM_DAO_APPROVE_FALLBACK, CONTINUUM_DAO_ATTACH_FALLBACK, CONTINUUM_DAO_CANCEL_FALLBACK, CONTINUUM_DAO_CREATE_LOCK_FALLBACK, CONTINUUM_DAO_DELEGATE_FALLBACK, CONTINUUM_DAO_DEPLOYMENTS, CONTINUUM_DAO_DETACH_FALLBACK, CONTINUUM_DAO_ETHEREUM_CHAIN_ID, CONTINUUM_DAO_EVM_TYPES, CONTINUUM_DAO_EXECUTE_FALLBACK, CONTINUUM_DAO_GOVERNANCE_API, CONTINUUM_DAO_GOV_EVM_TYPES, CONTINUUM_DAO_INCREASE_AMOUNT_FALLBACK, CONTINUUM_DAO_INCREASE_UNLOCK_FALLBACK, CONTINUUM_DAO_LINEA_CHAIN_ID, CONTINUUM_DAO_LINEA_SEPOLIA_CHAIN_ID, CONTINUUM_DAO_LIQUIDATE_FALLBACK, CONTINUUM_DAO_MERGE_FALLBACK, CONTINUUM_DAO_PROPOSE_FALLBACK, CONTINUUM_DAO_PROTOCOL_ID, CONTINUUM_DAO_SPLIT_FALLBACK, CONTINUUM_DAO_TRANSFER_FALLBACK, CONTINUUM_DAO_VOTE_FALLBACK, CONTINUUM_DAO_WITHDRAW_FALLBACK, CTM_TOKEN_ADDRESS, CTM_TOKEN_DECIMALS, CTM_TOKEN_NAME, CTM_TOKEN_SYMBOL, type ContinuumDaoCommonArgs, type ContinuumDaoDefaultAsset, type ContinuumDaoDeployment, type ContinuumDaoExplainProposalResult, type ContinuumDaoLiveProposalsResult, type ContinuumDaoNodeInfoTuple, type ContinuumDaoRegisterProposalPayload, type ExplainedAction, type ExplainedOption, FORUM_GOVERNANCE_SECTIONS, FORUM_IDEA_SECTION, FORUM_LOGIN_DELIVERY_KIND, type ForumGovernanceSection, type ForumSignInEligible, GOVERNOR_STATE, GOVERNOR_STATE_LABELS, type GovActionInput, type GovOptionInput, INCREASE_UNLOCK_TIME_SIGNATURE, type LiveProposalBucket, type LiveProposalRow, MAXTIME_SECONDS, PROPOSAL_TYPE_LABELS, PROPOSAL_TYPE_TO_FORUM_SECTION, VECTM_DEFAULT_MINIMUM_LOCK_WEI, VECTM_LIQ_MIN_LOCKED_WEI, VECTM_LIQ_PENALTY_DEN, VECTM_LIQ_PENALTY_NUM, VECTM_MAX_LOCK_WEEKS, VECTM_NODE_INFO_TUPLE, VECTM_TOKEN_NAME, VECTM_TOKEN_SYMBOL, VOTING_ESCROW_LINEA_ADDRESS, type VeCtmLockState, WEEK_SECONDS, applyForumSectionCheck, assertContinuumDaoForumDeleteInput, assertContinuumDaoForumMarkReadInput, assertContinuumDaoForumRecentInput, assertContinuumDaoForumSearchInput, assertContinuumDaoForumTopicKey, assertCreateLockAmount, assertCtmAmountAtLeastMinimum, assertDelegatee, assertExecutorOwnsLock, assertIncreaseAmount, assertIncreaseUnlockTime, assertLiquidate, assertLockDurationSeconds, assertMerge, assertSplitExtracted, assertTransfer, assertUndelegateNotAlreadySelf, assertWithdraw, bucketGovernorState, buildBravoProposalArgs, buildDeltaProposalArgs, buildEvmMultisignBodyContinuumDaoAttachVeCtm, buildEvmMultisignBodyContinuumDaoAttachVeCtmFromMcp, buildEvmMultisignBodyContinuumDaoCancel, buildEvmMultisignBodyContinuumDaoCastVoteBravo, buildEvmMultisignBodyContinuumDaoCastVoteBravoFromMcp, buildEvmMultisignBodyContinuumDaoCastVoteDelta, buildEvmMultisignBodyContinuumDaoCreateLock, buildEvmMultisignBodyContinuumDaoDelegate, buildEvmMultisignBodyContinuumDaoExecute, buildEvmMultisignBodyContinuumDaoForumSignIn, buildEvmMultisignBodyContinuumDaoIncreaseAmount, buildEvmMultisignBodyContinuumDaoIncreaseUnlockTime, buildEvmMultisignBodyContinuumDaoLiquidate, buildEvmMultisignBodyContinuumDaoMerge, buildEvmMultisignBodyContinuumDaoProposeBravo, buildEvmMultisignBodyContinuumDaoProposeDelta, buildEvmMultisignBodyContinuumDaoProposeDeltaFromMcp, buildEvmMultisignBodyContinuumDaoRequestDetach, buildEvmMultisignBodyContinuumDaoSplit, buildEvmMultisignBodyContinuumDaoTransfer, buildEvmMultisignBodyContinuumDaoUndelegate, buildEvmMultisignBodyContinuumDaoWithdraw, computeLiquidationAmounts, continuumDaoDeployment, continuumDaoExplainProposal, continuumDaoFetchDelegates, continuumDaoFetchLiveProposals, continuumDaoFetchProposal, continuumDaoFetchProposalCount, continuumDaoFetchProposalState, continuumDaoFetchProposalVoteEligibility, continuumDaoFetchProposals, continuumDaoFetchVotingPower, continuumDaoForumCreateIdea, continuumDaoForumCreateTopic, continuumDaoForumDelete, continuumDaoForumFetchPost, continuumDaoForumFetchThread, continuumDaoForumMarkRead, continuumDaoForumMarkUnread, continuumDaoForumMe, continuumDaoForumReact, continuumDaoForumRecent, continuumDaoForumReply, continuumDaoForumReplyCount, continuumDaoForumResolve, continuumDaoForumSearch, continuumDaoForumSections, continuumDaoForumSignInEligible, continuumDaoForumSignInNonce, continuumDaoForumSignOut, continuumDaoForumUnread, continuumDaoForumUrl, continuumDaoForumUserPostIds, continuumDaoHashProposal, continuumDaoMpaFlag, continuumDaoMpaListing, continuumDaoMpaMailboxList, continuumDaoMpaMailboxOpen, continuumDaoMpaMailboxSend, continuumDaoMpaRetract, continuumDaoProtocolModule, continuumDaoRegisterProposal, continuumDaoSignatureText, continuumDaoTechnocoreBind, ctmTokenAddressOnEvmChain, encodeContinuumDaoNodeInfo, encodeDeltaMetadata, encodeDeltaVoteParams, encodeGovActionCalldata, expectedForumSectionForProposalType, explainGovAction, explainProposalRecord, floorUnlockTimeSeconds, governorAddressOnEvmChain, isConfiguredAddress, isContinuumDaoCtmOnAssetsChain, isContinuumDaoLockChain, isContinuumDaoSupportedChainId, isContinuumDaoVeCtmOnAssetsChain, isCtmTokenSymbol, isForumIdeaSection, isGovNoOpAction, isVotingEscrowContinuumName, listContinuumDaoDefaultAssets, maxLockDurationSeconds, preflightAttachVeCtm, preflightCreateLock, preflightDelegate, preflightIncreaseAmount, preflightIncreaseUnlockTime, preflightLiquidate, preflightMerge, preflightRequestDetach, preflightSplit, preflightTransfer, preflightUndelegate, preflightWithdraw, proposalDescriptionHash, readCtmBalanceWei, readMinimumLockWei, readVeCtmLockState, resolveAttachGroupId, summarizeLiveProposals, votingEscrowAddressOnEvmChain };
|