Skip to content

Commit 69cb4af

Browse files
Feat: Venn Integration (#12)
* chore: new venn command * chore: initial venn-enable service * chore: new --contracts-file option * chore: new --network option * chore: new --policy option * chore: defined enable-protection options * chore: deprecate multi-sig setup * chore: clean up build script * chore: rename root command to venn * chore: rename Ironblocks CLI to Venn CLI * chore: remove ib logo * chore: better logging * chore: default to VennFirewallConsumer * chore: add success logger * chore: some clean up, and loading of new configs * chore: integrate policy deployer * feat: integrate with venn network on holesky * chore: dependencies updates * feat: support disabling of Venn firewall * docs: updated README.md * feat: ready * chore: lock file
1 parent 7932b7b commit 69cb4af

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+6242
-17230
lines changed

.eslintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module.exports = {
2727
// Indent with spaces.
2828
"tabWidth": 4,
2929
// Max line length.
30-
"printWidth": 120,
30+
"printWidth": 200,
3131
}
3232
],
3333
},

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,6 @@ lerna-debug.log*
3535
!.vscode/launch.json
3636
!.vscode/extensions.json
3737
!.vscode/load-debug-args.js
38+
39+
# dev artifacts
40+
venn.config.json

.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
!package-json.json
55

66
!README.md
7+
!LICENSE
78

89
!dist/**/*.js

.prettierrc

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"singleQuote": true,
33
"trailingComma": "none",
44
"tabWidth": 4,
5-
"printWidth": 120,
5+
"printWidth": 200,
66
"arrowParens": "avoid"
7-
}
7+
}

.vscode/settings.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"cSpell.words": [
3+
"integ"
4+
]
5+
}

.vscode/tasks.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@
5353
"fw integ --dir ${workspaceFolder}/fixtures/contracts",
5454
"fw integ --dir ${workspaceFolder}/fixtures/contracts --verbose",
5555
"fw integ --dir ${workspaceFolder}/fixtures/contracts --internal",
56-
"fw integ --dir ${workspaceFolder}/fixtures/contracts --rec"
56+
"fw integ --dir ${workspaceFolder}/fixtures/contracts --rec",
57+
58+
"venn",
5759
]
5860
}
5961
]

0 commit comments

Comments
 (0)