Skip to content

Add ERC1155 bridges#436

Merged
boyuan-chen merged 6 commits intodevelopfrom
add-ERC1155-bridge
Nov 2, 2022
Merged

Add ERC1155 bridges#436
boyuan-chen merged 6 commits intodevelopfrom
add-ERC1155-bridge

Conversation

@boyuan-chen
Copy link
Copy Markdown
Contributor

@boyuan-chen boyuan-chen commented Oct 26, 2022

📋 Add associated issues, tickets, docs URL here.

Overview

Describe what your Pull Request is about in a few sentences.

Add ERC1155 bridges (EIP-1155)

It supports the L1 and L2 native ERC1155 tokens. Developers can deploy their tokens on either sides and bridge the token to another side.

Changes

Describe your changes and implementation choices. More details make PRs easier to review.

  • Add core contracts
  • Add tests
  • Rename the bridge folder to ERC721Bridge to make things clear

Testing

Describe how to test your new feature/bug fix and if possible, a step by step guide on how to demo this.

The unit tests and the integration tests are added

@codecov-commenter
Copy link
Copy Markdown

codecov-commenter commented Oct 26, 2022

Codecov Report

Base: 46.03% // Head: 44.74% // Decreases project coverage by -1.28% ⚠️

Coverage data is based on head (8ec4991) compared to base (e382d69).
Patch coverage: 26.59% of modified lines in pull request are covered.

Additional details and impacted files
@@             Coverage Diff             @@
##           develop     #436      +/-   ##
===========================================
- Coverage    46.03%   44.74%   -1.29%     
===========================================
  Files          102      106       +4     
  Lines         3971     4253     +282     
  Branches       792      847      +55     
===========================================
+ Hits          1828     1903      +75     
- Misses        2143     2350     +207     
Flag Coverage Δ
boba-contracts 20.02% <26.59%> (+0.90%) ⬆️
contracts 79.30% <ø> (ø)
core-utils 86.80% <ø> (ø)
data-transport-layer 31.17% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
.../contracts/contracts/ERC721Bridges/L1NFTBridge.sol 34.83% <ø> (ø)
.../contracts/contracts/ERC721Bridges/L2NFTBridge.sol 32.98% <ø> (ø)
...racts/contracts/ERC1155Bridges/L2ERC1155Bridge.sol 25.39% <25.39%> (ø)
...racts/contracts/ERC1155Bridges/L1ERC1155Bridge.sol 26.72% <26.72%> (ø)
...ontracts/contracts/standards/L1StandardERC1155.sol 30.00% <30.00%> (ø)
...ontracts/contracts/standards/L2StandardERC1155.sol 30.00% <30.00%> (ø)

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report at Codecov.
📢 Do you have feedback about the report comment? Let us know in this issue.

@souradeep-das souradeep-das changed the title Add ERC11551155 bridges Add ERC1155 bridges Oct 27, 2022
Comment thread integration-tests/contracts/TestFailingMintL1StandardERC1155.sol Outdated
Comment thread integration-tests/contracts/TestFailingMintL2StandardERC1155.sol Outdated
Comment thread packages/boba/contracts/contracts/standards/L1StandardERC1155.sol
Comment thread packages/boba/contracts/contracts/standards/L2StandardERC1155.sol
Comment thread packages/boba/contracts/deploy/020-L2BillingContract.deploy.ts Outdated
Comment thread packages/boba/contracts/contracts/ERC1155Bridges/L1ERC1155Bridge.sol Outdated
Comment thread packages/boba/contracts/contracts/ERC1155Bridges/L1ERC1155Bridge.sol Outdated
Comment thread packages/boba/contracts/contracts/ERC1155Bridges/L1ERC1155Bridge.sol Outdated
Comment thread packages/boba/contracts/contracts/ERC1155Bridges/L1ERC1155Bridge.sol Outdated
Copy link
Copy Markdown
Contributor

@souradeep-das souradeep-das left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚀

@boyuan-chen boyuan-chen merged commit 11327be into develop Nov 2, 2022
@boyuan-chen boyuan-chen deleted the add-ERC1155-bridge branch November 2, 2022 22:12
@boyuan-chen boyuan-chen restored the add-ERC1155-bridge branch November 16, 2022 21:10
InoMurko pushed a commit that referenced this pull request Jan 18, 2023
* Add ERC1155 bridge

* Fix contract and tests

* Add more tests

* Fix issues and bugs

* Record amounts

(cherry picked from commit 11327be)
InoMurko added a commit that referenced this pull request Jan 18, 2023
* Turing Multi-Value (#204)

* Re-apply the hybrid-compute Version field and maximum length limits
from the previous mm/turing-multivalue branch.

 Changes to be committed:
	modified:   l2geth/core/types/transaction_meta.go
	modified:   l2geth/core/vm/evm.go

* Adapt the 002_local_math.ts test from the old branch. Add V1 handler
to TuringHelper contract. This test file is ignored unless testing
on the local network.

 Changes to be committed:
	modified:   boba_examples/turing-hello-world/contracts/HelloTuring.sol
	modified:   boba_examples/turing-hello-world/contracts/ITuringHelper.sol
	modified:   boba_examples/turing-hello-world/contracts/TuringHelper.sol
	modified:   boba_examples/turing-hello-world/package.json
	new file:   boba_examples/turing-hello-world/test/local-webserver.ts

* Logfile changes.
 Changes to be committed:
	modified:   l2geth/core/vm/evm.go

* Add array support. Test for enforcement of length limits. Changes
the error strings in TuringHelper.

 Changes to be committed:
	modified:   boba_examples/turing-hello-world/contracts/HelloTuring.sol
	modified:   boba_examples/turing-hello-world/contracts/TuringHelper.sol
	modified:   boba_examples/turing-hello-world/test/local-webserver.ts

* Charge extra gas based on the size of the Turing calldata. Does not
yet account for the L1/L2 gas price ratio.

 Changes to be committed:
	modified:   boba_examples/turing-hello-world/test/local-webserver.ts
	modified:   l2geth/core/evm.go
	modified:   l2geth/core/vm/errors.go
	modified:   l2geth/core/vm/evm.go

* Calculate Turing calldata fee based on L1 and L2 gas prices.

 Changes to be committed:
	modified:   core/evm.go
	modified:   core/vm/evm.go
	modified:   internal/ethapi/api.go

* Set a non-trivial L1 gas price and test large Turing responses.

 Changes to be committed:
	modified:   boba_examples/turing-hello-world/test/local-webserver.ts
	modified:   ops/docker-compose.yml

* Lint fixes
 Changes to be committed:
	modified:   l2geth/core/vm/evm.go
	modified:   l2geth/core/evm.go
	modified:   l2geth/internal/ethapi/api.go

* Revert the change to the default L1 base fee. Set it directly in
the Turing local-webserver test.

 Changes to be committed:
	modified:   boba_examples/turing-hello-world/test/local-webserver.ts
	modified:   ops/docker-compose.yml

* If LOCAL_PRIVATE_KEY is not set, use Hardhat account #16

 Changes to be committed:
	modified:   turing-hello-world/hardhat.config.ts

* As requested, call the new method "V2" rather than "V1".

 Changes to be committed:
	modified:   boba_examples/turing-complex-types/contracts/ComplexType.sol
	modified:   boba_examples/turing-complex-types/contracts/ITuringHelper.sol
	modified:   boba_examples/turing-complex-types/contracts/TuringHelper.sol
	modified:   boba_examples/turing-hello-world/contracts/HelloTuring.sol
	modified:   boba_examples/turing-hello-world/contracts/ITuringHelper.sol
	modified:   boba_examples/turing-hello-world/contracts/TuringHelper.sol
	modified:   l2geth/core/vm/evm.go

Co-authored-by: Riedl Kevin, Bsc <kevin.riedl@wavect.io>
(cherry picked from commit 858587a)

* feat: add sushi.com (#435)

Co-authored-by: Sahil K <86316370+sk-enya@users.noreply.github.com>
(cherry picked from commit e382d69)

* Add ERC1155 bridges (#436)

* Add ERC1155 bridge

* Fix contract and tests

* Add more tests

* Fix issues and bugs

* Record amounts

(cherry picked from commit 11327be)

* Expose Deposit to other account on bridge page. (#421)

* change:
- added way in bridges to deposit to another account
- extended the existing functions.
- unable to test.
- updated the rpcUrl for rinkeby from infura to ankr.com

* - fix for depositTx not found.
- fix for controlled input
- ordered native bridges to top with other bridges.

* updated master config for rinkeby

* fetching the rinkeby chain info from env

* change: updated rinkeby chainid from env instead of hardcoded 4

* change- reverting the l2 env chain info from env as only needed for rinkeby

(cherry picked from commit df6629b)

* fix for unidex broken link (#451)

(cherry picked from commit 206cf40)

* [Gateway] : Remove airdrop page access from gateway (#454)

* remove airdrop page access from gateway

* change: airdrop cleanup, actions, contianer, reducer and readme.

(cherry picked from commit d858381)

* Deploy BOBA to Goerli (#441)

* Deploy core contracts

* Add boba core contract deployment

* Deploy more contracts

* Update gateway

* Add contracts and fix gateway

* Update contract addresses

* Update SDK

* Fix tests

* Add default value to goerli

* small docs and example fix for replica

* Add L2StandardTokenFactory

Co-authored-by: Ino Murko <2582555+InoMurko@users.noreply.github.com>
(cherry picked from commit b7ac3aa)

* Fix rate limiting (#469)

(cherry picked from commit b51c55d)

* Feat : Bring Back Old Dao and Disable VeDao, VeLock, Liquidity Bootstrap (#464)

* bring back old dao on gateway with flag for veDao and Lock

* cleaning up the old dao

* cleanup for testnet name.

* .env cleanup and menu fix for vote and dao

(cherry picked from commit 7817f15)

* Add Teleportation contract and service (#407)

* Add Teleportation contract

* Support multi chains

* Fix initialization and add unit tests

* Add unit tests and fix bugs

* Add deployment script

* Fix issues

* Add new teleportation package

* Emit events

* Add run and service files

* Add teleportation service

* Add unit tests

* Add docker file

* Fix a bug and simplify the env

* Remove unnecessary env and add README

* Add logs

* Fix events

* Block disbursement if chain id is not registered

* Deploy new contract

* Fix bugs

* Update env name

* Fix tests

* Fix gas and event

* Update Teleportation.sol

* Add more tests

* Update Teleportation contract address

* add retries to flaky tests

Co-authored-by: Riedl Kevin, Bsc <kevin.riedl@wavect.io>
Co-authored-by: Ino Murko <2582555+InoMurko@users.noreply.github.com>
Co-authored-by: Ino Murko <ino.murko.github@protonmail.com>
(cherry picked from commit 1b5a65f)

* turing -> hc rebranding: boba-community (esp. Starter project) (#458)

* turing -> hc rebranding: boba-community (esp. Starter project)

* meta tx goerli support, hcStarter progress, goerli faucet deploy, add faucet to addresses

* goerli hc starter works

* cleanup - feedback

(cherry picked from commit 5c71436)

* Add memes wallet to Ecosystem (#447)

Co-authored-by: Sahil K <86316370+sk-enya@users.noreply.github.com>
Co-authored-by: Boyuan-Chen <46272347+Boyuan-Chen@users.noreply.github.com>
(cherry picked from commit 8b14147)

* Add BobaLink service (#481)

* Add BobaLink contract

* Fix typo

* Enable all tests

* Update contract and add tests

* Add tests and update data type

* Add API test

* Add BobaLink service

* Fix tests

* Fix integration tests

* Update order of functions

* Simplified oracle contract

* Remove acceptingSubmissions and updateFutureRounds

* Rewrite contract

* Add initialize function

* Fix getOracles interface and fix ownership

* Fix unit tests and bobalink tests

* Fix integration tests

* Fix boba deployer

* Fix tests and rename functions

* Update default value

* Fix name

(cherry picked from commit 820dc70)

* proxyd updates from upstream (#445)

* proxyd updates

* proxyd tests

(cherry picked from commit ed418d3)

* account abstraction setup (#472)

* account abstraction setup

* account abstraction setup - deps

* test fixes

* run ci tests

* bump typechain and paths

* bump ts-node

* bump dependencies and fix tests

* bump dependencies and fix tests - bundler fixes

* resolve all dependency issues and bump tests

* resolve all dependency issues and bump tests

* fix revert reason on out of bounds

* linting fix

* unused deps and timeout on factory deploy

* replace new revert string erc721

* update yarn.lock

* increase timeouts

* move the timeout into the while loop

* would a bigger cirleci box help sort out nonces

(cherry picked from commit 7a8005c)

* Cookbook added to projects (#488)

(cherry picked from commit 83ae38a)

* [Gateway] : add changenow and now wallet ecosystem (#507)

(cherry picked from commit 39964f9)

* Add dev tool page and TX builder (#498)

* Add dev tool page

* Reset method if ABI is updated

* Move link to footer

(cherry picked from commit 7beb168)

* feat: add custom paymasters for Boba  (#489)

* add Boba deposit paymaster

* update paymasters with decimals

* add tests

* add token exchange tests

* add conversion tests

* add comments

* add upgradeable wallet

* add verifying_paymaster_test

* update contract name

* feat: add alt-l1 paymaster

* doc: update readme

* add deposit paymaster sequence

* add verifying paymaster sequence

* update README

* refactor: rename to manual paymaster

* add gpo paymaster tests

* docs: update readme

* docs: update readme

(cherry picked from commit a46f7d2)

* Add GET method for fraud detector (#506)

(cherry picked from commit ea57e64)

* Upgrade packages and fix local development environment (#512)

* unify typing system

* unify typing system

* cleanup

* unify typing system

* compiler fixes

* Remove builder

* update sentry dependency, build flow in cirleci

* copy ops_boba to the package image

* relayer fast needs to wait for boba deployer

* Build services via Dockerfile.packages

* Start stack only one time

* Fix eslint and tests

* Remove unused packages and fix ts check

* Fix unit tests

* Fix dependency for bundler

* Fix dependency for bundler

* Fix yarn.lock

* Add coverage tests for services

* Run bobalink in docker

* Fix integration test in circle ci

* Add env for API

* Debug production api tests

* Remove log

* Fix release and replace bobalink key

* Fix repeating time

* Fix lint

* Fix output in circleci

* Reduce waiting time for reporting coverage results

Co-authored-by: cby3149 <cby3149@gmail.com>
Co-authored-by: Boyuan-Chen <46272347+Boyuan-Chen@users.noreply.github.com>
(cherry picked from commit b0d7c18)

* [Gateway] :  Add Babylons ecosystem (#518)

* add babylons in ecosystem page

* console cleanup

(cherry picked from commit fd09f80)

* feat: bring back classic dao and separate veDao features (#462)

* feat: bring back classic dao and separate veDao features

* style: lint contract

* rem ve deps from monorepo

* get back the dep for package to build

* style: lint contract

(cherry picked from commit 4aea742)

* modify building images for release workflows (#520)

* building services

* we don't need foundry image

(cherry picked from commit 82020c3)

Co-authored-by: Michael Montour <83612658+mmontour1306@users.noreply.github.com>
Co-authored-by: HHK <80489471+HHK-ETH@users.noreply.github.com>
Co-authored-by: Boyuan-Chen <46272347+Boyuan-Chen@users.noreply.github.com>
Co-authored-by: Sahil K <86316370+sk-enya@users.noreply.github.com>
Co-authored-by: Riedl Kevin, Bsc <kevin.riedl@wavect.io>
Co-authored-by: Ahmad Heidari <headria@gmail.com>
Co-authored-by: Jackson Felty <30478599+pnkfluffy@users.noreply.github.com>
Co-authored-by: Elijah Fischer <75019378+elfischernow@users.noreply.github.com>
Co-authored-by: Souradeep Das <dsouradeep2@gmail.com>
InoMurko pushed a commit that referenced this pull request Jan 24, 2023
* Add ERC1155 bridge

* Fix contract and tests

* Add more tests

* Fix issues and bugs

* Record amounts

(cherry picked from commit 11327be)
InoMurko added a commit that referenced this pull request Jan 24, 2023
* Turing Multi-Value (#204)

* Re-apply the hybrid-compute Version field and maximum length limits
from the previous mm/turing-multivalue branch.

 Changes to be committed:
	modified:   l2geth/core/types/transaction_meta.go
	modified:   l2geth/core/vm/evm.go

* Adapt the 002_local_math.ts test from the old branch. Add V1 handler
to TuringHelper contract. This test file is ignored unless testing
on the local network.

 Changes to be committed:
	modified:   boba_examples/turing-hello-world/contracts/HelloTuring.sol
	modified:   boba_examples/turing-hello-world/contracts/ITuringHelper.sol
	modified:   boba_examples/turing-hello-world/contracts/TuringHelper.sol
	modified:   boba_examples/turing-hello-world/package.json
	new file:   boba_examples/turing-hello-world/test/local-webserver.ts

* Logfile changes.
 Changes to be committed:
	modified:   l2geth/core/vm/evm.go

* Add array support. Test for enforcement of length limits. Changes
the error strings in TuringHelper.

 Changes to be committed:
	modified:   boba_examples/turing-hello-world/contracts/HelloTuring.sol
	modified:   boba_examples/turing-hello-world/contracts/TuringHelper.sol
	modified:   boba_examples/turing-hello-world/test/local-webserver.ts

* Charge extra gas based on the size of the Turing calldata. Does not
yet account for the L1/L2 gas price ratio.

 Changes to be committed:
	modified:   boba_examples/turing-hello-world/test/local-webserver.ts
	modified:   l2geth/core/evm.go
	modified:   l2geth/core/vm/errors.go
	modified:   l2geth/core/vm/evm.go

* Calculate Turing calldata fee based on L1 and L2 gas prices.

 Changes to be committed:
	modified:   core/evm.go
	modified:   core/vm/evm.go
	modified:   internal/ethapi/api.go

* Set a non-trivial L1 gas price and test large Turing responses.

 Changes to be committed:
	modified:   boba_examples/turing-hello-world/test/local-webserver.ts
	modified:   ops/docker-compose.yml

* Lint fixes
 Changes to be committed:
	modified:   l2geth/core/vm/evm.go
	modified:   l2geth/core/evm.go
	modified:   l2geth/internal/ethapi/api.go

* Revert the change to the default L1 base fee. Set it directly in
the Turing local-webserver test.

 Changes to be committed:
	modified:   boba_examples/turing-hello-world/test/local-webserver.ts
	modified:   ops/docker-compose.yml

* If LOCAL_PRIVATE_KEY is not set, use Hardhat account #16

 Changes to be committed:
	modified:   turing-hello-world/hardhat.config.ts

* As requested, call the new method "V2" rather than "V1".

 Changes to be committed:
	modified:   boba_examples/turing-complex-types/contracts/ComplexType.sol
	modified:   boba_examples/turing-complex-types/contracts/ITuringHelper.sol
	modified:   boba_examples/turing-complex-types/contracts/TuringHelper.sol
	modified:   boba_examples/turing-hello-world/contracts/HelloTuring.sol
	modified:   boba_examples/turing-hello-world/contracts/ITuringHelper.sol
	modified:   boba_examples/turing-hello-world/contracts/TuringHelper.sol
	modified:   l2geth/core/vm/evm.go

Co-authored-by: Riedl Kevin, Bsc <kevin.riedl@wavect.io>
(cherry picked from commit 858587a)

* feat: add sushi.com (#435)

Co-authored-by: Sahil K <86316370+sk-enya@users.noreply.github.com>
(cherry picked from commit e382d69)

* Add ERC1155 bridges (#436)

* Add ERC1155 bridge

* Fix contract and tests

* Add more tests

* Fix issues and bugs

* Record amounts

(cherry picked from commit 11327be)

* Expose Deposit to other account on bridge page. (#421)

* change:
- added way in bridges to deposit to another account
- extended the existing functions.
- unable to test.
- updated the rpcUrl for rinkeby from infura to ankr.com

* - fix for depositTx not found.
- fix for controlled input
- ordered native bridges to top with other bridges.

* updated master config for rinkeby

* fetching the rinkeby chain info from env

* change: updated rinkeby chainid from env instead of hardcoded 4

* change- reverting the l2 env chain info from env as only needed for rinkeby

(cherry picked from commit df6629b)

* fix for unidex broken link (#451)

(cherry picked from commit 206cf40)

* [Gateway] : Remove airdrop page access from gateway (#454)

* remove airdrop page access from gateway

* change: airdrop cleanup, actions, contianer, reducer and readme.

(cherry picked from commit d858381)

* Deploy BOBA to Goerli (#441)

* Deploy core contracts

* Add boba core contract deployment

* Deploy more contracts

* Update gateway

* Add contracts and fix gateway

* Update contract addresses

* Update SDK

* Fix tests

* Add default value to goerli

* small docs and example fix for replica

* Add L2StandardTokenFactory

Co-authored-by: Ino Murko <2582555+InoMurko@users.noreply.github.com>
(cherry picked from commit b7ac3aa)

* Fix rate limiting (#469)

(cherry picked from commit b51c55d)

* Feat : Bring Back Old Dao and Disable VeDao, VeLock, Liquidity Bootstrap (#464)

* bring back old dao on gateway with flag for veDao and Lock

* cleaning up the old dao

* cleanup for testnet name.

* .env cleanup and menu fix for vote and dao

(cherry picked from commit 7817f15)

* Add Teleportation contract and service (#407)

* Add Teleportation contract

* Support multi chains

* Fix initialization and add unit tests

* Add unit tests and fix bugs

* Add deployment script

* Fix issues

* Add new teleportation package

* Emit events

* Add run and service files

* Add teleportation service

* Add unit tests

* Add docker file

* Fix a bug and simplify the env

* Remove unnecessary env and add README

* Add logs

* Fix events

* Block disbursement if chain id is not registered

* Deploy new contract

* Fix bugs

* Update env name

* Fix tests

* Fix gas and event

* Update Teleportation.sol

* Add more tests

* Update Teleportation contract address

* add retries to flaky tests

Co-authored-by: Riedl Kevin, Bsc <kevin.riedl@wavect.io>
Co-authored-by: Ino Murko <2582555+InoMurko@users.noreply.github.com>
Co-authored-by: Ino Murko <ino.murko.github@protonmail.com>
(cherry picked from commit 1b5a65f)

* turing -> hc rebranding: boba-community (esp. Starter project) (#458)

* turing -> hc rebranding: boba-community (esp. Starter project)

* meta tx goerli support, hcStarter progress, goerli faucet deploy, add faucet to addresses

* goerli hc starter works

* cleanup - feedback

(cherry picked from commit 5c71436)

* Add memes wallet to Ecosystem (#447)

Co-authored-by: Sahil K <86316370+sk-enya@users.noreply.github.com>
Co-authored-by: Boyuan-Chen <46272347+Boyuan-Chen@users.noreply.github.com>
(cherry picked from commit 8b14147)

* Add BobaLink service (#481)

* Add BobaLink contract

* Fix typo

* Enable all tests

* Update contract and add tests

* Add tests and update data type

* Add API test

* Add BobaLink service

* Fix tests

* Fix integration tests

* Update order of functions

* Simplified oracle contract

* Remove acceptingSubmissions and updateFutureRounds

* Rewrite contract

* Add initialize function

* Fix getOracles interface and fix ownership

* Fix unit tests and bobalink tests

* Fix integration tests

* Fix boba deployer

* Fix tests and rename functions

* Update default value

* Fix name

(cherry picked from commit 820dc70)

* proxyd updates from upstream (#445)

* proxyd updates

* proxyd tests

(cherry picked from commit ed418d3)

* account abstraction setup (#472)

* account abstraction setup

* account abstraction setup - deps

* test fixes

* run ci tests

* bump typechain and paths

* bump ts-node

* bump dependencies and fix tests

* bump dependencies and fix tests - bundler fixes

* resolve all dependency issues and bump tests

* resolve all dependency issues and bump tests

* fix revert reason on out of bounds

* linting fix

* unused deps and timeout on factory deploy

* replace new revert string erc721

* update yarn.lock

* increase timeouts

* move the timeout into the while loop

* would a bigger cirleci box help sort out nonces

(cherry picked from commit 7a8005c)

* Cookbook added to projects (#488)

(cherry picked from commit 83ae38a)

* [Gateway] : add changenow and now wallet ecosystem (#507)

(cherry picked from commit 39964f9)

* Add dev tool page and TX builder (#498)

* Add dev tool page

* Reset method if ABI is updated

* Move link to footer

(cherry picked from commit 7beb168)

* feat: add custom paymasters for Boba  (#489)

* add Boba deposit paymaster

* update paymasters with decimals

* add tests

* add token exchange tests

* add conversion tests

* add comments

* add upgradeable wallet

* add verifying_paymaster_test

* update contract name

* feat: add alt-l1 paymaster

* doc: update readme

* add deposit paymaster sequence

* add verifying paymaster sequence

* update README

* refactor: rename to manual paymaster

* add gpo paymaster tests

* docs: update readme

* docs: update readme

(cherry picked from commit a46f7d2)

* Add GET method for fraud detector (#506)

(cherry picked from commit ea57e64)

* Upgrade packages and fix local development environment (#512)

* unify typing system

* unify typing system

* cleanup

* unify typing system

* compiler fixes

* Remove builder

* update sentry dependency, build flow in cirleci

* copy ops_boba to the package image

* relayer fast needs to wait for boba deployer

* Build services via Dockerfile.packages

* Start stack only one time

* Fix eslint and tests

* Remove unused packages and fix ts check

* Fix unit tests

* Fix dependency for bundler

* Fix dependency for bundler

* Fix yarn.lock

* Add coverage tests for services

* Run bobalink in docker

* Fix integration test in circle ci

* Add env for API

* Debug production api tests

* Remove log

* Fix release and replace bobalink key

* Fix repeating time

* Fix lint

* Fix output in circleci

* Reduce waiting time for reporting coverage results

Co-authored-by: cby3149 <cby3149@gmail.com>
Co-authored-by: Boyuan-Chen <46272347+Boyuan-Chen@users.noreply.github.com>
(cherry picked from commit b0d7c18)

* [Gateway] :  Add Babylons ecosystem (#518)

* add babylons in ecosystem page

* console cleanup

(cherry picked from commit fd09f80)

* feat: bring back classic dao and separate veDao features (#462)

* feat: bring back classic dao and separate veDao features

* style: lint contract

* rem ve deps from monorepo

* get back the dep for package to build

* style: lint contract

(cherry picked from commit 4aea742)

* modify building images for release workflows (#520)

* building services

* we don't need foundry image

(cherry picked from commit 82020c3)

* [Gateway] : Updated Ecosystem page (#522)

#Syncing ecosystem page with boba.network :
 foxtrot
 foxwallet
 ghostNcolors
 BobaNameService
 arab network
 bitkeep
 blockvision
 bridgeNetwork.
 bundlrNetwork
 ginFinance
 hedgey
 ontowallet
 viaprotocol
 witnet
 xdao

(cherry picked from commit 00a976a)

* Add account monitor feature in monitor service and simplify code in GPO service (#510)

* Simplify code

* Add unified functions and fix bugs

* Add unit tests

* Add balance monitor and improve codebase

* yarn conflict resolved

* Remove unused packages and bump up hardhat version

Co-authored-by: Ino Murko <2582555+InoMurko@users.noreply.github.com>
(cherry picked from commit 7911b0e)

* Reduce size of docker images (#525)

* Reduce size of docker images

* Remove dist folder from boba contract

* Add boba contract as default package

* Remove more packages

* Clean code

* Update codecov report

(cherry picked from commit 46d1475)

* Deploy Goerli API endpoints (#494)

* Deploy meta transaction API

* Update S3 bucket endpoint

* Add Goerli watcher API

(cherry picked from commit 6e61a74)

* beamer is not supporting boba (#526)

* beamer is not supporting boba

* update BoringDAO discord link

* remove shibuidao discord link

* bobapaes url

* Thetanuts update

(cherry picked from commit d9f8756)

* Cache compilers in integration tests (#529)

* Cache compilers in integration tests

* Fix curl

* Fix curl

* cache compilers and check if files exist

* add 15 and 17

* cache versioning

Co-authored-by: Ino Murko <2582555+InoMurko@users.noreply.github.com>
(cherry picked from commit ba9cbf3)

* aws ec2 for building releases on master (#527)

* aws ec2 for building releases on master

* cache compilers

better cache

* revert running action in PRs and mirror master building - cache

* find and add correct solc

Co-authored-by: Souradeep Das <dsouradeep2@gmail.com>

Co-authored-by: Souradeep Das <dsouradeep2@gmail.com>
(cherry picked from commit fd00d4f)

* Deploy BobaLink to Mainnet L2 and Goerli L2 (#492)

* Deploy BobaLink to Mainnet and Goerli

* Fix hardhat setting

* Update l2 contract addresses

* Update bobalink contract addresses

(cherry picked from commit f195af1)

* Update LZ bridge addresses on Testnet (#476)

(cherry picked from commit 1c73cdd)

* Stabilize integration tests (#534)

* Fix boba api test

* debug tests

* Transfer value to spender

* Fix boba api test

* Avoid deposit if balance is enough

* remove retries

Co-authored-by: Ino Murko <2582555+InoMurko@users.noreply.github.com>
(cherry picked from commit 2d8268c)

Co-authored-by: Michael Montour <83612658+mmontour1306@users.noreply.github.com>
Co-authored-by: HHK <80489471+HHK-ETH@users.noreply.github.com>
Co-authored-by: Boyuan-Chen <46272347+Boyuan-Chen@users.noreply.github.com>
Co-authored-by: Sahil K <86316370+sk-enya@users.noreply.github.com>
Co-authored-by: Riedl Kevin, Bsc <kevin.riedl@wavect.io>
Co-authored-by: Ahmad Heidari <headria@gmail.com>
Co-authored-by: Jackson Felty <30478599+pnkfluffy@users.noreply.github.com>
Co-authored-by: Elijah Fischer <75019378+elfischernow@users.noreply.github.com>
Co-authored-by: Souradeep Das <dsouradeep2@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants