From 59895e9b946e4bdecbd5dfecd903866461afcd3c Mon Sep 17 00:00:00 2001
From: amanwithwings <68982632+amanwithwings@users.noreply.github.com>
Date: Thu, 5 Feb 2026 16:07:00 +0530
Subject: [PATCH 1/7] Update _constitution-content-partial.md
Fixed typos, added definition (Delegated Votable Tokens) and updated the quorum computation logic
---
docs/partials/_constitution-content-partial.md | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/docs/partials/_constitution-content-partial.md b/docs/partials/_constitution-content-partial.md
index baa1f4b5..0c485ec0 100644
--- a/docs/partials/_constitution-content-partial.md
+++ b/docs/partials/_constitution-content-partial.md
@@ -11,6 +11,7 @@ the ArbitrumDAO took effect on the date upon which AIP-1 was posted, located at
Governed Chains: Any ArbitrumDAO-approved chains that are governed by the $ARB token
Non-Governed Chains: Any ArbitrumDAO-approved chains that are not governed by the $ARB token
Votable Tokens: All $ARB tokens in existence, excluding any tokens held by The Arbitrum Foundation and any unclaimed airdrops
+ Delegated Votable Tokens: The sum of Votable Tokens currently delegated and eligible for governance participation
Section 1: Chain "ownership"
This Constitution describes the decision-making framework for the ArbitrumDAO governance and/or authorization of the ArbitrumDAO-approved chains. The DAO may authorize the creation of additional Layer-2 chains that settle to Ethereum using the Arbitrum technology, but each such additional Layer-2 chain must be authorized by a corresponding AIP (i.e., no more than one chain may be authorized in each AIP). Any chain that is so authorized may be governed by the $ARB token and this Constitution, in which case, such chain would be deemed a Governed Chain. Any chain that is authorized but not governed by the $ARB token will be deemed a Non-Governed Chain. For the avoidance of doubt, any ArbitrumDAO-approved chain (whether a Governed Chain or a Non-Governed Chain) must settle to or on Ethereum. Chains utilizing Arbitrum technology that settle to or on ArbitrumDAO-approved chains (i.e., as “layer 3s”) do not require ArbitrumDAO authorization.
@@ -34,7 +35,7 @@ the ArbitrumDAO took effect on the date upon which AIP-1 was posted, located at
Recommended guideline: DAO members should vote against any AIP that is incorrectly labeled.
A Non-Constitutional AIP is one that is not considered a "Constitutional AIP" including:
- - Funding: Requests funds/grants or otherwise propose how to spend or allocate funds from the DAO Treasury and, so long as The Arbitrum Foundation exists, the Administrative Budget Wallet as defined in the The Arbitrum Foundation’s Amended & Restated Bylaws
+ - Funding: Requests funds/grants or otherwise propose how to spend or allocate funds from the DAO Treasury and, so long as The Arbitrum Foundation exists, the Administrative Budget Wallet as defined in The Arbitrum Foundation’s Amended & Restated Bylaws
- Informational: Provides general guidelines or information to the community but does not otherwise propose a new feature or update
Each AIP must also clearly specify which Governed Chain(s) it will affect (this may be specified by code, data, or text, as appropriate for the specific AIP).
@@ -62,12 +63,12 @@ the ArbitrumDAO took effect on the date upon which AIP-1 was posted, located at
Phase 3: DAO votes on AIP, on Arbitrum One (14-16 days): During this Phase 3, the ArbitrumDAO will be able to vote directly on-chain on a submitted AIP.
An AIP passes if the following 2 conditions are met:
- - More Votable Tokens have casted votes "in favor" than have casted votes "against" ("Threshold 1"); and
+ - More Votable Tokens have cast votes "in favor" than have cast votes "against" ("Threshold 1"); and
-
In the case of a:
- - Constitutional AIP, at least 4.5% of all Votable Tokens have casted votes either "in favor" or "abstain"; or
- - Non-Constitutional AIP, at least 3% of all Votable Tokens have casted votes either "in favor" or "abstain" (collectively, "Threshold 2").
+ - Constitutional AIP, at least 50% of all Delegated Votable Tokens, as well as a minimum of 150 million $ARB and a maximum of 450 million $ARB, have cast votes either "in favor" or "abstain"; or
+ - Non-Constitutional AIP, at least 40% of all Delegated Votable Tokens, as well as a minimum of 100 million $ARB and a maximum of 300 million $ARB, have cast votes either "in favor" or "abstain" (collectively, "Threshold 2").
@@ -117,7 +118,7 @@ the ArbitrumDAO took effect on the date upon which AIP-1 was posted, located at
The DAO may approve and implement a Constitutional AIP to change the rules governing future Security Council elections, but the AIP process may not be used to intervene in an ongoing election.
Security Council members may only be removed prior to the end of their terms under two conditions:
- - At least 10% of all Votable Tokens have casted votes either "in favor" of removal or "abstain", and at least 5/6 (83.33%) of all casted votes are "in favor" of removal; or
+ - At least 10% of all Votable Tokens have cast votes either "in favor" of removal or "abstain", and at least 5/6 (83.33%) of all cast votes are "in favor" of removal; or
- At least 9 of the Security Council members vote in favor of removal.
The seats of Security Council members who have been removed prior to the end of their respective terms shall remain unfilled until the next election that such seats are up for appointment, unless otherwise replaced prior to such next election by a vote of at least 9 of the Security Council members, in which case such seat shall be up for appointment at the next such election. The Security Council may not re-appoint a removed member and they can only be re-elected via the election voting system.
From 3c93ad30d14dbf7accae040ac18ef9231e135ff6 Mon Sep 17 00:00:00 2001
From: Amandeep
Date: Thu, 5 Feb 2026 16:41:46 +0530
Subject: [PATCH 2/7] Update constitution hash
---
src/components/ConstitutionHash/constitutionHash.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/ConstitutionHash/constitutionHash.json b/src/components/ConstitutionHash/constitutionHash.json
index eb957940..1b82555b 100644
--- a/src/components/ConstitutionHash/constitutionHash.json
+++ b/src/components/ConstitutionHash/constitutionHash.json
@@ -1 +1 @@
-{"constitutionHash":"0xaab5f245cfb0475d03f6a323db09181ec9c25e5d95c6c6d660660242cfed8630"}
\ No newline at end of file
+{"constitutionHash":"0xf53340398f307de45da501301568fe085900d31e3b8daec97edcea9f6340fb81"}
\ No newline at end of file
From e9ff77555f75da65104f460bd87ac22b78fa4170 Mon Sep 17 00:00:00 2001
From: amanwithwings <68982632+amanwithwings@users.noreply.github.com>
Date: Thu, 12 Feb 2026 17:24:20 +0100
Subject: [PATCH 3/7] Update _constitution-content-partial.md
---
.../partials/_constitution-content-partial.md | 31 ++++++++++++++++---
1 file changed, 26 insertions(+), 5 deletions(-)
diff --git a/docs/partials/_constitution-content-partial.md b/docs/partials/_constitution-content-partial.md
index 0c485ec0..cff27443 100644
--- a/docs/partials/_constitution-content-partial.md
+++ b/docs/partials/_constitution-content-partial.md
@@ -7,11 +7,11 @@ the ArbitrumDAO took effect on the date upon which AIP-1 was posted, located at
- AIP: An Arbitrum Improvement Proposal
- ArbitrumDAO-governed chains: The Arbitrum One and Arbitrum Nova chains and any additional chains authorized by the ArbitrumDAO
- - DAO Treasury: All $ARB tokens held in a governance smart contract governed directly by the ArbitrumDAO and/or the Security Council of The Arbitrum Foundation via on-chain voting mechanisms.
+ - DAO Treasury: All $ARB tokens held in a governance smart contract governed directly by the ArbitrumDAO and/or the Security Council of The Arbitrum Foundation via on-chain voting mechanisms
+ - Delegated Votable Tokens: The number of all Votable Tokens that have been delegated and eligible to vote on AIPs
- Governed Chains: Any ArbitrumDAO-approved chains that are governed by the $ARB token
- Non-Governed Chains: Any ArbitrumDAO-approved chains that are not governed by the $ARB token
- Votable Tokens: All $ARB tokens in existence, excluding any tokens held by The Arbitrum Foundation and any unclaimed airdrops
- - Delegated Votable Tokens: The sum of Votable Tokens currently delegated and eligible for governance participation
Section 1: Chain "ownership"
This Constitution describes the decision-making framework for the ArbitrumDAO governance and/or authorization of the ArbitrumDAO-approved chains. The DAO may authorize the creation of additional Layer-2 chains that settle to Ethereum using the Arbitrum technology, but each such additional Layer-2 chain must be authorized by a corresponding AIP (i.e., no more than one chain may be authorized in each AIP). Any chain that is so authorized may be governed by the $ARB token and this Constitution, in which case, such chain would be deemed a Governed Chain. Any chain that is authorized but not governed by the $ARB token will be deemed a Non-Governed Chain. For the avoidance of doubt, any ArbitrumDAO-approved chain (whether a Governed Chain or a Non-Governed Chain) must settle to or on Ethereum. Chains utilizing Arbitrum technology that settle to or on ArbitrumDAO-approved chains (i.e., as “layer 3s”) do not require ArbitrumDAO authorization.
@@ -65,10 +65,31 @@ the ArbitrumDAO took effect on the date upon which AIP-1 was posted, located at
- More Votable Tokens have cast votes "in favor" than have cast votes "against" ("Threshold 1"); and
-
- In the case of a:
+ ("Threshold 2") In the case of a:
- - Constitutional AIP, at least 50% of all Delegated Votable Tokens, as well as a minimum of 150 million $ARB and a maximum of 450 million $ARB, have cast votes either "in favor" or "abstain"; or
- - Non-Constitutional AIP, at least 40% of all Delegated Votable Tokens, as well as a minimum of 100 million $ARB and a maximum of 300 million $ARB, have cast votes either "in favor" or "abstain" (collectively, "Threshold 2").
+ - Constitutional AIP, at least a number of all Delegated Votable Tokens have cast votes either "in favor" or "abstain", determined in accordance with the below formula:
+
+ -
+ If the product of 0.5 and the Delegated Votable Tokens ("Preliminary Constitutional Quorum Value") is less than 150,000,000, then 150,000,000 applies; or
+
+ -
+ If the Preliminary Constitutional Quorum Value is greater than 150,000,000, but less than 450,000,000, then the Preliminary Constitutional Quorum Value applies; or
+
+ -
+ If the Preliminary Non-Constitutional Quorum Value is greater than 450,000,000, then 450,000,000 applies.
+
+
+ - Non-Constitutional AIP, at least a number of all Delegated Votable Tokens have cast votes either "in favor" or "abstain", determined in accordance with the below formula:
+
+ -
+ If the product of 0.4 and the Delegated Votable Tokens ("Preliminary Non-Constitutional Quorum Value") is less than 100,000,000, then 100,000,000 applies; or
+
+ -
+ If the Preliminary Non-Constitutional Quorum Value is greater than 100,000,000, but less than 300,000,000, then the Preliminary Non-Constitutional Quorum Value applies; or
+
+ -
+ If the Non-Preliminary Constitutional Quorum Value is greater than 300,000,000, then 300,000,000 applies.
+
From 0b083c882f0f27207fe274b46ec256804e4cfdee Mon Sep 17 00:00:00 2001
From: Amandeep
Date: Thu, 12 Feb 2026 17:42:39 +0100
Subject: [PATCH 4/7] Update constitution hash
---
src/components/ConstitutionHash/constitutionHash.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/ConstitutionHash/constitutionHash.json b/src/components/ConstitutionHash/constitutionHash.json
index 1b82555b..80588320 100644
--- a/src/components/ConstitutionHash/constitutionHash.json
+++ b/src/components/ConstitutionHash/constitutionHash.json
@@ -1 +1 @@
-{"constitutionHash":"0xf53340398f307de45da501301568fe085900d31e3b8daec97edcea9f6340fb81"}
\ No newline at end of file
+{"constitutionHash":"0xa6fa91d81ecd657bdedd1973019f20ea46aa6023a39091d32fa8f8022fba0c1c"}
\ No newline at end of file
From 315519660c7fc8ec3b5c2b77d1f8c2e9e73692eb Mon Sep 17 00:00:00 2001
From: amanwithwings <68982632+amanwithwings@users.noreply.github.com>
Date: Fri, 13 Feb 2026 13:17:40 +0100
Subject: [PATCH 5/7] Update _constitution-content-partial.md
Minor edits to phrasing (non-preliminary constitutional -> preliminary non-constitutional)
---
docs/partials/_constitution-content-partial.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/partials/_constitution-content-partial.md b/docs/partials/_constitution-content-partial.md
index cff27443..144a57be 100644
--- a/docs/partials/_constitution-content-partial.md
+++ b/docs/partials/_constitution-content-partial.md
@@ -88,7 +88,7 @@ the ArbitrumDAO took effect on the date upon which AIP-1 was posted, located at
If the Preliminary Non-Constitutional Quorum Value is greater than 100,000,000, but less than 300,000,000, then the Preliminary Non-Constitutional Quorum Value applies; or
- If the Non-Preliminary Constitutional Quorum Value is greater than 300,000,000, then 300,000,000 applies.
+ If the Preliminary Non-Constitutional Quorum Value is greater than 300,000,000, then 300,000,000 applies.
From 2863d038d6e93c8cc5c59fa82054905174fe00db Mon Sep 17 00:00:00 2001
From: amanwithwings <68982632+amanwithwings@users.noreply.github.com>
Date: Fri, 13 Feb 2026 13:20:22 +0100
Subject: [PATCH 6/7] Update _constitution-content-partial.md
---
docs/partials/_constitution-content-partial.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/partials/_constitution-content-partial.md b/docs/partials/_constitution-content-partial.md
index 144a57be..b8104ba4 100644
--- a/docs/partials/_constitution-content-partial.md
+++ b/docs/partials/_constitution-content-partial.md
@@ -76,7 +76,7 @@ the ArbitrumDAO took effect on the date upon which AIP-1 was posted, located at
If the Preliminary Constitutional Quorum Value is greater than 150,000,000, but less than 450,000,000, then the Preliminary Constitutional Quorum Value applies; or
- If the Preliminary Non-Constitutional Quorum Value is greater than 450,000,000, then 450,000,000 applies.
+ If the Preliminary Constitutional Quorum Value is greater than 450,000,000, then 450,000,000 applies.
Non-Constitutional AIP, at least a number of all Delegated Votable Tokens have cast votes either "in favor" or "abstain", determined in accordance with the below formula:
From 001d57cfc17a2fd6c7f23a01ff99c351480c3e69 Mon Sep 17 00:00:00 2001
From: Amandeep
Date: Fri, 13 Feb 2026 17:43:32 +0100
Subject: [PATCH 7/7] Update constitution hash
---
src/components/ConstitutionHash/constitutionHash.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/ConstitutionHash/constitutionHash.json b/src/components/ConstitutionHash/constitutionHash.json
index 80588320..38b29d72 100644
--- a/src/components/ConstitutionHash/constitutionHash.json
+++ b/src/components/ConstitutionHash/constitutionHash.json
@@ -1 +1 @@
-{"constitutionHash":"0xa6fa91d81ecd657bdedd1973019f20ea46aa6023a39091d32fa8f8022fba0c1c"}
\ No newline at end of file
+{"constitutionHash":"0x263080bed3962d0476fa84fbb32ab81dfff1244e2b145f9864da24353b2f3b05"}
\ No newline at end of file