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

Synchronize latest code #2752

Closed
wants to merge 25 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
52689b3
[gas_market] Fix AdminCap and release gas_market v1 (#2717)
jolestar Sep 30, 2024
c62cea0
[release] Prepare release v0.7.3 (#2718)
jolestar Sep 30, 2024
8b4e548
chore(deps): bump const-hex from 1.13.0 to 1.13.1 (#2719)
dependabot[bot] Oct 1, 2024
d16aa66
use HashMap::with_capacity (#2723)
nkysg Oct 3, 2024
3d25d7e
[oracle] Fix oracle websocket error handle (#2722)
jolestar Oct 3, 2024
e452a83
chore(deps): bump axum from 0.7.6 to 0.7.7 (#2708)
dependabot[bot] Oct 3, 2024
674b87e
chore(deps): bump tokio-tungstenite from 0.23.1 to 0.24.0 (#2725)
dependabot[bot] Oct 4, 2024
a8dde64
chore(deps): bump futures-util from 0.3.30 to 0.3.31 (#2726)
dependabot[bot] Oct 7, 2024
58f937c
chore(deps): bump once_cell from 1.20.1 to 1.20.2 (#2727)
dependabot[bot] Oct 7, 2024
a8303ad
[docs] Introduce RGas and PreMainnet (#2730)
jolestar Oct 8, 2024
d92ad56
[kube] Kube deployment for testnet and mainnet (#2720)
jolestar Oct 8, 2024
2c88938
chore(deps): bump proc-macro2 from 1.0.86 to 1.0.87 (#2733)
dependabot[bot] Oct 8, 2024
be41a06
chore(deps): bump futures from 0.3.30 to 0.3.31 (#2732)
dependabot[bot] Oct 8, 2024
fb97bf9
chore(deps): bump pin-project from 1.1.5 to 1.1.6 (#2728)
dependabot[bot] Oct 8, 2024
cf89d39
chore(deps): bump tiny-bip39 from 1.0.0 to 1.0.1 (#2729)
dependabot[bot] Oct 8, 2024
a180c3a
Limiter/logs (#2737)
wow-sven Oct 9, 2024
7ea5048
update sdk rpc version & add mainnet env (#2735)
wow-sven Oct 9, 2024
bc167cb
[bitcoin-move] babylon integration (#2734)
mx819812523 Oct 9, 2024
b31004c
refactor(rooch-da): introduce new data struct for DA and approach to …
popcnt1 Oct 10, 2024
a41bd2e
refactor(rooch-da): add nop_backend flag for fallback handling (#2741)
popcnt1 Oct 10, 2024
7567703
feat(rooch-da): Enhance get_submitting_blocks with count limit (#2742)
popcnt1 Oct 10, 2024
0e8b1b2
blog: Babylon and Rooch Hackathon & hacker house (#2744)
geometryolife Oct 11, 2024
496cb9a
blog: add Balylon hacker house zh (#2745)
geometryolife Oct 11, 2024
3b43b1e
chore(deps): bump regex from 1.10.6 to 1.11.0 (#2713)
dependabot[bot] Oct 12, 2024
11dc8ab
Portal gas (#2746)
wow-sven Oct 12, 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: 1 addition & 1 deletion .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,5 @@ jobs:
chmod 600 private_key.pem
sudo apt update
sudo apt install -y --no-install-recommends openssh-server
ssh -o StrictHostKeyChecking=no -i private_key.pem $USER@$HOST bash -c "'sleep 30' && docker image prune -a -f && docker ps | grep main_debug | awk '{print \$1}' | xargs -r docker stop && docker ps -a | grep main_debug | awk '{print \$1}' | xargs -r docker rm -f && docker pull 'ghcr.io/rooch-network/rooch:main_debug' && docker run --rm -v /root:/root ghcr.io/rooch-network/rooch:main_debug server clean -n dev -f && docker run -d -v /root:/root -p 6767:6767 -p 9184:9184 'ghcr.io/rooch-network/rooch:main_debug' server start -n dev --btc-rpc-url '${{secrets.BTC_REGTEST_RPC_URL}}' --btc-rpc-username rooch-regtest --btc-rpc-password '${{secrets.BTC_REGTEST_RPC_PWD}}' --da '{\"internal-da-server\": {\"servers\": [{\"open-da\": {\"scheme\": \"fs\"}}]}}' --traffic-burst-size 100000 --traffic-per-second 10000"
ssh -o StrictHostKeyChecking=no -i private_key.pem $USER@$HOST bash -c "'sleep 30' && docker image prune -a -f && docker ps | grep main_debug | awk '{print \$1}' | xargs -r docker stop && docker ps -a | grep main_debug | awk '{print \$1}' | xargs -r docker rm -f && docker pull 'ghcr.io/rooch-network/rooch:main_debug' && docker run --rm -v /root:/root ghcr.io/rooch-network/rooch:main_debug server clean -n dev -f && docker run -d -v /root:/root -p 6767:6767 -p 9184:9184 'ghcr.io/rooch-network/rooch:main_debug' server start -n dev --btc-rpc-url '${{secrets.BTC_REGTEST_RPC_URL}}' --btc-rpc-username rooch-regtest --btc-rpc-password '${{secrets.BTC_REGTEST_RPC_PWD}}' --da '{\"da-backend\": {\"backends\": [{\"open-da\": {\"scheme\": \"fs\"}}]}}' --traffic-burst-size 100000 --traffic-per-second 1"
ssh -o StrictHostKeyChecking=no -i private_key.pem $USER@$HOST "cd /root/rooch && git pull origin main && bash scripts/check_dev_deploy_status.sh main_debug '${{ secrets.TESTNET_MNEMONIC_PHRASE }}'"
Loading
Loading