Add AA & bundler submodules, start of setup & run scripts

This commit is contained in:
jacque006
2023-05-12 19:01:25 +01:00
parent a5de6f5901
commit e8baed9e84
6 changed files with 31 additions and 1 deletions

6
.gitmodules vendored Normal file
View File

@@ -0,0 +1,6 @@
[submodule "account-abstraction"]
path = account-abstraction
url = git@github.com:eth-infinitism/account-abstraction.git
[submodule "bundler"]
path = bundler
url = git@github.com:eth-infinitism/bundler.git

View File

@@ -1 +1,10 @@
# eth-global-lisbon-hackathon
# eth-global-lisbon-hackathon
# deps
NodeJS >= v18.12
# setup
```bash
./scripts/setup.sh
```

1
account-abstraction Submodule

Submodule account-abstraction added at abff2aca61

1
bundler Submodule

Submodule bundler added at a1cab449a4

5
scripts/run.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -e

8
scripts/setup.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -e
git submodule init && git submodule update
# setup tramonline
(cd ./trampoline && yarn install)