Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Upgrade main to v0.2.0 #49

Merged
merged 42 commits into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
2e40e83
Fix testnet branch (#20)
jsanmigimeno May 29, 2024
10e2106
Update git build to build testnet pushes (#22)
reednaa May 29, 2024
7855a64
feat: Allow 'startingBlock' to be a negative offset (#21)
jsanmigimeno May 30, 2024
b86a097
fix: Getter worker initialization stops on worker 'skip'
jsanmigimeno Jun 21, 2024
dc44835
[feat]: Enhance wallet port communication (#30)
jsanmigimeno Jun 25, 2024
98a39bc
[feat]: Implement better bounty evaluation (#29)
jsanmigimeno Jun 25, 2024
dbdf734
feat: Allow for AMB payment (basic implementation) (#34)
jsanmigimeno Jun 25, 2024
22e5280
refactor: Fix variable name
jsanmigimeno Jun 25, 2024
8dbd169
Fix: incorrect error logging
jsanmigimeno Jun 25, 2024
20a8ac1
chore: Add warning on the monitor's failure to update the latest bloc…
jsanmigimeno Jun 25, 2024
078293b
chore: Refactor 'blocks' logs
jsanmigimeno Jun 28, 2024
3c4d35d
chore: Streamline the wormhole-engine logs into the Relayer's logging…
jsanmigimeno Jun 28, 2024
d577c94
[feat] Layer Zero Relayer support (#36)
ajimeno04 Jun 28, 2024
0fe331d
fix: Profitability factor logic
jsanmigimeno Jun 28, 2024
1559904
fix: Add missing 'resolvers' configuration to config.example.yaml
jsanmigimeno Jun 28, 2024
bb7ba67
chore: Update the docker image to 'testnet' for the testnet branch
jsanmigimeno Jun 28, 2024
bf09e1b
Merge branch 'testnet' into jsanmi/overhaul-logs
jsanmigimeno Jun 28, 2024
089801c
chore: Refactor 'blocks' logs on the LZ collector
jsanmigimeno Jun 28, 2024
726c15a
chore: Overhaul log statements
jsanmigimeno Jun 28, 2024
905378e
Merge pull request #40 from catalystdao/jsanmi/overhaul-logs
jsanmigimeno Jun 28, 2024
d667fa9
chore: Minor log update
jsanmigimeno Jul 1, 2024
75f6098
fix: Polymer events query
jsanmigimeno Jul 1, 2024
587d234
[feat]: Add Chain ID verification against RPC (#37)
ajimeno04 Jul 2, 2024
8b69899
feat: Modify the way in which the 'profitabilityFactor' is applied
jsanmigimeno Jul 2, 2024
ca5b1c5
[feat]: Implement pricing controller (#42)
jsanmigimeno Jul 2, 2024
a58350a
chore: Set maximum log size on docker-compose (#45)
jsanmigimeno Jul 5, 2024
82a603f
chore: Upgrade pnpm-lock to version 9 (#46)
jsanmigimeno Jul 5, 2024
2bb6d47
[chore]: Store Refactor (#47)
jsanmigimeno Jul 19, 2024
8227893
fix: Persister redis queue
jsanmigimeno Jul 19, 2024
9eba531
feat: Double check 'priority' status on order eval
jsanmigimeno Jul 19, 2024
d86a98a
chore: Implement destinationImplementation cache on Wormhole
jsanmigimeno Jul 19, 2024
df046aa
feat: Implement 'toIncentivesAddress' query on LZ collector
jsanmigimeno Jul 19, 2024
24a626c
chore: Add transaction receipt query retry mechanism
jsanmigimeno Jul 19, 2024
b1aec2c
chore: Remove unnecessary LZ type
jsanmigimeno Jul 19, 2024
135ccd1
chore: Add missing 'resolver' to the wormhole recovery worker
jsanmigimeno Jul 19, 2024
98ef71b
refactor: Overhaul LayerZero collector implementation
jsanmigimeno Jul 20, 2024
be45584
feat: Allow recovery of passed LZ collector events
jsanmigimeno Jul 22, 2024
03a2e38
[feat]: Implement an evaluator service and controller (#48)
jsanmigimeno Jul 23, 2024
2736f9b
[feat]: Overhaul private key management (#27)
jsanmigimeno Jul 24, 2024
ca6bbfc
chore: Simplify chainId validation logic
jsanmigimeno Jul 24, 2024
8176c0a
chore: Bump version to 0.2.0
jsanmigimeno Jul 25, 2024
3f84e32
Merge branch 'testnet' into jsanmi/main-v0.2.0
jsanmigimeno Jul 25, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ RELAYER_PORT=3000

# Docker
COMPOSE_PROFILES="wormhole" # Set the docker compose profiles as a comma separated list
MAX_LOG_SIZE="500m"
MAX_LOG_FILES="5"

# Wormhole
SPY_PORT=7073
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ on:
push:
branches:
- 'main'
- 'testnet'
tags:
- 'v*'
pull_request:
branches:
- 'main'
- 'testnet'

jobs:
build:
Expand All @@ -31,8 +33,9 @@ jobs:
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern=v{{version}}
type=semver,pattern=v{{major}}
type=semver,pattern=v{{major}}.{{minor}}
-
name: Login to Docker Hub
uses: docker/login-action@v3
Expand Down
Loading