-
Notifications
You must be signed in to change notification settings - Fork 20
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
1 parent
1dd705d
commit ced9c07
Showing
9 changed files
with
12,976 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
node_modules | ||
.env | ||
.env.enc | ||
.DS_Store | ||
|
||
# Foundry files | ||
cache_forge/ | ||
out/ | ||
|
||
# Hardhat files | ||
/cache | ||
/artifacts | ||
|
||
# TypeChain files | ||
/typechain | ||
/typechain-types | ||
|
||
# solidity-coverage files | ||
/coverage | ||
/coverage.json | ||
|
||
# Ignores development broadcast logs | ||
!/broadcast | ||
/broadcast/*/31337/ | ||
/broadcast/**/dry-run/ | ||
|
||
# Docs | ||
docs/ |
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 @@ | ||
## Chainlink Local |
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,15 @@ | ||
{ | ||
"name": "@chainlink/local", | ||
"description": "Chainlink Local Simulator", | ||
"version": "0.0.0", | ||
"files": [ | ||
"**/*.sol" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/smartcontractkit/chainlink-local.git" | ||
}, | ||
"keywords": [ | ||
"chainlink" | ||
] | ||
} |
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,10 @@ | ||
[profile.default] | ||
src = 'contracts' | ||
out = 'out' | ||
libs = ['node_modules', 'lib'] | ||
test = 'test' | ||
cache_path = 'cache_forge' | ||
remappings = [ | ||
'@chainlink/contracts-ccip/=node_modules/@chainlink/contracts-ccip', | ||
'@chainlink/local/=contracts/', | ||
] |
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,15 @@ | ||
import { HardhatUserConfig } from "hardhat/config"; | ||
import "@nomicfoundation/hardhat-toolbox"; | ||
import "@nomicfoundation/hardhat-foundry"; | ||
import { vars } from "hardhat/config"; | ||
|
||
const config: HardhatUserConfig = { | ||
solidity: "0.8.19", | ||
networks: { | ||
hardhat: { | ||
allowUnlimitedContractSize: true | ||
} | ||
} | ||
}; | ||
|
||
export default config; |
Submodule forge-std
updated
6 files
+1 −1 | scripts/vm.py | |
+1 −1 | src/StdJson.sol | |
+0 −3 | src/Vm.sol | |
+33 −51 | src/mocks/MockERC20.sol | |
+32 −46 | src/mocks/MockERC721.sol | |
+1 −1 | test/Vm.t.sol |
Oops, something went wrong.