Skip to content

Commit

Permalink
test: add missing tests (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra authored Jan 6, 2025
1 parent 640a5a3 commit 93493dd
Show file tree
Hide file tree
Showing 46 changed files with 8,506 additions and 29 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Compiler files
cache/
out/
zkout/

# Ignores development broadcast logs
!/broadcast
Expand Down
16 changes: 16 additions & 0 deletions .zed/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// Folder-specific settings
//
// For a full list of overridable settings, and general information on folder-specific settings,
// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
{
"languages": {
"Solidity": {
"formatter": {
"external": {
"command": "forge",
"arguments": ["fmt", "--raw", "-"]
}
}
}
}
}
5 changes: 5 additions & 0 deletions diffs/arbitrum_before_arbitrum_after.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Raw diff

```json
{}
```
5 changes: 5 additions & 0 deletions diffs/avalanche_before_avalanche_after.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Raw diff

```json
{}
```
5 changes: 5 additions & 0 deletions diffs/base_before_base_after.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Raw diff

```json
{}
```
5 changes: 5 additions & 0 deletions diffs/bnb_before_bnb_after.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Raw diff

```json
{}
```
5 changes: 5 additions & 0 deletions diffs/gnosis_before_gnosis_after.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Raw diff

```json
{}
```
5 changes: 5 additions & 0 deletions diffs/metis_before_metis_after.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Raw diff

```json
{}
```
5 changes: 5 additions & 0 deletions diffs/optimism_before_optimism_after.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Raw diff

```json
{}
```
5 changes: 5 additions & 0 deletions diffs/scroll_before_scroll_after.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Raw diff

```json
{}
```
5 changes: 5 additions & 0 deletions diffs/zksync_before_zksync_after.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Raw diff

```json
{}
```
16 changes: 16 additions & 0 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ libs = ["lib"]
fs_permissions = [{ access = "write", path = "./reports" }]
ffi = true

[profile.zksync]
src = 'src'
test = 'zksync'
script = 'scripts'
libs = ['lib']
solc = '0.8.20'
fs_permissions = [{ access = "write", path = "./reports" }]
ffi = true
evm_version = 'shanghai'

[profile.zksync.zksync]
compile = true
optimizer_mode = '3'
zksolc = '1.5.7'

# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options
[rpc_endpoints]
mainnet = "${RPC_MAINNET}"
Expand Down Expand Up @@ -48,3 +63,4 @@ zksync = { key = "${ETHERSCAN_API_KEY_ZKSYNC}", chain = 324 }

[fmt]
tab_width = 2
quote_style = 'single'
Loading

0 comments on commit 93493dd

Please sign in to comment.