-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docker map of pks and Teleportation audit (#786) (cherry picked from commit 0875625) * Gateway: Package cleanup and improvement. (#783) * change: cleanup, reorder scripts, removed react-env, updated sentry packs. * cleaning ts and setuptest * updated test * setup env for github workflow yarn test:coverage * fix for snapshot issue (cherry picked from commit 07e2cb9) * [AA] use EPWrapper instead of senderCreator on aa-sdk (#784) * replace senderCreator with wrapper * add unit tests * remove extra dump-address file * make epw mandatory on the sdk high level provider (cherry picked from commit 06fdeb7) * [AA]tests: add AA alt-L1 integ tests (#687) * add AA alt-L1 integ tests * add docker-compose-side * fix tests * use epW instead of senderCreator (cherry picked from commit ba6e162) * Close webserver tests (#765) * bump bundler, limit dependency bumps * uncomment bundler related stuff * build bundler in docker * build fixes * fix tests * fix bundler building * uncomment _disableInitializers * fix running DTL * v1.0.0 * fixing starting bundler and tests, default config * local unsafe, linting fix in intg tests * custom errors fixes * new api for simple account contract * use simple account factory proxy * use simple account factory proxy in SimpleAccountAPI * use simple account factory proxy in SimpleAccountAPI * use wrappers to get around custom errors * update entrypoint wrapper (#745) * sponsoring fee fixed * stricter validation for staking * remove debug namespace, fix return for unaavailable rpc methods * resolve #763 * fix linting --------- Co-authored-by: Ino Murko <[email protected]> Co-authored-by: Souradeep Das <[email protected]> Co-authored-by: Boyuan-Chen <[email protected]> (cherry picked from commit 6e27538) * Improve Bundler SDK release pipeline (#782) * formatting bundler-sdk-pr bundler-sdk-pr path test path test testpath trigger fixing npm scope, github action path, version increment * branch * Delete package-lock.json * fix missing dep (cherry picked from commit 8623911) * Fix WAGMI: failing to settle. (#792) * Fix for wagmi settle invocation (cherry picked from commit b3a8edb) * Add runtime flag to enable debug methods (#793) * resolve #761 * switch to bundler config (cherry picked from commit 51880c4) * [AA] Fix Bundler SDK commenter (#796) * Update aa-bundler-sdk-pr.yml * add 'packages/boba/bundler_utils/**/*' * add-bundler-utils-to-release (cherry picked from commit 85d455c) * Add script for developers to manually relay messages (#725) * Add script for developers to manually relay messages * Update README.md * Increase gas limit by 10% (cherry picked from commit 8fde96f) * [AA] Add Boba Goerli Testnet contract addresses (#803) (cherry picked from commit 3f11a26) * remove moonbeam and fantom integration tests (#812) (cherry picked from commit 5a19341) * textual changes for bobabeam (#816) (cherry picked from commit 95a6d2b) --------- Co-authored-by: Sahil K <[email protected]> Co-authored-by: Souradeep Das <[email protected]> Co-authored-by: Riedl Kevin, Bsc <[email protected]> Co-authored-by: Boyuan-Chen <[email protected]>
- Loading branch information
1 parent
d665aa8
commit 216cd2c
Showing
110 changed files
with
145,915 additions
and
4,184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Will trigger release of AA-Bundler to NPM (PR comment) | ||
on: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dorny/paths-filter@v2 | ||
id: filter | ||
with: | ||
filters: | | ||
bundler_sdk: | ||
- 'packages/boba/bundler_sdk/**/*' | ||
- 'packages/boba/bundler_utils/**/*' | ||
- name: PR commenter | ||
if: steps.filter.outputs.bundler_sdk == 'true' | ||
uses: mshick/add-pr-comment@v2 | ||
with: | ||
message: | | ||
⚠️ **This PR triggers a minor release of the Bundler SDK** (Account Abstraction) to NPM as you made changes in the corresponding `bundler_sdk` directory. | ||
Please make sure this is intentional. | ||
The package that is going to be updated is `@bobanetwork/bundler_sdk`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
L1_NODE_WEB3_URL=https://mainnet.infura.io/v3/KEY | ||
L2_NODE_WEB3_URL=https://mainnet.boba.network | ||
PRIV_KEY= | ||
L2_TRANSACTION_HASH= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
description: Relay messages on L1 | ||
--- | ||
|
||
## Boba Message Relayer | ||
|
||
This script allows anyone to check the status of a cross chain message from L2 to L1 and relay messages. | ||
|
||
> This script supports all BOBA L2s | ||
```bash | ||
$ git clone [email protected]:bobanetwork/boba.git | ||
$ cd boba/boba_community/boba-relayer | ||
$ yarn clean # only needed / will only work if you had it installed previously | ||
$ yarn | ||
``` | ||
|
||
Then, add `.env` in `boba/boba_community/boba-relayer`. | ||
|
||
```yaml | ||
L1_NODE_WEB3_URL=https://mainnet.infura.io/v3/KEY | ||
L2_NODE_WEB3_URL=https://mainnet.boba.network | ||
PRIV_KEY= | ||
L2_TRANSACTION_HASH= | ||
``` | ||
|
||
Run the command to relay messages | ||
|
||
```bash | ||
$ yarn start | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"name": "@boba/boba-relayer", | ||
"version": "1.0.0", | ||
"scripts": { | ||
"start": "node ./src/index.js", | ||
"postinstall": "patch-package" | ||
}, | ||
"license": "MIT", | ||
"dependencies": { | ||
"@eth-optimism/sdk": "1.0.1", | ||
"dotenv": "^16.0.0", | ||
"ethers": "^5.5.4", | ||
"node-fetch": "2.6.0", | ||
"patch-package": "^6.5.1" | ||
} | ||
} |
Oops, something went wrong.