Skip to content

Commit ec7956f

Browse files
committed
fix: Re-enable the v0.6 entrypoint and provision a second local acct.
Changes to be committed: modified: Dockerfile modified: hybrid-compute/deploy-local.py modified: hybrid-compute/local.env modified: hybrid-compute/runit.sh
1 parent f008e90 commit ec7956f

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ COPY --from=builder /app/target/release/rundler /usr/local/bin
5555

5656
EXPOSE 3000 8080
5757
ENTRYPOINT ["/usr/local/bin/rundler"]
58-
CMD ["node", "--disable_entry_point_v0_6"]
58+
CMD ["node"]

hybrid-compute/deploy-local.py

+2
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,8 @@ def boba_balance(addr):
375375
print("Continuing")
376376

377377
fund_addr(env_vars['BUNDLER_ADDR'])
378+
if 'BUNDLER_ADDR_V6' in env_vars:
379+
fund_addr(env_vars['BUNDLER_ADDR_V6'])
378380

379381
(ep_addr, hh_addr, saf_addr, haf_addr, ha0_addr) = deploy_base()
380382

hybrid-compute/local.env

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ DEPLOY_ADDR=0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266
66
DEPLOY_PRIVKEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80
77
BUNDLER_ADDR=0xB834a876b7234eb5A45C0D5e693566e8842400bB
88
BUILDER_PRIVKEY=0xf91be07ef5a01328015cae4f2e5aefe3c4577a90abb8e2e913fe071b0e3732ed
9+
BUNDLER_ADDR_V6=0xa591f424D2A7e82a3d751b9f228D1fF158C0deF4
10+
BUILDER_PRIVKEY_V6=0x901fbcb39850725395e93daee75a6174d78c222d2abff350725686919272fcb4
911
HC_SYS_OWNER=0x2A9099A58E0830A4Ab418c2a19710022466F1ce7
1012
HC_SYS_PRIVKEY=0x75cd983f0f4714969b152baa258d849473732905e2301467303dacf5a09fdd57
1113
OC_OWNER=0xE073fC0ff8122389F6e693DD94CcDc5AF637448e

hybrid-compute/runit.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ RUST_BACKTRACE=1 ETH_POLL_INTERVAL_MILLIS=5000 \
55
../target/debug/rundler node \
66
--rpc.port 3300 \
77
--metrics.port 8380 \
8-
--builder.private_keys $BUILDER_PRIVKEY \
9-
--disable_entry_point_v0_6 \
8+
--builder.private_keys $BUILDER_PRIVKEY_V6,$BUILDER_PRIVKEY \
109
--builder.dropped_status_unsupported \
1110
$@ 2>&1

0 commit comments

Comments
 (0)