The verification script that we have used previously to verify that a SuperRoot was valid needs to be updated to work with SuperNode
We need to update the inputs to use a SuperNode RPC for the dependency set.
And remove the need to pass each chain RPC for the dependency set.
Old API
go run op-chain-ops/cmd/check-super-root/main.go --rpc-endpoints $RPC_URL_1,$RPC_URL_2 --timestamp $SUPER_ROOT_TIMESTAMP
go run op-chain-ops/cmd/check-super-root/main.go --rpc-endpoints $RPC_URL_1,$RPC_URL_2
New API
go run op-chain-ops/cmd/check-super-root/main.go --super-node-rpc $SUPER_NODE_RPC --timestamp $SUPER_ROOT_TIMESTAMP
go run op-chain-ops/cmd/check-super-root/main.go --super-node-rpc $SUPER_NODE_RPC
To do: