-
Notifications
You must be signed in to change notification settings - Fork 382
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into veboostv2-deployment
* master: Remove salt from veboost domain separator and expose version (#2085) Add totalSupply to VotingEscrowDelegationProxy (#2098) Deploy L2 Gauge Checkpointer (#2114) Nuke distributors package (#2111) Replace gauge manager with authorizer adaptor (#2108) Deployment preparation: L2 gauge checkpointer (#1601)
- Loading branch information
Showing
42 changed files
with
730 additions
and
1,970 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
214 changes: 214 additions & 0 deletions
214
pkg/deployments/tasks/20221205-l2-gauge-checkpointer/artifact/L2GaugeCheckpointer.json
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
pkg/deployments/tasks/20221205-l2-gauge-checkpointer/build-info/L2GaugeCheckpointer.json
Large diffs are not rendered by default.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
pkg/deployments/tasks/20221205-l2-gauge-checkpointer/index.ts
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,10 @@ | ||
import Task from '../../src/task'; | ||
import { TaskRunOptions } from '../../src/types'; | ||
import { L2GaugeCheckpointerDeployment } from './input'; | ||
|
||
export default async (task: Task, { force, from }: TaskRunOptions = {}): Promise<void> => { | ||
const input = task.input() as L2GaugeCheckpointerDeployment; | ||
|
||
const args = [input.GaugeAdder]; | ||
await task.deployAndVerify('L2GaugeCheckpointer', args, from, force); | ||
}; |
11 changes: 11 additions & 0 deletions
11
pkg/deployments/tasks/20221205-l2-gauge-checkpointer/input.ts
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,11 @@ | ||
import Task, { TaskMode } from '../../src/task'; | ||
|
||
export type L2GaugeCheckpointerDeployment = { | ||
GaugeAdder: string; | ||
}; | ||
|
||
const GaugeAdder = new Task('20220628-gauge-adder-v2', TaskMode.READ_ONLY); | ||
|
||
export default { | ||
GaugeAdder, | ||
}; |
3 changes: 3 additions & 0 deletions
3
pkg/deployments/tasks/20221205-l2-gauge-checkpointer/output/goerli.json
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,3 @@ | ||
{ | ||
"L2GaugeCheckpointer": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843" | ||
} |
3 changes: 3 additions & 0 deletions
3
pkg/deployments/tasks/20221205-l2-gauge-checkpointer/output/mainnet.json
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,3 @@ | ||
{ | ||
"L2GaugeCheckpointer": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843" | ||
} |
9 changes: 9 additions & 0 deletions
9
pkg/deployments/tasks/20221205-l2-gauge-checkpointer/readme.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,9 @@ | ||
# 2022-12-05 - L2 Gauge Checkpointer | ||
|
||
Deployment of the `L2GaugeCheckpointer` contract. It automates the process of performing checkpoints to stakeless root gauges. | ||
|
||
## Useful Files | ||
|
||
- [Ethereum mainnet addresses](./output/mainnet.json) | ||
- [Goerli addresses](./output/goerli.json) | ||
- [`L2GaugeCheckpointer` artifact](./artifact/L2GaugeCheckpointer.json) |
Oops, something went wrong.