Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
bcdddee8
Commit
bcdddee8
authored
Aug 09, 2023
by
Mark Tyneway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
semver: bumps
Co-authored-by:
refcell.eth
<
abigger87@gmail.com
>
parent
e3ee3968
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
AttestationStation.sol
...racts-bedrock/src/periphery/op-nft/AttestationStation.sol
+2
-2
Optimist.sol
packages/contracts-bedrock/src/periphery/op-nft/Optimist.sol
+2
-2
OptimistAllowlist.sol
...tracts-bedrock/src/periphery/op-nft/OptimistAllowlist.sol
+2
-2
OptimistInviter.sol
...ontracts-bedrock/src/periphery/op-nft/OptimistInviter.sol
+2
-2
No files found.
packages/contracts-bedrock/src/periphery/op-nft/AttestationStation.sol
View file @
bcdddee8
...
@@ -28,8 +28,8 @@ contract AttestationStation is Semver {
...
@@ -28,8 +28,8 @@ contract AttestationStation is Semver {
/// @param val Value of the attestation.
/// @param val Value of the attestation.
event AttestationCreated(address indexed creator, address indexed about, bytes32 indexed key, bytes val);
event AttestationCreated(address indexed creator, address indexed about, bytes32 indexed key, bytes val);
/// @custom:semver 1.1.
1
/// @custom:semver 1.1.
2
constructor() Semver(1, 1,
1
) { }
constructor() Semver(1, 1,
2
) { }
/// @notice Allows anyone to create an attestation.
/// @notice Allows anyone to create an attestation.
/// @param _about Address that the attestation is about.
/// @param _about Address that the attestation is about.
...
...
packages/contracts-bedrock/src/periphery/op-nft/Optimist.sol
View file @
bcdddee8
...
@@ -25,7 +25,7 @@ contract Optimist is ERC721BurnableUpgradeable, Semver {
...
@@ -25,7 +25,7 @@ contract Optimist is ERC721BurnableUpgradeable, Semver {
/// @notice Address of the OptimistAllowlist contract.
/// @notice Address of the OptimistAllowlist contract.
OptimistAllowlist public immutable OPTIMIST_ALLOWLIST;
OptimistAllowlist public immutable OPTIMIST_ALLOWLIST;
/// @custom:semver 2.0.
1
/// @custom:semver 2.0.
2
/// @param _name Token name.
/// @param _name Token name.
/// @param _symbol Token symbol.
/// @param _symbol Token symbol.
/// @param _baseURIAttestor Address of the baseURI attestor.
/// @param _baseURIAttestor Address of the baseURI attestor.
...
@@ -38,7 +38,7 @@ contract Optimist is ERC721BurnableUpgradeable, Semver {
...
@@ -38,7 +38,7 @@ contract Optimist is ERC721BurnableUpgradeable, Semver {
AttestationStation _attestationStation,
AttestationStation _attestationStation,
OptimistAllowlist _optimistAllowlist
OptimistAllowlist _optimistAllowlist
)
)
Semver(2, 0,
1
)
Semver(2, 0,
2
)
{
{
BASE_URI_ATTESTOR = _baseURIAttestor;
BASE_URI_ATTESTOR = _baseURIAttestor;
ATTESTATION_STATION = _attestationStation;
ATTESTATION_STATION = _attestationStation;
...
...
packages/contracts-bedrock/src/periphery/op-nft/OptimistAllowlist.sol
View file @
bcdddee8
...
@@ -30,7 +30,7 @@ contract OptimistAllowlist is Semver {
...
@@ -30,7 +30,7 @@ contract OptimistAllowlist is Semver {
/// attestations.
/// attestations.
address public immutable OPTIMIST_INVITER;
address public immutable OPTIMIST_INVITER;
/// @custom:semver 1.0.
1
/// @custom:semver 1.0.
2
/// @param _attestationStation Address of the AttestationStation contract.
/// @param _attestationStation Address of the AttestationStation contract.
/// @param _allowlistAttestor Address of the allowlist attestor.
/// @param _allowlistAttestor Address of the allowlist attestor.
/// @param _coinbaseQuestAttestor Address of the Coinbase Quest attestor.
/// @param _coinbaseQuestAttestor Address of the Coinbase Quest attestor.
...
@@ -41,7 +41,7 @@ contract OptimistAllowlist is Semver {
...
@@ -41,7 +41,7 @@ contract OptimistAllowlist is Semver {
address _coinbaseQuestAttestor,
address _coinbaseQuestAttestor,
address _optimistInviter
address _optimistInviter
)
)
Semver(1, 0,
1
)
Semver(1, 0,
2
)
{
{
ATTESTATION_STATION = _attestationStation;
ATTESTATION_STATION = _attestationStation;
ALLOWLIST_ATTESTOR = _allowlistAttestor;
ALLOWLIST_ATTESTOR = _allowlistAttestor;
...
...
packages/contracts-bedrock/src/periphery/op-nft/OptimistInviter.sol
View file @
bcdddee8
...
@@ -87,10 +87,10 @@ contract OptimistInviter is Semver, EIP712Upgradeable {
...
@@ -87,10 +87,10 @@ contract OptimistInviter is Semver, EIP712Upgradeable {
/// @notice Maps from addresses to number of invites they have.
/// @notice Maps from addresses to number of invites they have.
mapping(address => uint256) public inviteCounts;
mapping(address => uint256) public inviteCounts;
/// @custom:semver 1.0.
1
/// @custom:semver 1.0.
2
/// @param _inviteGranter Address of the invite granter.
/// @param _inviteGranter Address of the invite granter.
/// @param _attestationStation Address of the AttestationStation contract.
/// @param _attestationStation Address of the AttestationStation contract.
constructor(address _inviteGranter, AttestationStation _attestationStation) Semver(1, 0,
1
) {
constructor(address _inviteGranter, AttestationStation _attestationStation) Semver(1, 0,
2
) {
INVITE_GRANTER = _inviteGranter;
INVITE_GRANTER = _inviteGranter;
ATTESTATION_STATION = _attestationStation;
ATTESTATION_STATION = _attestationStation;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment