Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
6016678f
Commit
6016678f
authored
Jun 09, 2023
by
Mark Tyneway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ops: delete batch submitter refs
parent
6395c76d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
48 deletions
+0
-48
batch-submitter.env
ops/envs/batch-submitter.env
+0
-21
batch-submitter.sh
ops/scripts/batch-submitter.sh
+0
-27
No files found.
ops/envs/batch-submitter.env
deleted
100644 → 0
View file @
6395c76d
BUILD_ENV=development
ETH_NETWORK_NAME=clique
LOG_LEVEL=debug
BATCH_SUBMITTER_LOG_LEVEL=debug
BATCH_SUBMITTER_LOG_TERMINAL=true
BATCH_SUBMITTER_MIN_L1_TX_SIZE=32
BATCH_SUBMITTER_MAX_L1_TX_SIZE=90000
BATCH_SUBMITTER_MAX_PLAINTEXT_BATCH_SIZE=120000
BATCH_SUBMITTER_MIN_STATE_ROOT_ELEMENTS=1
BATCH_SUBMITTER_MAX_STATE_ROOT_ELEMENTS=3000
BATCH_SUBMITTER_MAX_BATCH_SUBMISSION_TIME=0
BATCH_SUBMITTER_POLL_INTERVAL=500ms
BATCH_SUBMITTER_NUM_CONFIRMATIONS=1
BATCH_SUBMITTER_SAFE_ABORT_NONCE_TOO_LOW_COUNT=3
BATCH_SUBMITTER_RESUBMISSION_TIMEOUT=1s
BATCH_SUBMITTER_FINALITY_CONFIRMATIONS=0
BATCH_SUBMITTER_RUN_TX_BATCH_SUBMITTER=true
BATCH_SUBMITTER_RUN_STATE_BATCH_SUBMITTER=true
BATCH_SUBMITTER_SAFE_MINIMUM_ETHER_BALANCE=0
BATCH_SUBMITTER_CLEAR_PENDING_TXS=false
ops/scripts/batch-submitter.sh
deleted
100755 → 0
View file @
6395c76d
#!/bin/sh
set
-e
RETRIES
=
${
RETRIES
:-
40
}
if
[[
!
-z
"
$URL
"
]]
;
then
# get the addrs from the URL provided
ADDRESSES
=
$(
curl
--fail
--show-error
--silent
--retry-connrefused
--retry
$RETRIES
--retry-delay
5
$URL
)
# set the env
export
CTC_ADDRESS
=
$(
echo
$ADDRESSES
| jq
-r
'.CanonicalTransactionChain'
)
export
SCC_ADDRESS
=
$(
echo
$ADDRESSES
| jq
-r
'.StateCommitmentChain'
)
fi
# waits for l2geth to be up
curl
--fail
\
--show-error
\
--silent
\
--retry-connrefused
\
--retry
$RETRIES
\
--retry-delay
1
\
--output
/dev/null
\
$L2_ETH_RPC
# go
exec
batch-submitter
"
$@
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment