-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding flip 310 - Removing Equilibrium from the service account commi…
…ttee
- Loading branch information
1 parent
05359ab
commit d033dea
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
governance/20241115-removing-qquilibrium-from-multi-sig.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
Status: Proposed | ||
Flip: 310 | ||
Authors: Vishal Changrani | ||
Sponsor: Vishal Changrani | ||
Updated: 2024-11-15 | ||
--- | ||
|
||
# FLIP 310: Removing Equilibrium as a multi-signer | ||
|
||
## Proposal | ||
Remove Equilibrium from the service account committee (multi-signer) as they no longer wish to continue to be signer. | ||
|
||
## Implementation | ||
|
||
The key index for equilibrium is 8 on the service account and 2 on the staking account. | ||
|
||
The key will be removed by executing the following transaction: | ||
|
||
### Transaction for service account | ||
|
||
``` | ||
transaction { | ||
prepare(signer: auth(RevokeKey) &Account) { | ||
signer.keys.revoke(keyIndex: 8) | ||
} | ||
} | ||
``` | ||
|
||
### Transaction for staking account | ||
|
||
``` | ||
transaction { | ||
prepare(signer: auth(RevokeKey) &Account) { | ||
signer.keys.revoke(keyIndex: 2) | ||
} | ||
} | ||
``` |