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
eb203036
Commit
eb203036
authored
Aug 09, 2023
by
Mark Tyneway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
semver: fix
parent
aaa3c190
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
10 deletions
+10
-10
optimismmintableerc20factory.go
op-bindings/bindings/optimismmintableerc20factory.go
+1
-1
optimismmintableerc721factory.go
op-bindings/bindings/optimismmintableerc721factory.go
+1
-1
optimismmintableerc721factory_more.go
op-bindings/bindings/optimismmintableerc721factory_more.go
+1
-1
semver-lock.json
packages/contracts-bedrock/semver-lock.json
+3
-3
OptimismMintableERC20Factory.sol
...ts-bedrock/src/universal/OptimismMintableERC20Factory.sol
+2
-2
OptimismMintableERC721.sol
...ontracts-bedrock/src/universal/OptimismMintableERC721.sol
+2
-2
No files found.
op-bindings/bindings/optimismmintableerc20factory.go
View file @
eb203036
This diff is collapsed.
Click to expand it.
op-bindings/bindings/optimismmintableerc721factory.go
View file @
eb203036
This diff is collapsed.
Click to expand it.
op-bindings/bindings/optimismmintableerc721factory_more.go
View file @
eb203036
This diff is collapsed.
Click to expand it.
packages/contracts-bedrock/semver-lock.json
View file @
eb203036
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
"src/periphery/op-nft/OptimistAllowlist.sol"
:
"0x53e9a9dfecbae036fd468e8f34c80c7d9c35bd8908c8a6483db44dbc5128ad69"
,
"src/periphery/op-nft/OptimistAllowlist.sol"
:
"0x53e9a9dfecbae036fd468e8f34c80c7d9c35bd8908c8a6483db44dbc5128ad69"
,
"src/periphery/op-nft/OptimistInviter.sol"
:
"0xfdd5b9d45205ef9372ba37f7a6394724695e676d27a47cb154ee6e4148490013"
,
"src/periphery/op-nft/OptimistInviter.sol"
:
"0xfdd5b9d45205ef9372ba37f7a6394724695e676d27a47cb154ee6e4148490013"
,
"src/universal/OptimismMintableERC20.sol"
:
"0xddb1f0047ee90db724405ad6a775fd2b26882cbc31d464c3def2c20c88aaf750"
,
"src/universal/OptimismMintableERC20.sol"
:
"0xddb1f0047ee90db724405ad6a775fd2b26882cbc31d464c3def2c20c88aaf750"
,
"src/universal/OptimismMintableERC20Factory.sol"
:
"0x
fb32cda24ca85092833336e9f61570084cc738b76d11e77c7708c538ce818435
"
,
"src/universal/OptimismMintableERC20Factory.sol"
:
"0x
1c77e31f624d0a7306dec8ffc3947a72f8e1e93a01cd911b4561c038732ab7fe
"
,
"src/universal/OptimismMintableERC721.sol"
:
"0x
55f2656ba5933ee64d1278030eb90f10e9b4305307ed8ba6ab7a72971d40f5b8
"
,
"src/universal/OptimismMintableERC721.sol"
:
"0x
4eaa5ea0d923ce967f299c2ded84c2a53431159c47c0a344a9b8f534a25b7e1f
"
,
"src/universal/OptimismMintableERC721Factory.sol"
:
"0x
5529bc0f7653adfba9e52846752a70f3ce050a86e468d781e9bf89f0cc0f174f
"
"src/universal/OptimismMintableERC721Factory.sol"
:
"0x
6c19bc51bf9184aafad46f292bf9c23cc87c3406f31cccf57d4e3e096b887a8d
"
}
}
\ No newline at end of file
packages/contracts-bedrock/src/universal/OptimismMintableERC20Factory.sol
View file @
eb203036
...
@@ -28,12 +28,12 @@ contract OptimismMintableERC20Factory is Semver {
...
@@ -28,12 +28,12 @@ contract OptimismMintableERC20Factory is Semver {
/// @param deployer Address of the account that deployed the token.
/// @param deployer Address of the account that deployed the token.
event OptimismMintableERC20Created(address indexed localToken, address indexed remoteToken, address deployer);
event OptimismMintableERC20Created(address indexed localToken, address indexed remoteToken, address deployer);
/// @custom:semver 1.1.
3
/// @custom:semver 1.1.
2
/// @notice The semver MUST be bumped any time that there is a change in
/// @notice The semver MUST be bumped any time that there is a change in
/// the OptimismMintableERC20 token contract since this contract
/// the OptimismMintableERC20 token contract since this contract
/// is responsible for deploying OptimismMintableERC20 contracts.
/// is responsible for deploying OptimismMintableERC20 contracts.
/// @param _bridge Address of the StandardBridge on this chain.
/// @param _bridge Address of the StandardBridge on this chain.
constructor(address _bridge) Semver(1, 1,
3
) {
constructor(address _bridge) Semver(1, 1,
2
) {
BRIDGE = _bridge;
BRIDGE = _bridge;
}
}
...
...
packages/contracts-bedrock/src/universal/OptimismMintableERC721.sol
View file @
eb203036
...
@@ -31,7 +31,7 @@ contract OptimismMintableERC721 is ERC721Enumerable, IOptimismMintableERC721, Se
...
@@ -31,7 +31,7 @@ contract OptimismMintableERC721 is ERC721Enumerable, IOptimismMintableERC721, Se
_;
_;
}
}
/// @custom:semver 1.1.
3
/// @custom:semver 1.1.
2
/// @param _bridge Address of the bridge on this network.
/// @param _bridge Address of the bridge on this network.
/// @param _remoteChainId Chain ID where the remote token is deployed.
/// @param _remoteChainId Chain ID where the remote token is deployed.
/// @param _remoteToken Address of the corresponding token on the other network.
/// @param _remoteToken Address of the corresponding token on the other network.
...
@@ -45,7 +45,7 @@ contract OptimismMintableERC721 is ERC721Enumerable, IOptimismMintableERC721, Se
...
@@ -45,7 +45,7 @@ contract OptimismMintableERC721 is ERC721Enumerable, IOptimismMintableERC721, Se
string memory _symbol
string memory _symbol
)
)
ERC721(_name, _symbol)
ERC721(_name, _symbol)
Semver(1, 1,
3
)
Semver(1, 1,
2
)
{
{
require(_bridge != address(0), "OptimismMintableERC721: bridge cannot be address(0)");
require(_bridge != address(0), "OptimismMintableERC721: bridge cannot be address(0)");
require(_remoteChainId != 0, "OptimismMintableERC721: remote chain id cannot be zero");
require(_remoteChainId != 0, "OptimismMintableERC721: remote chain id cannot be zero");
...
...
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