-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
54 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.17; | ||
|
||
import { DeployBase } from "./DeployBase.s.sol"; | ||
|
||
contract DeployBaseSepolia is DeployBase { | ||
/// @notice The address to transfer the ownership of the Authorship Token | ||
/// to. | ||
address constant AUTHORSHIP_TOKEN_OWNER = 0xA85572Cd96f1643458f17340b6f0D6549Af482F5; | ||
|
||
/// @notice The address to transfer the ownership of Curta to. | ||
address constant CURTA_OWNER = 0xA85572Cd96f1643458f17340b6f0D6549Af482F5; | ||
|
||
/// @notice The number of seconds until an additional token is made | ||
/// available for minting by the author. | ||
uint256 constant ISSUE_LENGTH = 3 days; | ||
|
||
/// @notice Address of the create2 factory used for deploying | ||
/// the `FlagRenderer` and `AuthorshipToken` contracts. | ||
address constant CREATE2FACTORY = 0x0000000000FFe8B47B3e2130213B802212439497; | ||
|
||
/// @notice The list of authors in the initial batch. | ||
address[] internal AUTHORS = [ | ||
// chainlight.io | ||
0xB49bf876BE26435b6fae1Ef42C3c82c5867Fa149, | ||
0xB49bf876BE26435b6fae1Ef42C3c82c5867Fa149, | ||
0xB49bf876BE26435b6fae1Ef42C3c82c5867Fa149, | ||
0xB49bf876BE26435b6fae1Ef42C3c82c5867Fa149, | ||
0xB49bf876BE26435b6fae1Ef42C3c82c5867Fa149, | ||
0xB49bf876BE26435b6fae1Ef42C3c82c5867Fa149, | ||
0xB49bf876BE26435b6fae1Ef42C3c82c5867Fa149, | ||
0xB49bf876BE26435b6fae1Ef42C3c82c5867Fa149, | ||
0xB49bf876BE26435b6fae1Ef42C3c82c5867Fa149, | ||
0xB49bf876BE26435b6fae1Ef42C3c82c5867Fa149, | ||
// fiveoutofnine.eth | ||
0xA85572Cd96f1643458f17340b6f0D6549Af482F5, | ||
0xA85572Cd96f1643458f17340b6f0D6549Af482F5, | ||
0xA85572Cd96f1643458f17340b6f0D6549Af482F5, | ||
0xA85572Cd96f1643458f17340b6f0D6549Af482F5, | ||
0xA85572Cd96f1643458f17340b6f0D6549Af482F5, | ||
// sabnock.eth | ||
0xDbAacdcadD7c51a325B771ff75B261a1e7baE11c, | ||
0xDbAacdcadD7c51a325B771ff75B261a1e7baE11c, | ||
0xDbAacdcadD7c51a325B771ff75B261a1e7baE11c | ||
]; | ||
|
||
constructor() DeployBase(CREATE2FACTORY, AUTHORSHIP_TOKEN_OWNER, CURTA_OWNER, ISSUE_LENGTH, AUTHORS) { } | ||
} |