mirror of
https://github.com/getwax/eth-global-lisbon-hackathon.git
synced 2026-01-08 23:37:56 -05:00
Add AA & bundler submodules, start of setup & run scripts
This commit is contained in:
6
.gitmodules
vendored
Normal file
6
.gitmodules
vendored
Normal 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
|
||||
11
README.md
11
README.md
@@ -1 +1,10 @@
|
||||
# eth-global-lisbon-hackathon
|
||||
# eth-global-lisbon-hackathon
|
||||
|
||||
# deps
|
||||
NodeJS >= v18.12
|
||||
|
||||
# setup
|
||||
|
||||
```bash
|
||||
./scripts/setup.sh
|
||||
```
|
||||
|
||||
1
account-abstraction
Submodule
1
account-abstraction
Submodule
Submodule account-abstraction added at abff2aca61
1
bundler
Submodule
1
bundler
Submodule
Submodule bundler added at a1cab449a4
5
scripts/run.sh
Executable file
5
scripts/run.sh
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
|
||||
8
scripts/setup.sh
Executable file
8
scripts/setup.sh
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
git submodule init && git submodule update
|
||||
|
||||
# setup tramonline
|
||||
(cd ./trampoline && yarn install)
|
||||
Reference in New Issue
Block a user