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
e7aa48f1
Commit
e7aa48f1
authored
Jul 13, 2023
by
Joshua Gutow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
op-challenger: Main method
parent
129c22c8
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
131 additions
and
108 deletions
+131
-108
challenger.go
op-challenger/challenger.go
+39
-1
agent.go
op-challenger/fault/agent.go
+23
-14
alphabet_provider.go
op-challenger/fault/alphabet_provider.go
+15
-6
alphabet_provider_test.go
op-challenger/fault/alphabet_provider_test.go
+6
-8
game.go
op-challenger/fault/game.go
+6
-9
loader.go
op-challenger/fault/loader.go
+4
-6
loader_test.go
op-challenger/fault/loader_test.go
+6
-41
solver.go
op-challenger/fault/solver.go
+17
-9
solver_test.go
op-challenger/fault/solver_test.go
+15
-14
No files found.
op-challenger/challenger.go
View file @
e7aa48f1
package
op_challenger
import
(
"fmt"
"time"
"github.com/ethereum-optimism/optimism/op-bindings/bindings"
"github.com/ethereum-optimism/optimism/op-challenger/config"
"github.com/ethereum-optimism/optimism/op-challenger/fault"
"github.com/ethereum-optimism/optimism/op-service/txmgr"
"github.com/ethereum-optimism/optimism/op-service/txmgr/metrics"
"github.com/ethereum/go-ethereum/ethclient"
"github.com/ethereum/go-ethereum/log"
)
// Main is the programmatic entry-point for running op-challenger
func
Main
(
logger
log
.
Logger
,
cfg
*
config
.
Config
)
error
{
client
,
err
:=
ethclient
.
Dial
(
cfg
.
L1EthRpc
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"failed to dial L1: %w"
,
err
)
}
txMgr
,
err
:=
txmgr
.
NewSimpleTxManager
(
"challenger"
,
logger
,
&
metrics
.
NoopTxMetrics
{},
cfg
.
TxMgrConfig
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"failed to create the transaction manager: %w"
,
err
)
}
contract
,
err
:=
bindings
.
NewFaultDisputeGameCaller
(
cfg
.
GameAddress
,
client
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"failed to bind the fault dispute game contract: %w"
,
err
)
}
loader
:=
fault
.
NewLoader
(
logger
,
contract
)
responder
,
err
:=
fault
.
NewFaultResponder
(
logger
,
txMgr
,
cfg
.
GameAddress
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"failed to create the responder: %w"
,
err
)
}
gameDepth
:=
4
trace
:=
fault
.
NewAlphabetProvider
(
cfg
.
AlphabetTrace
,
uint64
(
gameDepth
))
agent
:=
fault
.
NewAgent
(
loader
,
gameDepth
,
trace
,
responder
,
logger
)
logger
.
Info
(
"Fault game started"
)
return
nil
for
{
logger
.
Info
(
"Performing action"
)
_
=
agent
.
Act
()
time
.
Sleep
(
300
*
time
.
Millisecond
)
}
}
op-challenger/fault/agent.go
View file @
e7aa48f1
...
...
@@ -3,6 +3,7 @@ package fault
import
(
"context"
"errors"
"fmt"
"github.com/ethereum/go-ethereum/log"
)
...
...
@@ -36,11 +37,15 @@ func (a *Agent) Act() error {
}
// Create counter claims
for
_
,
claim
:=
range
game
.
Claims
()
{
_
=
a
.
move
(
claim
,
game
)
if
err
:=
a
.
move
(
claim
,
game
);
err
!=
nil
{
log
.
Error
(
"Failed to move"
,
"err"
,
err
)
}
}
// Step on all leaf claims
for
_
,
claim
:=
range
game
.
Claims
()
{
_
=
a
.
step
(
claim
,
game
)
if
err
:=
a
.
step
(
claim
,
game
);
err
!=
nil
{
log
.
Error
(
"Failed to step"
,
"err"
,
err
)
}
}
return
nil
}
...
...
@@ -49,34 +54,33 @@ func (a *Agent) Act() error {
func
(
a
*
Agent
)
newGameFromContracts
(
ctx
context
.
Context
)
(
Game
,
error
)
{
claims
,
err
:=
a
.
loader
.
FetchClaims
(
ctx
)
if
err
!=
nil
{
return
nil
,
err
return
nil
,
fmt
.
Errorf
(
"failed to fetch claims: %w"
,
err
)
}
if
len
(
claims
)
==
0
{
return
nil
,
errors
.
New
(
"no claims"
)
}
game
:=
NewGameState
(
claims
[
0
],
uint64
(
a
.
maxDepth
))
if
err
:=
game
.
PutAll
(
claims
[
1
:
]);
err
!=
nil
{
return
nil
,
err
return
nil
,
fmt
.
Errorf
(
"failed to load claims into the local state: %w"
,
err
)
}
return
game
,
nil
}
// move determines & executes the next move given a claim
pair
// move determines & executes the next move given a claim
func
(
a
*
Agent
)
move
(
claim
Claim
,
game
Game
)
error
{
a
.
log
.
Info
(
"Fetching claims"
)
nextMove
,
err
:=
a
.
solver
.
NextMove
(
claim
)
if
err
!=
nil
{
a
.
log
.
Warn
(
"Failed to execute the next move"
,
"err"
,
err
)
return
err
}
if
nextMove
==
nil
{
a
.
log
.
Info
(
"No next move"
)
a
.
log
.
Debug
(
"No next move"
)
return
nil
}
move
:=
*
nextMove
log
:=
a
.
log
.
New
(
"is_defend"
,
move
.
DefendsParent
(),
"depth"
,
move
.
Depth
(),
"index_at_depth"
,
move
.
IndexAtDepth
(),
"value"
,
move
.
Value
,
"
letter"
,
string
(
move
.
Value
[
31
:
]),
"trace_index"
,
move
.
Value
[
30
]
,
"parent_
letter"
,
string
(
claim
.
Value
[
31
:
]),
"parent_trace_index"
,
claim
.
Value
[
30
]
)
log
:=
a
.
log
.
New
(
"is_defend"
,
move
.
DefendsParent
(),
"depth"
,
move
.
Depth
(),
"index_at_depth"
,
move
.
IndexAtDepth
(),
"
value"
,
move
.
Value
,
"trace_index"
,
move
.
TraceIndex
(
a
.
maxDepth
)
,
"parent_
value"
,
claim
.
Value
,
"parent_trace_index"
,
claim
.
TraceIndex
(
a
.
maxDepth
)
)
if
game
.
IsDuplicate
(
move
)
{
log
.
Debug
(
"Duplicate move"
)
return
nil
...
...
@@ -85,25 +89,30 @@ func (a *Agent) move(claim Claim, game Game) error {
return
a
.
responder
.
Respond
(
context
.
TODO
(),
move
)
}
// step
attempts to execute the step
through the responder
// step
determines & executes the next step against a leaf claim
through the responder
func
(
a
*
Agent
)
step
(
claim
Claim
,
game
Game
)
error
{
if
claim
.
Depth
()
!=
a
.
maxDepth
{
return
nil
}
a
.
log
.
Info
(
"Attempting step"
,
"claim_depth"
,
claim
.
Depth
(),
"maxDepth"
,
a
.
maxDepth
)
step
,
err
:=
a
.
solver
.
AttemptStep
(
claim
)
if
err
!=
nil
{
a
.
log
.
Info
(
"Failed to get a step"
,
"err"
,
err
)
a
.
log
.
Warn
(
"Failed to get a step"
,
"err"
,
err
)
return
err
}
stateData
,
err
:=
a
.
trace
.
GetPreimage
(
step
.
PreStateTraceIndex
)
if
err
!=
nil
{
a
.
log
.
Warn
(
"Failed to get a state data"
,
"err"
,
err
)
return
err
}
a
.
log
.
Info
(
"Performing step"
,
"depth"
,
step
.
LeafClaim
.
Depth
(),
"index_at_depth"
,
step
.
LeafClaim
.
IndexAtDepth
(),
"value"
,
step
.
LeafClaim
.
Value
,
"is_attack"
,
step
.
IsAttack
)
"is_attack"
,
step
.
IsAttack
,
"prestate_trace_index"
,
step
.
PreStateTraceIndex
)
callData
:=
StepCallData
{
ClaimIndex
:
uint64
(
step
.
LeafClaim
.
ContractIndex
),
IsAttack
:
step
.
IsAttack
,
StateData
:
stateData
,
}
return
a
.
responder
.
Step
(
context
.
TODO
(),
callData
)
}
op-challenger/fault/alphabet_provider.go
View file @
e7aa48f1
...
...
@@ -5,6 +5,7 @@ import (
"strings"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
)
// AlphabetProvider is a [TraceProvider] that provides claims for specific
...
...
@@ -32,7 +33,7 @@ func (ap *AlphabetProvider) GetPreimage(i uint64) ([]byte, error) {
if
i
>=
uint64
(
len
(
ap
.
state
))
{
return
ap
.
GetPreimage
(
uint64
(
len
(
ap
.
state
))
-
1
)
}
return
buildAlphabetClaimBytes
(
i
,
ap
.
state
[
i
]),
nil
return
BuildAlphabetPreimage
(
i
,
ap
.
state
[
i
]),
nil
}
// Get returns the claim value at the given index in the trace.
...
...
@@ -41,17 +42,25 @@ func (ap *AlphabetProvider) Get(i uint64) (common.Hash, error) {
if
err
!=
nil
{
return
common
.
Hash
{},
err
}
return
c
ommon
.
BytesTo
Hash
(
claimBytes
),
nil
return
c
rypto
.
Keccak256
Hash
(
claimBytes
),
nil
}
//
buildAlphabetClaimBytes
constructs the claim bytes for the index and state item.
func
buildAlphabetClaimBytes
(
i
uint64
,
letter
string
)
[]
byte
{
return
append
(
IndexToBytes
(
i
),
[]
byte
(
letter
)
...
)
//
BuildAlphabetPreimage
constructs the claim bytes for the index and state item.
func
BuildAlphabetPreimage
(
i
uint64
,
letter
string
)
[]
byte
{
return
append
(
IndexToBytes
(
i
),
LetterToBytes
(
letter
)
...
)
}
// IndexToBytes converts an index to a byte slice big endian
func
IndexToBytes
(
i
uint64
)
[]
byte
{
big
:=
new
(
big
.
Int
)
big
.
SetUint64
(
i
)
return
big
.
Bytes
()
out
:=
make
([]
byte
,
32
)
return
big
.
FillBytes
(
out
)
}
// LetterToBytes converts a letter to a 32 byte array
func
LetterToBytes
(
letter
string
)
[]
byte
{
out
:=
make
([]
byte
,
32
)
out
[
31
]
=
byte
(
letter
[
0
])
return
out
}
op-challenger/fault/alphabet_provider_test.go
View file @
e7aa48f1
...
...
@@ -20,15 +20,15 @@ func TestAlphabetProvider_Get_ClaimsByTraceIndex(t *testing.T) {
}{
{
7
,
common
.
HexToHash
(
"0x0000000000000000000000000000000000000000000000000000000000000768
"
),
alphabetClaim
(
7
,
"h
"
),
},
{
3
,
common
.
HexToHash
(
"0x0000000000000000000000000000000000000000000000000000000000000364
"
),
alphabetClaim
(
3
,
"d
"
),
},
{
5
,
common
.
HexToHash
(
"0x0000000000000000000000000000000000000000000000000000000000000566
"
),
alphabetClaim
(
5
,
"f
"
),
},
}
...
...
@@ -54,7 +54,7 @@ func FuzzIndexToBytes(f *testing.F) {
// returns the correct pre-image for a index.
func
TestGetPreimage_Succeeds
(
t
*
testing
.
T
)
{
ap
:=
NewAlphabetProvider
(
"abc"
,
2
)
expected
:=
append
(
IndexToBytes
(
uint64
(
0
)),
[]
byte
(
"a"
)
...
)
expected
:=
BuildAlphabetPreimage
(
0
,
"a'"
)
retrieved
,
err
:=
ap
.
GetPreimage
(
uint64
(
0
))
require
.
NoError
(
t
,
err
)
require
.
Equal
(
t
,
expected
,
retrieved
)
...
...
@@ -73,8 +73,7 @@ func TestGet_Succeeds(t *testing.T) {
ap
:=
NewAlphabetProvider
(
"abc"
,
2
)
claim
,
err
:=
ap
.
Get
(
0
)
require
.
NoError
(
t
,
err
)
concatenated
:=
append
(
IndexToBytes
(
0
),
[]
byte
(
"a"
)
...
)
expected
:=
common
.
BytesToHash
(
concatenated
)
expected
:=
alphabetClaim
(
0
,
"a"
)
require
.
Equal
(
t
,
expected
,
claim
)
}
...
...
@@ -92,7 +91,6 @@ func TestGet_Extends(t *testing.T) {
ap
:=
NewAlphabetProvider
(
"abc"
,
2
)
claim
,
err
:=
ap
.
Get
(
3
)
require
.
NoError
(
t
,
err
)
concatenated
:=
append
(
IndexToBytes
(
2
),
[]
byte
(
"c"
)
...
)
expected
:=
common
.
BytesToHash
(
concatenated
)
expected
:=
alphabetClaim
(
2
,
"c"
)
require
.
Equal
(
t
,
expected
,
claim
)
}
op-challenger/fault/game.go
View file @
e7aa48f1
...
...
@@ -36,9 +36,8 @@ type Game interface {
}
type
extendedClaim
struct
{
self
Claim
contractIndex
int
children
[]
ClaimData
self
Claim
children
[]
ClaimData
}
// gameState is a struct that represents the state of a dispute game.
...
...
@@ -54,9 +53,8 @@ type gameState struct {
func
NewGameState
(
root
Claim
,
depth
uint64
)
*
gameState
{
claims
:=
make
(
map
[
ClaimData
]
*
extendedClaim
)
claims
[
root
.
ClaimData
]
=
&
extendedClaim
{
self
:
root
,
contractIndex
:
0
,
children
:
make
([]
ClaimData
,
0
),
self
:
root
,
children
:
make
([]
ClaimData
,
0
),
}
return
&
gameState
{
root
:
root
.
ClaimData
,
...
...
@@ -87,9 +85,8 @@ func (g *gameState) Put(claim Claim) error {
parent
.
children
=
append
(
parent
.
children
,
claim
.
ClaimData
)
}
g
.
claims
[
claim
.
ClaimData
]
=
&
extendedClaim
{
self
:
claim
,
contractIndex
:
claim
.
ContractIndex
,
children
:
make
([]
ClaimData
,
0
),
self
:
claim
,
children
:
make
([]
ClaimData
,
0
),
}
return
nil
}
...
...
op-challenger/fault/loader.go
View file @
e7aa48f1
...
...
@@ -28,18 +28,14 @@ type Loader interface {
// loader pulls in fault dispute game claim data periodically and over subscriptions.
type
loader
struct
{
log
log
.
Logger
state
Game
log
log
.
Logger
claimFetcher
ClaimFetcher
}
// NewLoader creates a new [loader].
func
NewLoader
(
log
log
.
Logger
,
state
Game
,
claimFetcher
ClaimFetcher
)
*
loader
{
func
NewLoader
(
log
log
.
Logger
,
claimFetcher
ClaimFetcher
)
*
loader
{
return
&
loader
{
log
:
log
,
state
:
state
,
claimFetcher
:
claimFetcher
,
}
}
...
...
@@ -60,6 +56,8 @@ func (l *loader) fetchClaim(ctx context.Context, arrIndex uint64) (Claim, error)
Value
:
fetchedClaim
.
Claim
,
Position
:
NewPositionFromGIndex
(
fetchedClaim
.
Position
.
Uint64
()),
},
ContractIndex
:
int
(
arrIndex
),
ParentContractIndex
:
int
(
fetchedClaim
.
ParentIndex
),
}
if
!
claim
.
IsRootPosition
()
{
...
...
op-challenger/fault/loader_test.go
View file @
e7aa48f1
...
...
@@ -15,46 +15,8 @@ import (
var
(
mockClaimDataError
=
fmt
.
Errorf
(
"claim data errored"
)
mockClaimLenError
=
fmt
.
Errorf
(
"claim len errored"
)
mockPutError
=
fmt
.
Errorf
(
"put errored"
)
)
type
mockGameState
struct
{
putCalled
int
putErrors
bool
}
func
(
m
*
mockGameState
)
Put
(
claim
Claim
)
error
{
m
.
putCalled
++
if
m
.
putErrors
{
return
mockPutError
}
return
nil
}
func
(
m
*
mockGameState
)
PutAll
(
claims
[]
Claim
)
error
{
m
.
putCalled
+=
len
(
claims
)
if
m
.
putErrors
{
return
mockPutError
}
return
nil
}
func
(
m
*
mockGameState
)
Claims
()
[]
Claim
{
return
[]
Claim
{}
}
func
(
m
*
mockGameState
)
IsDuplicate
(
claim
Claim
)
bool
{
return
false
}
func
(
m
*
mockGameState
)
PreStateClaim
(
claim
Claim
)
(
Claim
,
error
)
{
panic
(
"unimplemented"
)
}
func
(
m
*
mockGameState
)
PostStateClaim
(
claim
Claim
)
(
Claim
,
error
)
{
panic
(
"unimplemented"
)
}
type
mockClaimFetcher
struct
{
claimDataError
bool
claimLenError
bool
...
...
@@ -126,7 +88,7 @@ func TestLoader_FetchClaims_Succeeds(t *testing.T) {
log
:=
testlog
.
Logger
(
t
,
log
.
LvlError
)
mockClaimFetcher
:=
newMockClaimFetcher
()
expectedClaims
:=
mockClaimFetcher
.
returnClaims
loader
:=
NewLoader
(
log
,
&
mockGameState
{},
mockClaimFetcher
)
loader
:=
NewLoader
(
log
,
mockClaimFetcher
)
claims
,
err
:=
loader
.
FetchClaims
(
context
.
Background
())
require
.
NoError
(
t
,
err
)
require
.
ElementsMatch
(
t
,
[]
Claim
{
...
...
@@ -139,6 +101,7 @@ func TestLoader_FetchClaims_Succeeds(t *testing.T) {
Value
:
expectedClaims
[
0
]
.
Claim
,
Position
:
NewPositionFromGIndex
(
expectedClaims
[
0
]
.
Position
.
Uint64
()),
},
ContractIndex
:
0
,
},
{
ClaimData
:
ClaimData
{
...
...
@@ -149,6 +112,7 @@ func TestLoader_FetchClaims_Succeeds(t *testing.T) {
Value
:
expectedClaims
[
0
]
.
Claim
,
Position
:
NewPositionFromGIndex
(
expectedClaims
[
1
]
.
Position
.
Uint64
()),
},
ContractIndex
:
1
,
},
{
ClaimData
:
ClaimData
{
...
...
@@ -159,6 +123,7 @@ func TestLoader_FetchClaims_Succeeds(t *testing.T) {
Value
:
expectedClaims
[
0
]
.
Claim
,
Position
:
NewPositionFromGIndex
(
expectedClaims
[
2
]
.
Position
.
Uint64
()),
},
ContractIndex
:
2
,
},
},
claims
)
}
...
...
@@ -169,7 +134,7 @@ func TestLoader_FetchClaims_ClaimDataErrors(t *testing.T) {
log
:=
testlog
.
Logger
(
t
,
log
.
LvlError
)
mockClaimFetcher
:=
newMockClaimFetcher
()
mockClaimFetcher
.
claimDataError
=
true
loader
:=
NewLoader
(
log
,
&
mockGameState
{},
mockClaimFetcher
)
loader
:=
NewLoader
(
log
,
mockClaimFetcher
)
claims
,
err
:=
loader
.
FetchClaims
(
context
.
Background
())
require
.
ErrorIs
(
t
,
err
,
mockClaimDataError
)
require
.
Empty
(
t
,
claims
)
...
...
@@ -181,7 +146,7 @@ func TestLoader_FetchClaims_ClaimLenErrors(t *testing.T) {
log
:=
testlog
.
Logger
(
t
,
log
.
LvlError
)
mockClaimFetcher
:=
newMockClaimFetcher
()
mockClaimFetcher
.
claimLenError
=
true
loader
:=
NewLoader
(
log
,
&
mockGameState
{},
mockClaimFetcher
)
loader
:=
NewLoader
(
log
,
mockClaimFetcher
)
claims
,
err
:=
loader
.
FetchClaims
(
context
.
Background
())
require
.
ErrorIs
(
t
,
err
,
mockClaimLenError
)
require
.
Empty
(
t
,
claims
)
...
...
op-challenger/fault/solver.go
View file @
e7aa48f1
...
...
@@ -9,7 +9,6 @@ import (
// Solver uses a [TraceProvider] to determine the moves to make in a dispute game.
type
Solver
struct
{
TraceProvider
gameDepth
int
}
...
...
@@ -31,8 +30,9 @@ func (s *Solver) NextMove(claim Claim) (*Claim, error) {
}
type
StepData
struct
{
LeafClaim
Claim
IsAttack
bool
LeafClaim
Claim
IsAttack
bool
PreStateTraceIndex
uint64
}
// AttemptStep determines what step should occur for a given leaf claim.
...
...
@@ -45,9 +45,15 @@ func (s *Solver) AttemptStep(claim Claim) (StepData, error) {
if
err
!=
nil
{
return
StepData
{},
err
}
index
:=
claim
.
TraceIndex
(
s
.
gameDepth
)
// TODO(CLI-4198): Handle case where we dispute trace index 0
if
!
claimCorrect
{
index
-=
1
}
return
StepData
{
LeafClaim
:
claim
,
IsAttack
:
claimCorrect
,
LeafClaim
:
claim
,
IsAttack
:
!
claimCorrect
,
PreStateTraceIndex
:
index
,
},
nil
}
...
...
@@ -105,8 +111,9 @@ func (s *Solver) attack(claim Claim) (*Claim, error) {
return
nil
,
err
}
return
&
Claim
{
ClaimData
:
ClaimData
{
Value
:
value
,
Position
:
position
},
Parent
:
claim
.
ClaimData
,
ClaimData
:
ClaimData
{
Value
:
value
,
Position
:
position
},
Parent
:
claim
.
ClaimData
,
ParentContractIndex
:
claim
.
ContractIndex
,
},
nil
}
...
...
@@ -118,8 +125,9 @@ func (s *Solver) defend(claim Claim) (*Claim, error) {
return
nil
,
err
}
return
&
Claim
{
ClaimData
:
ClaimData
{
Value
:
value
,
Position
:
position
},
Parent
:
claim
.
ClaimData
,
ClaimData
:
ClaimData
{
Value
:
value
,
Position
:
position
},
Parent
:
claim
.
ClaimData
,
ParentContractIndex
:
claim
.
ContractIndex
,
},
nil
}
...
...
op-challenger/fault/solver_test.go
View file @
e7aa48f1
...
...
@@ -4,9 +4,14 @@ import (
"testing"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/stretchr/testify/require"
)
func
alphabetClaim
(
index
uint64
,
letter
string
)
common
.
Hash
{
return
crypto
.
Keccak256Hash
(
BuildAlphabetPreimage
(
index
,
letter
))
}
// TestSolver_NextMove_Opponent tests the [Solver] NextMove function
// with an [fault.AlphabetProvider] as the [TraceProvider].
func
TestSolver_NextMove_Opponent
(
t
*
testing
.
T
)
{
...
...
@@ -18,55 +23,51 @@ func TestSolver_NextMove_Opponent(t *testing.T) {
// The following claims are created using the state: "abcdexyz".
// The responses are the responses we expect from the solver.
indices
:=
[]
struct
{
traceIndex
int
claim
Claim
response
ClaimData
claim
Claim
response
ClaimData
}{
{
7
,
Claim
{
ClaimData
:
ClaimData
{
Value
:
common
.
HexToHash
(
"0x000000000000000000000000000000000000000000000000000000000000077a
"
),
Value
:
alphabetClaim
(
7
,
"z
"
),
Position
:
NewPosition
(
0
,
0
),
},
// Root claim has no parent
},
ClaimData
{
Value
:
common
.
HexToHash
(
"0x0000000000000000000000000000000000000000000000000000000000000364
"
),
Value
:
alphabetClaim
(
3
,
"d
"
),
Position
:
NewPosition
(
1
,
0
),
},
},
{
3
,
Claim
{
ClaimData
:
ClaimData
{
Value
:
common
.
HexToHash
(
"0x0000000000000000000000000000000000000000000000000000000000000364
"
),
Value
:
alphabetClaim
(
3
,
"d
"
),
Position
:
NewPosition
(
1
,
0
),
},
Parent
:
ClaimData
{
Value
:
common
.
HexToHash
(
"0x0000000000000000000000000000000000000000000000000000000000000768
"
),
Value
:
alphabetClaim
(
7
,
"h
"
),
Position
:
NewPosition
(
0
,
0
),
},
},
ClaimData
{
Value
:
common
.
HexToHash
(
"0x0000000000000000000000000000000000000000000000000000000000000566
"
),
Value
:
alphabetClaim
(
5
,
"f
"
),
Position
:
NewPosition
(
2
,
2
),
},
},
{
5
,
Claim
{
ClaimData
:
ClaimData
{
Value
:
common
.
HexToHash
(
"0x0000000000000000000000000000000000000000000000000000000000000578
"
),
Value
:
alphabetClaim
(
5
,
"x
"
),
Position
:
NewPosition
(
2
,
2
),
},
Parent
:
ClaimData
{
Value
:
common
.
HexToHash
(
"0x0000000000000000000000000000000000000000000000000000000000000768
"
),
Value
:
alphabetClaim
(
7
,
"h
"
),
Position
:
NewPosition
(
1
,
1
),
},
},
ClaimData
{
Value
:
common
.
HexToHash
(
"0x0000000000000000000000000000000000000000000000000000000000000465
"
),
Value
:
alphabetClaim
(
4
,
"e
"
),
Position
:
NewPosition
(
3
,
4
),
},
},
...
...
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