Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

Commit

Permalink
Namespace storage (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
minghinmatthewlam authored Jul 18, 2024
2 parents 946f5dc + 368548e commit 80cb00e
Show file tree
Hide file tree
Showing 63 changed files with 1,702 additions and 2,736 deletions.
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,9 @@
[submodule "contracts/lib/teleporter"]
path = contracts/lib/teleporter
url = https://github.com/ava-labs/teleporter
[submodule "contracts/lib/openzeppelin-contracts-upgradeable"]
path = contracts/lib/openzeppelin-contracts-upgradeable
url = https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable
[submodule "contracts/lib/openzeppelin-contracts"]
path = contracts/lib/openzeppelin-contracts
url = https://github.com/OpenZeppelin/openzeppelin-contracts
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ Unit test coverage of the contracts can be viewed using `forge coverage`:
```
$ forge coverage
[⠢] Compiling...
[⠒] Compiling 78 files with 0.8.18
[⠆] Solc 0.8.18 finished in 3.92s
[⠒] Compiling 78 files with 0.8.20
[⠆] Solc 0.8.20 finished in 3.92s
Compiler run successful!
Analysing contracts...
Running tests...
Expand Down
109 changes: 18 additions & 91 deletions abi-bindings/go/ProxyAdmin/ProxyAdmin.go

Large diffs are not rendered by default.

299 changes: 95 additions & 204 deletions abi-bindings/go/TokenHome/ERC20TokenHome/ERC20TokenHome.go

Large diffs are not rendered by default.

299 changes: 95 additions & 204 deletions abi-bindings/go/TokenHome/NativeTokenHome/NativeTokenHome.go

Large diffs are not rendered by default.

270 changes: 96 additions & 174 deletions abi-bindings/go/TokenHome/TokenHome/TokenHome.go

Large diffs are not rendered by default.

536 changes: 185 additions & 351 deletions abi-bindings/go/TokenRemote/ERC20TokenRemote/ERC20TokenRemote.go

Large diffs are not rendered by default.

628 changes: 200 additions & 428 deletions abi-bindings/go/TokenRemote/NativeTokenRemote/NativeTokenRemote.go

Large diffs are not rendered by default.

404 changes: 140 additions & 264 deletions abi-bindings/go/TokenRemote/TokenRemote/TokenRemote.go

Large diffs are not rendered by default.

Large diffs are not rendered by default.

259 changes: 31 additions & 228 deletions abi-bindings/go/WrappedNativeToken/WrappedNativeToken.go

Large diffs are not rendered by default.

136 changes: 47 additions & 89 deletions abi-bindings/go/mocks/ExampleERC20Decimals/ExampleERC20Decimals.go

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 2 additions & 8 deletions contracts/.solhint.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
{
"extends": "solhint:recommended",
"rules": {
"compiler-version": [
"error",
"0.8.18"
],
"compiler-version": ["error", "0.8.20"],
"no-unused-vars": "error",
"func-visibility": [
"error",
Expand Down Expand Up @@ -32,10 +29,7 @@
"immutablesAsConstants": false
}
],
"func-named-parameters": [
"error",
5
],
"func-named-parameters": ["error", 5],
"one-contract-per-file": "off",
"no-empty-blocks": "off",
"check-send-result": "off"
Expand Down
2 changes: 1 addition & 1 deletion contracts/foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
src = "src"
out = "out"
libs = ["lib"]
solc_version = '0.8.18'
solc_version = '0.8.20'

[fmt]
line_length = 100
Expand Down
1 change: 1 addition & 0 deletions contracts/lib/openzeppelin-contracts
Submodule openzeppelin-contracts added at dbb610
1 change: 1 addition & 0 deletions contracts/lib/openzeppelin-contracts-upgradeable
2 changes: 1 addition & 1 deletion contracts/lib/teleporter
Loading

0 comments on commit 80cb00e

Please sign in to comment.