Skip to content

Commit

Permalink
adding flip 310 - Removing Equilibrium from the service account commi…
Browse files Browse the repository at this point in the history
…ttee
  • Loading branch information
vishalchangrani committed Nov 15, 2024
1 parent 05359ab commit d033dea
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions governance/20241115-removing-qquilibrium-from-multi-sig.md
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)
}
}
```

0 comments on commit d033dea

Please sign in to comment.