Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
andrejrakic committed Feb 27, 2024
1 parent 1dd705d commit ced9c07
Show file tree
Hide file tree
Showing 9 changed files with 12,976 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .gitignore
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/
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
## Chainlink Local
15 changes: 15 additions & 0 deletions contracts/package.json
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"
]
}
10 changes: 10 additions & 0 deletions foundry.toml
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/',
]
15 changes: 15 additions & 0 deletions hardhat.config.ts
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;
2 changes: 1 addition & 1 deletion lib/forge-std
Loading

0 comments on commit ced9c07

Please sign in to comment.