-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Natspec, whitespace, and checksums (#29)
- Loading branch information
1 parent
cc2e8d8
commit 776de27
Showing
10 changed files
with
52 additions
and
44 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
version: 2.1 | ||
|
||
jobs: | ||
dapp_test: | ||
docker: | ||
- image: bakii0499/dapptools:0.48.0-solc-0.8.7 | ||
steps: | ||
- run: | ||
name: Checkout maple-proxy-factory | ||
command: | | ||
GIT_SSH_COMMAND="ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" git clone [email protected]:maple-labs/maple-proxy-factory.git . | ||
git checkout $CIRCLE_BRANCH | ||
- run: | ||
name: Build and test contracts | ||
command: | | ||
GIT_SSH_COMMAND="ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" git submodule update --init --recursive | ||
./test.sh -c ./config/ci.json -r 10 | ||
dapp_test: | ||
docker: | ||
- image: bakii0499/dapptools:0.48.0-solc-0.8.7 | ||
steps: | ||
- run: | ||
name: Checkout maple-proxy-factory | ||
command: | | ||
GIT_SSH_COMMAND="ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" git clone [email protected]:maple-labs/maple-proxy-factory.git . | ||
git checkout $CIRCLE_BRANCH | ||
- run: | ||
name: Build and test contracts | ||
command: | | ||
GIT_SSH_COMMAND="ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" git submodule update --init --recursive | ||
./test.sh -c ./config/ci.json -r 10 | ||
workflows: | ||
version: 2 | ||
test_all: | ||
jobs: | ||
- dapp_test: | ||
context: seth | ||
version: 2 | ||
test_all: | ||
jobs: | ||
- dapp_test: | ||
context: seth |
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 |
---|---|---|
|
@@ -3,3 +3,6 @@ hevm* | |
.vscode/* | ||
/package | ||
.DS_Store | ||
artifacts/* | ||
docs/* | ||
metadata.json |
This file was deleted.
Oops, something went wrong.
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,7 @@ | ||
// SPDX-License-Identifier: AGPL-3.0-or-later | ||
pragma solidity 0.8.7; | ||
|
||
import { ProxiedInternals } from "../modules/proxy-factory/contracts/ProxiedInternals.sol"; | ||
|
||
/// @title A Maple implementation that is to be proxied, will need MapleProxiedInternals. | ||
abstract contract MapleProxiedInternals is ProxiedInternals {} |
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
Submodule proxy-factory
updated
11 files
+19 −19 | .circleci/config.yml | |
+3 −0 | .gitignore | |
+13 −13 | README.md | |
+4 −4 | contracts/ProxiedInternals.sol | |
+8 −2 | contracts/Proxy.sol | |
+13 −13 | contracts/ProxyFactory.sol | |
+1 −1 | contracts/SlotManipulatable.sol | |
+1 −3 | contracts/interfaces/IDefaultImplementationBeacon.sol | |
+8 −8 | contracts/interfaces/IProxied.sol | |
+2 −2 | contracts/test/ProxyFactory.t.sol | |
+3 −3 | contracts/test/mocks/Mocks.sol |
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 |
---|---|---|
@@ -1,4 +1,8 @@ | ||
name: maple-proxy-factory | ||
version: 2.0.0 | ||
version: 1.0.0 | ||
source: contracts | ||
packages: | ||
- path: contracts/MapleProxyFactory.sol | ||
contractName: MapleProxyFactory | ||
customChecksum: 0x48376956b7d296532583145b1e04f24d68bf44ca0372721b66ffd1b2b3be6ee9 | ||
customDescription: Maple Proxy Factory Artifacts and ABIs |