@continuumdao/ctm-mpc-defi 0.2.45 → 0.2.46
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 +14 -8
- package/dist/agent/catalog.cjs.map +1 -1
- package/dist/agent/catalog.d.ts +34 -0
- package/dist/agent/catalog.js +14 -8
- package/dist/agent/catalog.js.map +1 -1
- package/dist/agent/skills/continuum-dao/SKILL.md +1 -1
- package/dist/protocols/evm/continuum-dao/index.cjs +75 -13
- package/dist/protocols/evm/continuum-dao/index.cjs.map +1 -1
- package/dist/protocols/evm/continuum-dao/index.d.ts +45 -6
- package/dist/protocols/evm/continuum-dao/index.js +70 -14
- package/dist/protocols/evm/continuum-dao/index.js.map +1 -1
- package/package.json +1 -1
package/dist/agent/catalog.d.ts
CHANGED
|
@@ -9809,12 +9809,18 @@ declare const mcpContinuumDaoFetchProposalsInputSchema: z.ZodObject<{
|
|
|
9809
9809
|
declare const mcpContinuumDaoFetchProposalsOutputSchema: z.ZodObject<{
|
|
9810
9810
|
proposals: z.ZodArray<z.ZodUnknown, "many">;
|
|
9811
9811
|
total: z.ZodOptional<z.ZodNumber>;
|
|
9812
|
+
minIndex: z.ZodOptional<z.ZodNumber>;
|
|
9813
|
+
maxIndex: z.ZodOptional<z.ZodNumber>;
|
|
9812
9814
|
}, "strip", z.ZodTypeAny, {
|
|
9813
9815
|
proposals: unknown[];
|
|
9814
9816
|
total?: number | undefined;
|
|
9817
|
+
minIndex?: number | undefined;
|
|
9818
|
+
maxIndex?: number | undefined;
|
|
9815
9819
|
}, {
|
|
9816
9820
|
proposals: unknown[];
|
|
9817
9821
|
total?: number | undefined;
|
|
9822
|
+
minIndex?: number | undefined;
|
|
9823
|
+
maxIndex?: number | undefined;
|
|
9818
9824
|
}>;
|
|
9819
9825
|
declare const mcpContinuumDaoFetchProposalInputSchema: z.ZodObject<{
|
|
9820
9826
|
id: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
@@ -9857,6 +9863,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
9857
9863
|
onchainId: z.ZodString;
|
|
9858
9864
|
title: z.ZodString;
|
|
9859
9865
|
configuration: z.ZodOptional<z.ZodNumber>;
|
|
9866
|
+
governorAddress: z.ZodOptional<z.ZodString>;
|
|
9860
9867
|
state: z.ZodNullable<z.ZodNumber>;
|
|
9861
9868
|
stateLabel: z.ZodString;
|
|
9862
9869
|
bucket: z.ZodEnum<["live", "pending", "readyToExecute", "recentlyCompleted", "unknown"]>;
|
|
@@ -9874,6 +9881,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
9874
9881
|
forVotes?: string | undefined;
|
|
9875
9882
|
abstainVotes?: string | undefined;
|
|
9876
9883
|
configuration?: number | undefined;
|
|
9884
|
+
governorAddress?: string | undefined;
|
|
9877
9885
|
}, {
|
|
9878
9886
|
title: string;
|
|
9879
9887
|
state: number | null;
|
|
@@ -9885,12 +9893,14 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
9885
9893
|
forVotes?: string | undefined;
|
|
9886
9894
|
abstainVotes?: string | undefined;
|
|
9887
9895
|
configuration?: number | undefined;
|
|
9896
|
+
governorAddress?: string | undefined;
|
|
9888
9897
|
}>, "many">;
|
|
9889
9898
|
pending: z.ZodArray<z.ZodObject<{
|
|
9890
9899
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9891
9900
|
onchainId: z.ZodString;
|
|
9892
9901
|
title: z.ZodString;
|
|
9893
9902
|
configuration: z.ZodOptional<z.ZodNumber>;
|
|
9903
|
+
governorAddress: z.ZodOptional<z.ZodString>;
|
|
9894
9904
|
state: z.ZodNullable<z.ZodNumber>;
|
|
9895
9905
|
stateLabel: z.ZodString;
|
|
9896
9906
|
bucket: z.ZodEnum<["live", "pending", "readyToExecute", "recentlyCompleted", "unknown"]>;
|
|
@@ -9908,6 +9918,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
9908
9918
|
forVotes?: string | undefined;
|
|
9909
9919
|
abstainVotes?: string | undefined;
|
|
9910
9920
|
configuration?: number | undefined;
|
|
9921
|
+
governorAddress?: string | undefined;
|
|
9911
9922
|
}, {
|
|
9912
9923
|
title: string;
|
|
9913
9924
|
state: number | null;
|
|
@@ -9919,12 +9930,14 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
9919
9930
|
forVotes?: string | undefined;
|
|
9920
9931
|
abstainVotes?: string | undefined;
|
|
9921
9932
|
configuration?: number | undefined;
|
|
9933
|
+
governorAddress?: string | undefined;
|
|
9922
9934
|
}>, "many">;
|
|
9923
9935
|
readyToExecute: z.ZodArray<z.ZodObject<{
|
|
9924
9936
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9925
9937
|
onchainId: z.ZodString;
|
|
9926
9938
|
title: z.ZodString;
|
|
9927
9939
|
configuration: z.ZodOptional<z.ZodNumber>;
|
|
9940
|
+
governorAddress: z.ZodOptional<z.ZodString>;
|
|
9928
9941
|
state: z.ZodNullable<z.ZodNumber>;
|
|
9929
9942
|
stateLabel: z.ZodString;
|
|
9930
9943
|
bucket: z.ZodEnum<["live", "pending", "readyToExecute", "recentlyCompleted", "unknown"]>;
|
|
@@ -9942,6 +9955,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
9942
9955
|
forVotes?: string | undefined;
|
|
9943
9956
|
abstainVotes?: string | undefined;
|
|
9944
9957
|
configuration?: number | undefined;
|
|
9958
|
+
governorAddress?: string | undefined;
|
|
9945
9959
|
}, {
|
|
9946
9960
|
title: string;
|
|
9947
9961
|
state: number | null;
|
|
@@ -9953,12 +9967,14 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
9953
9967
|
forVotes?: string | undefined;
|
|
9954
9968
|
abstainVotes?: string | undefined;
|
|
9955
9969
|
configuration?: number | undefined;
|
|
9970
|
+
governorAddress?: string | undefined;
|
|
9956
9971
|
}>, "many">;
|
|
9957
9972
|
recentlyCompleted: z.ZodArray<z.ZodObject<{
|
|
9958
9973
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9959
9974
|
onchainId: z.ZodString;
|
|
9960
9975
|
title: z.ZodString;
|
|
9961
9976
|
configuration: z.ZodOptional<z.ZodNumber>;
|
|
9977
|
+
governorAddress: z.ZodOptional<z.ZodString>;
|
|
9962
9978
|
state: z.ZodNullable<z.ZodNumber>;
|
|
9963
9979
|
stateLabel: z.ZodString;
|
|
9964
9980
|
bucket: z.ZodEnum<["live", "pending", "readyToExecute", "recentlyCompleted", "unknown"]>;
|
|
@@ -9976,6 +9992,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
9976
9992
|
forVotes?: string | undefined;
|
|
9977
9993
|
abstainVotes?: string | undefined;
|
|
9978
9994
|
configuration?: number | undefined;
|
|
9995
|
+
governorAddress?: string | undefined;
|
|
9979
9996
|
}, {
|
|
9980
9997
|
title: string;
|
|
9981
9998
|
state: number | null;
|
|
@@ -9987,12 +10004,14 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
9987
10004
|
forVotes?: string | undefined;
|
|
9988
10005
|
abstainVotes?: string | undefined;
|
|
9989
10006
|
configuration?: number | undefined;
|
|
10007
|
+
governorAddress?: string | undefined;
|
|
9990
10008
|
}>, "many">;
|
|
9991
10009
|
unknown: z.ZodArray<z.ZodObject<{
|
|
9992
10010
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9993
10011
|
onchainId: z.ZodString;
|
|
9994
10012
|
title: z.ZodString;
|
|
9995
10013
|
configuration: z.ZodOptional<z.ZodNumber>;
|
|
10014
|
+
governorAddress: z.ZodOptional<z.ZodString>;
|
|
9996
10015
|
state: z.ZodNullable<z.ZodNumber>;
|
|
9997
10016
|
stateLabel: z.ZodString;
|
|
9998
10017
|
bucket: z.ZodEnum<["live", "pending", "readyToExecute", "recentlyCompleted", "unknown"]>;
|
|
@@ -10010,6 +10029,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10010
10029
|
forVotes?: string | undefined;
|
|
10011
10030
|
abstainVotes?: string | undefined;
|
|
10012
10031
|
configuration?: number | undefined;
|
|
10032
|
+
governorAddress?: string | undefined;
|
|
10013
10033
|
}, {
|
|
10014
10034
|
title: string;
|
|
10015
10035
|
state: number | null;
|
|
@@ -10021,6 +10041,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10021
10041
|
forVotes?: string | undefined;
|
|
10022
10042
|
abstainVotes?: string | undefined;
|
|
10023
10043
|
configuration?: number | undefined;
|
|
10044
|
+
governorAddress?: string | undefined;
|
|
10024
10045
|
}>, "many">;
|
|
10025
10046
|
note: z.ZodString;
|
|
10026
10047
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10035,6 +10056,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10035
10056
|
forVotes?: string | undefined;
|
|
10036
10057
|
abstainVotes?: string | undefined;
|
|
10037
10058
|
configuration?: number | undefined;
|
|
10059
|
+
governorAddress?: string | undefined;
|
|
10038
10060
|
}[];
|
|
10039
10061
|
unknown: {
|
|
10040
10062
|
title: string;
|
|
@@ -10047,6 +10069,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10047
10069
|
forVotes?: string | undefined;
|
|
10048
10070
|
abstainVotes?: string | undefined;
|
|
10049
10071
|
configuration?: number | undefined;
|
|
10072
|
+
governorAddress?: string | undefined;
|
|
10050
10073
|
}[];
|
|
10051
10074
|
live: {
|
|
10052
10075
|
title: string;
|
|
@@ -10059,6 +10082,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10059
10082
|
forVotes?: string | undefined;
|
|
10060
10083
|
abstainVotes?: string | undefined;
|
|
10061
10084
|
configuration?: number | undefined;
|
|
10085
|
+
governorAddress?: string | undefined;
|
|
10062
10086
|
}[];
|
|
10063
10087
|
readyToExecute: {
|
|
10064
10088
|
title: string;
|
|
@@ -10071,6 +10095,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10071
10095
|
forVotes?: string | undefined;
|
|
10072
10096
|
abstainVotes?: string | undefined;
|
|
10073
10097
|
configuration?: number | undefined;
|
|
10098
|
+
governorAddress?: string | undefined;
|
|
10074
10099
|
}[];
|
|
10075
10100
|
recentlyCompleted: {
|
|
10076
10101
|
title: string;
|
|
@@ -10083,6 +10108,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10083
10108
|
forVotes?: string | undefined;
|
|
10084
10109
|
abstainVotes?: string | undefined;
|
|
10085
10110
|
configuration?: number | undefined;
|
|
10111
|
+
governorAddress?: string | undefined;
|
|
10086
10112
|
}[];
|
|
10087
10113
|
overlay: "on-chain" | "backend-only";
|
|
10088
10114
|
scanned: number;
|
|
@@ -10099,6 +10125,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10099
10125
|
forVotes?: string | undefined;
|
|
10100
10126
|
abstainVotes?: string | undefined;
|
|
10101
10127
|
configuration?: number | undefined;
|
|
10128
|
+
governorAddress?: string | undefined;
|
|
10102
10129
|
}[];
|
|
10103
10130
|
unknown: {
|
|
10104
10131
|
title: string;
|
|
@@ -10111,6 +10138,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10111
10138
|
forVotes?: string | undefined;
|
|
10112
10139
|
abstainVotes?: string | undefined;
|
|
10113
10140
|
configuration?: number | undefined;
|
|
10141
|
+
governorAddress?: string | undefined;
|
|
10114
10142
|
}[];
|
|
10115
10143
|
live: {
|
|
10116
10144
|
title: string;
|
|
@@ -10123,6 +10151,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10123
10151
|
forVotes?: string | undefined;
|
|
10124
10152
|
abstainVotes?: string | undefined;
|
|
10125
10153
|
configuration?: number | undefined;
|
|
10154
|
+
governorAddress?: string | undefined;
|
|
10126
10155
|
}[];
|
|
10127
10156
|
readyToExecute: {
|
|
10128
10157
|
title: string;
|
|
@@ -10135,6 +10164,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10135
10164
|
forVotes?: string | undefined;
|
|
10136
10165
|
abstainVotes?: string | undefined;
|
|
10137
10166
|
configuration?: number | undefined;
|
|
10167
|
+
governorAddress?: string | undefined;
|
|
10138
10168
|
}[];
|
|
10139
10169
|
recentlyCompleted: {
|
|
10140
10170
|
title: string;
|
|
@@ -10147,6 +10177,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10147
10177
|
forVotes?: string | undefined;
|
|
10148
10178
|
abstainVotes?: string | undefined;
|
|
10149
10179
|
configuration?: number | undefined;
|
|
10180
|
+
governorAddress?: string | undefined;
|
|
10150
10181
|
}[];
|
|
10151
10182
|
overlay: "on-chain" | "backend-only";
|
|
10152
10183
|
scanned: number;
|
|
@@ -10177,6 +10208,7 @@ declare const mcpContinuumDaoExplainProposalOutputSchema: z.ZodObject<{
|
|
|
10177
10208
|
typeLabel: z.ZodString;
|
|
10178
10209
|
configuration: z.ZodEnum<["bravo", "delta"]>;
|
|
10179
10210
|
nWinners: z.ZodOptional<z.ZodNumber>;
|
|
10211
|
+
governorAddress: z.ZodOptional<z.ZodString>;
|
|
10180
10212
|
briefing: z.ZodString;
|
|
10181
10213
|
actions: z.ZodArray<z.ZodUnknown, "many">;
|
|
10182
10214
|
options: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -10195,6 +10227,7 @@ declare const mcpContinuumDaoExplainProposalOutputSchema: z.ZodObject<{
|
|
|
10195
10227
|
risks: string[];
|
|
10196
10228
|
id?: number | undefined;
|
|
10197
10229
|
nWinners?: number | undefined;
|
|
10230
|
+
governorAddress?: string | undefined;
|
|
10198
10231
|
forumSection?: string | null | undefined;
|
|
10199
10232
|
forumCid?: number | null | undefined;
|
|
10200
10233
|
}, {
|
|
@@ -10211,6 +10244,7 @@ declare const mcpContinuumDaoExplainProposalOutputSchema: z.ZodObject<{
|
|
|
10211
10244
|
risks: string[];
|
|
10212
10245
|
id?: number | undefined;
|
|
10213
10246
|
nWinners?: number | undefined;
|
|
10247
|
+
governorAddress?: string | undefined;
|
|
10214
10248
|
forumSection?: string | null | undefined;
|
|
10215
10249
|
forumCid?: number | null | undefined;
|
|
10216
10250
|
}>;
|
package/dist/agent/catalog.js
CHANGED
|
@@ -3155,12 +3155,14 @@ var mcpContinuumDaoFetchProposalStateOutputSchema = z.object({
|
|
|
3155
3155
|
abstainVotes: z.string()
|
|
3156
3156
|
});
|
|
3157
3157
|
var mcpContinuumDaoFetchProposalsInputSchema = z.object({
|
|
3158
|
-
start: z.number().int().
|
|
3159
|
-
end: z.number().int().
|
|
3158
|
+
start: z.number().int().optional(),
|
|
3159
|
+
end: z.number().int().optional()
|
|
3160
3160
|
});
|
|
3161
3161
|
var mcpContinuumDaoFetchProposalsOutputSchema = z.object({
|
|
3162
3162
|
proposals: z.array(z.unknown()),
|
|
3163
|
-
total: z.number().optional()
|
|
3163
|
+
total: z.number().optional(),
|
|
3164
|
+
minIndex: z.number().optional(),
|
|
3165
|
+
maxIndex: z.number().optional()
|
|
3164
3166
|
});
|
|
3165
3167
|
var mcpContinuumDaoFetchProposalInputSchema = z.object({
|
|
3166
3168
|
id: z.union([z.string(), z.number()])
|
|
@@ -3173,6 +3175,7 @@ var liveProposalRowSchema = z.object({
|
|
|
3173
3175
|
onchainId: z.string(),
|
|
3174
3176
|
title: z.string(),
|
|
3175
3177
|
configuration: z.number().optional(),
|
|
3178
|
+
governorAddress: z.string().optional(),
|
|
3176
3179
|
state: z.number().nullable(),
|
|
3177
3180
|
stateLabel: z.string(),
|
|
3178
3181
|
bucket: z.enum(["live", "pending", "readyToExecute", "recentlyCompleted", "unknown"]),
|
|
@@ -3214,6 +3217,7 @@ var mcpContinuumDaoExplainProposalOutputSchema = z.object({
|
|
|
3214
3217
|
typeLabel: z.string(),
|
|
3215
3218
|
configuration: z.enum(["bravo", "delta"]),
|
|
3216
3219
|
nWinners: z.number().optional(),
|
|
3220
|
+
governorAddress: z.string().optional(),
|
|
3217
3221
|
briefing: z.string(),
|
|
3218
3222
|
actions: z.array(z.unknown()),
|
|
3219
3223
|
options: z.array(z.unknown()),
|
|
@@ -7452,7 +7456,7 @@ var CORE_MCP_TOOL_DEFINITIONS = [
|
|
|
7452
7456
|
actionId: "continuum-dao.fetch-proposal-state",
|
|
7453
7457
|
protocolId: "continuum-dao",
|
|
7454
7458
|
chainCategory: "evm",
|
|
7455
|
-
description: "Read ContinuumDAO.state and proposalVotes for an on-chain proposal id.",
|
|
7459
|
+
description: "Read ContinuumDAO.state and proposalVotes for an on-chain proposal id. Pass the proposal\u2019s own `governorAddress` when set \u2014 catalog ids -2 and -1 live on the superseded Linea governor 0x4800F9f1dC1b6daCA841B71E0531F547D374168E, not the current contract.",
|
|
7456
7460
|
prerequisites: ["rpcUrl", "proposalId", "governor"],
|
|
7457
7461
|
followUp: [
|
|
7458
7462
|
"ctm_continuum_dao_build_cast_vote_bravo_multisign",
|
|
@@ -7467,7 +7471,7 @@ var CORE_MCP_TOOL_DEFINITIONS = [
|
|
|
7467
7471
|
actionId: "continuum-dao.fetch-proposals",
|
|
7468
7472
|
protocolId: "continuum-dao",
|
|
7469
7473
|
chainCategory: "evm",
|
|
7470
|
-
description: "List proposals from the public ContinuumDAO backend (POST /proposals). Do not use this to answer \u201Cwhat is live now\u201D \u2014 use ctm_continuum_dao_fetch_live_proposals so on-chain state is overlaid.",
|
|
7474
|
+
description: "List proposals from the public ContinuumDAO backend (POST /proposals). start/end are catalog id indexes (end exclusive), not offsets, and may be negative: the superseded Linea governor 0x4800F9f1\u2026 is stored as ids -2 and -1 so the current contract can start at 0. Omit start/end to fetch the full catalog (minIndex..maxIndex). Do not use this to answer \u201Cwhat is live now\u201D \u2014 use ctm_continuum_dao_fetch_live_proposals so on-chain state is overlaid.",
|
|
7471
7475
|
prerequisites: [],
|
|
7472
7476
|
followUp: ["ctm_continuum_dao_fetch_live_proposals", "ctm_continuum_dao_fetch_proposal"],
|
|
7473
7477
|
handler: { importPath: "protocols/evm/continuum-dao", exportName: "continuumDaoFetchProposals" },
|
|
@@ -7479,7 +7483,7 @@ var CORE_MCP_TOOL_DEFINITIONS = [
|
|
|
7479
7483
|
actionId: "continuum-dao.fetch-proposal",
|
|
7480
7484
|
protocolId: "continuum-dao",
|
|
7481
7485
|
chainCategory: "evm",
|
|
7482
|
-
description: "Fetch one proposal from the public ContinuumDAO backend (GET /proposals/:id).",
|
|
7486
|
+
description: "Fetch one proposal from the public ContinuumDAO backend (GET /proposals/:id). Id may be negative: -2 and -1 are the two proposals from the superseded Linea governor 0x4800F9f1dC1b6daCA841B71E0531F547D374168E.",
|
|
7483
7487
|
prerequisites: ["id"],
|
|
7484
7488
|
followUp: ["ctm_continuum_dao_explain_proposal", "ctm_continuum_dao_fetch_proposal_state"],
|
|
7485
7489
|
handler: { importPath: "protocols/evm/continuum-dao", exportName: "continuumDaoFetchProposal" },
|
|
@@ -7491,7 +7495,7 @@ var CORE_MCP_TOOL_DEFINITIONS = [
|
|
|
7491
7495
|
actionId: "continuum-dao.fetch-live-proposals",
|
|
7492
7496
|
protocolId: "continuum-dao",
|
|
7493
7497
|
chainCategory: "evm",
|
|
7494
|
-
description: "Answer \u201Cwhat proposals are live now?\u201D. Lists the backend catalog and overlays ContinuumDAO.state. live = Active (voting). pending = Pending. readyToExecute = Succeeded (execute from here; no queue). recentlyCompleted = Canceled/Defeated/Expired/Executed in this scan. Requires Linea chainId + rpcUrl + governor for on-chain overlay. Read the `note` field aloud.",
|
|
7498
|
+
description: "Answer \u201Cwhat proposals are live now?\u201D. Lists the backend catalog (including negative ids on the superseded Linea governor) and overlays ContinuumDAO.state using each row\u2019s governorAddress. live = Active (voting). pending = Pending. readyToExecute = Succeeded (execute from here; no queue). recentlyCompleted = Canceled/Defeated/Expired/Executed in this scan. Requires Linea chainId + rpcUrl + governor for on-chain overlay. Read the `note` field aloud.",
|
|
7495
7499
|
prerequisites: ["load_defi_protocol continuum-dao", "Linea chainId 59144 or 59141", "rpcUrl", "governor if constant is zero"],
|
|
7496
7500
|
followUp: [
|
|
7497
7501
|
"ctm_continuum_dao_explain_proposal",
|
|
@@ -7508,7 +7512,7 @@ var CORE_MCP_TOOL_DEFINITIONS = [
|
|
|
7508
7512
|
actionId: "continuum-dao.explain-proposal",
|
|
7509
7513
|
protocolId: "continuum-dao",
|
|
7510
7514
|
chainCategory: "evm",
|
|
7511
|
-
description: "Deconstruct a ContinuumDAO proposal for the operator. Walks every user action (Bravo) or every option (Delta), labels encoder no-ops as signaling, flags C3 / value / approve / unknown signatures, and checks the forum thread section against the proposal type. Read the `briefing` field aloud. Does not vote. For a policy recommendation load the mpc-config continuum-dao-vote-policy skill.",
|
|
7515
|
+
description: "Deconstruct a ContinuumDAO proposal for the operator. Walks every user action (Bravo) or every option (Delta), labels encoder no-ops as signaling, flags C3 / value / approve / unknown signatures, and checks the forum thread section against the proposal type. `network.c3governor` is always present; an action is C3-remote only when network.name is not Linea (home chain 59144 / 59141). Read the `briefing` field aloud. Does not vote. For a policy recommendation load the mpc-config continuum-dao-vote-policy skill.",
|
|
7512
7516
|
prerequisites: ["id (backend) or onchainId"],
|
|
7513
7517
|
followUp: ["ctm_continuum_dao_fetch_proposal_state", "ctm_continuum_dao_forum_fetch_thread"],
|
|
7514
7518
|
handler: { importPath: "protocols/evm/continuum-dao", exportName: "continuumDaoExplainProposal" },
|
|
@@ -10063,6 +10067,8 @@ var UNSET = {
|
|
|
10063
10067
|
};
|
|
10064
10068
|
var CTM_TOKEN_ADDRESS = getAddress("0x2026027054F5beBCEB650aBD62dC623e327658e7");
|
|
10065
10069
|
var VOTING_ESCROW_LINEA_ADDRESS = getAddress("0x221EC90B3B083A8501A37bdeb7035CeaedF3C31f");
|
|
10070
|
+
getAddress("0x76FF2CB03175900F1D83328C82D27EA9aeaF2355");
|
|
10071
|
+
getAddress("0x4800F9f1dC1b6daCA841B71E0531F547D374168E");
|
|
10066
10072
|
var CONTINUUM_DAO_DEPLOYMENTS = {
|
|
10067
10073
|
[CONTINUUM_DAO_LINEA_CHAIN_ID]: {
|
|
10068
10074
|
...UNSET,
|