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
66fc7268
Unverified
Commit
66fc7268
authored
Oct 13, 2021
by
Mark Tyneway
Committed by
GitHub
Oct 13, 2021
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1567 from ethereum-optimism/linty-lint
fix: linting
parents
02d46703
32577117
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
19 deletions
+22
-19
batch-submitter.spec.ts
...ch-submitter/test/batch-submitter/batch-submitter.spec.ts
+1
-1
config.ts
packages/contracts/src/contract-deployment/config.ts
+1
-1
transaction-indexer.md
specs/l2geth/transaction-indexer.md
+20
-17
No files found.
packages/batch-submitter/test/batch-submitter/batch-submitter.spec.ts
View file @
66fc7268
...
@@ -229,7 +229,7 @@ describe('BatchSubmitter', () => {
...
@@ -229,7 +229,7 @@ describe('BatchSubmitter', () => {
txBatchTxSubmitter
,
txBatchTxSubmitter
,
1
,
1
,
new
Logger
({
name
:
TX_BATCH_SUBMITTER_LOG_TAG
}),
new
Logger
({
name
:
TX_BATCH_SUBMITTER_LOG_TAG
}),
testMetrics
,
testMetrics
)
)
}
}
...
...
packages/contracts/src/contract-deployment/config.ts
View file @
66fc7268
...
@@ -154,4 +154,4 @@ export const makeContractDeployConfig = async (
...
@@ -154,4 +154,4 @@ export const makeContractDeployConfig = async (
params
:
[
`0x
${
'
11
'
.
repeat
(
20
)}
`
],
params
:
[
`0x
${
'
11
'
.
repeat
(
20
)}
`
],
},
},
}
}
}
}
\ No newline at end of file
specs/l2geth/transaction-indexer.md
View file @
66fc7268
...
@@ -371,9 +371,10 @@ function parseSequencerBatchAppendedEvent(
...
@@ -371,9 +371,10 @@ function parseSequencerBatchAppendedEvent(
```
solidity
```
solidity
enum QueueOrigin {
enum QueueOrigin {
SEQUENCER_QUEUE,
SEQUENCER_QUEUE,
L1TOL2_QUEUE
L1TOL2_QUEUE
}
}
```
```
### Structs
### Structs
...
@@ -382,29 +383,31 @@ enum QueueOrigin {
...
@@ -382,29 +383,31 @@ enum QueueOrigin {
```
solidity
```
solidity
struct Transaction {
struct Transaction {
QueueOrigin l1QueueOrigin;
QueueOrigin l1QueueOrigin;
uint256
timestamp;
uint256
timestamp;
uint256
blockNumber;
uint256
blockNumber;
address
l1TxOrigin;
address
l1TxOrigin;
address
entrypoint;
address
entrypoint;
uint256
gasLimit;
uint256
gasLimit;
bytes
data;
bytes
data;
}
}
```
```
#### EnqueuedTransaction
#### EnqueuedTransaction
```
solidity
```
solidity
struct EnqueuedTransaction {
struct EnqueuedTransaction {
QueueOrigin l1QueueOrigin;
QueueOrigin l1QueueOrigin;
uint256
timestamp;
uint256
timestamp;
uint256
blockNumber;
uint256
blockNumber;
address
l1TxOrigin;
address
l1TxOrigin;
address
entrypoint;
address
entrypoint;
uint256
gasLimit;
uint256
gasLimit;
bytes
data;
bytes
data;
uint256
queueIndex;
uint256
queueIndex;
}
}
```
```
### Events
### Events
...
...
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