Skip to content

Commit

Permalink
Merge branch 'main' into system-test-update-additional-scenario
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaszslabon committed Aug 10, 2023
2 parents 4d70741 + b01aca1 commit 73e6727
Show file tree
Hide file tree
Showing 146 changed files with 32,523 additions and 169 deletions.
1 change: 1 addition & 0 deletions .github/workflows/cross-chain-arbitrum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
paths:
- "cross-chain/arbitrum/**"
- ".github/workflows/cross-chain-arbitrum.yml"
pull_request:

jobs:
contracts-detect-changes:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cross-chain-optimism.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
paths:
- "cross-chain/optimism/**"
- ".github/workflows/cross-chain-optimism.yml"
pull_request:

jobs:
contracts-detect-changes:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cross-chain-polygon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
paths:
- "cross-chain/polygon/**"
- ".github/workflows/cross-chain-polygon.yml"
pull_request:

jobs:
contracts-detect-changes:
Expand Down
8 changes: 8 additions & 0 deletions cross-chain/base/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
artifacts/
build/
cache/
deployments/
export/
hardhat-dependency-compiler/
typechain/
export.json
18 changes: 18 additions & 0 deletions cross-chain/base/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"root": true,
"extends": ["@thesis-co"],
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"env": {
"es6": true,
"mocha": true
},
"rules": {
"new-cap": "off",
"import/no-extraneous-dependencies": "off",
"@typescript-eslint/no-use-before-define": "off",
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }]
}
}
17 changes: 17 additions & 0 deletions cross-chain/base/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Hardhat
/artifacts/
/build/
/cache/
/export/
/external/npm
/typechain/
/export.json
/deployments/*
!/deployments/mainnet/
!/deployments/base/
!/deployments/baseGoerli/

# OZ
/.openzeppelin/unknown-*.json
!/.openzeppelin/unknown-84531.json
!/.openzeppelin/unknown-8453.json
3 changes: 3 additions & 0 deletions cross-chain/base/.mocharc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"require": "ts-node/register/files"
}
Loading

0 comments on commit 73e6727

Please sign in to comment.