-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into polygonZKEVMV2SoakTest
- Loading branch information
Showing
108 changed files
with
8,095 additions
and
974 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 |
---|---|---|
@@ -1 +1 @@ | ||
v16.13.2 | ||
v16.16.0 |
Validating CODEOWNERS rules …
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,32 @@ | ||
BurnMintERC677_approve:testApproveSuccess() (gas: 52254) | ||
BurnMintERC677_approve:testInvalidAddressReverts() (gas: 10641) | ||
BurnMintERC677_burn:testBasicBurnSuccess() (gas: 164344) | ||
BurnMintERC677_burn:testBurnFromZeroAddressReverts() (gas: 43462) | ||
BurnMintERC677_burn:testExceedsBalanceReverts() (gas: 18035) | ||
BurnMintERC677_burn:testSenderNotBurnerReverts() (gas: 13359) | ||
BurnMintERC677_burnFrom:testBurnFromSuccess() (gas: 54662) | ||
BurnMintERC677_burnFrom:testExceedsBalanceReverts() (gas: 32873) | ||
BurnMintERC677_burnFrom:testInsufficientAllowanceReverts() (gas: 18107) | ||
BurnMintERC677_burnFrom:testSenderNotBurnerReverts() (gas: 13359) | ||
BurnMintERC677_burnFromAlias:testBurnFromSuccess() (gas: 54688) | ||
BurnMintERC677_burnFromAlias:testExceedsBalanceReverts() (gas: 32889) | ||
BurnMintERC677_burnFromAlias:testInsufficientAllowanceReverts() (gas: 18127) | ||
BurnMintERC677_burnFromAlias:testSenderNotBurnerReverts() (gas: 13379) | ||
BurnMintERC677_constructor:testConstructorSuccess() (gas: 1669109) | ||
BurnMintERC677_decreaseApproval:testDecreaseApprovalSuccess() (gas: 28520) | ||
BurnMintERC677_grantMintAndBurnRoles:testGrantMintAndBurnRolesSuccess() (gas: 120049) | ||
BurnMintERC677_grantRole:testGrantBurnAccessSuccess() (gas: 52707) | ||
BurnMintERC677_grantRole:testGrantManySuccess() (gas: 935521) | ||
BurnMintERC677_grantRole:testGrantMintAccessSuccess() (gas: 93588) | ||
BurnMintERC677_increaseApproval:testIncreaseApprovalSuccess() (gas: 40911) | ||
BurnMintERC677_mint:testBasicMintSuccess() (gas: 149365) | ||
BurnMintERC677_mint:testMaxSupplyExceededReverts() (gas: 46627) | ||
BurnMintERC677_mint:testSenderNotMinterReverts() (gas: 11195) | ||
BurnMintERC677_supportsInterface:testConstructorSuccess() (gas: 8685) | ||
BurnMintERC677_transfer:testInvalidAddressReverts() (gas: 10617) | ||
BurnMintERC677_transfer:testTransferSuccess() (gas: 39462) | ||
OpStackBurnMintERC677_constructor:testConstructorSuccess() (gas: 1739317) | ||
OpStackBurnMintERC677_interfaceCompatibility:testBurnCompatibility() (gas: 259440) | ||
OpStackBurnMintERC677_interfaceCompatibility:testMintCompatibility() (gas: 137935) | ||
OpStackBurnMintERC677_interfaceCompatibility:testStaticFunctionsCompatibility() (gas: 10622) | ||
OpStackBurnMintERC677_supportsInterface:testConstructorSuccess() (gas: 8961) |
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,30 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
echo " ┌──────────────────────────────────────────────┐" | ||
echo " │ Compiling shared contracts... │" | ||
echo " └──────────────────────────────────────────────┘" | ||
|
||
SOLC_VERSION="0.8.19" | ||
OPTIMIZE_RUNS=1000000 | ||
|
||
|
||
SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )" | ||
python3 -m pip install --require-hashes -r $SCRIPTPATH/requirements.txt | ||
solc-select install $SOLC_VERSION | ||
solc-select use $SOLC_VERSION | ||
export SOLC_VERSION=$SOLC_VERSION | ||
|
||
ROOT="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; cd ../../ && pwd -P )" | ||
|
||
compileContract () { | ||
solc --overwrite --optimize --optimize-runs $OPTIMIZE_RUNS --metadata-hash none \ | ||
-o $ROOT/contracts/solc/v$SOLC_VERSION \ | ||
--abi --bin --allow-paths $ROOT/contracts/src/v0.8\ | ||
$ROOT/contracts/src/v0.8/$1 | ||
} | ||
|
||
compileContract shared/token/ERC677/BurnMintERC677.sol | ||
compileContract shared/token/ERC677/LinkToken.sol | ||
compileContract vendor/openzeppelin-solidity/v4.8.0/contracts/token/ERC20/ERC20.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
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
6 changes: 4 additions & 2 deletions
6
contracts/src/v0.8/dev/automation/2_1/interfaces/IKeeperRegistryMaster.sol
Large diffs are not rendered by default.
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
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
22 changes: 22 additions & 0 deletions
22
contracts/src/v0.8/functions/tests/1_0_0/FunctionsClient.t.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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.19; | ||
|
||
/// @notice #constructor | ||
contract FunctionsClient_Constructor { | ||
|
||
} | ||
|
||
/// @notice #_sendRequest | ||
contract FunctionsClient__SendRequest { | ||
|
||
} | ||
|
||
/// @notice #fulfillRequest | ||
contract FunctionsClient_FulfillRequest { | ||
|
||
} | ||
|
||
/// @notice #handleOracleFulfillment | ||
contract FunctionsClient_HandleOracleFulfillment { | ||
|
||
} |
Oops, something went wrong.