Skip to content

Commit

Permalink
Introduce ow_validator_node
Browse files Browse the repository at this point in the history
  • Loading branch information
cezary-stroczynski committed Oct 2, 2024
1 parent 1abc133 commit d733b71
Show file tree
Hide file tree
Showing 13 changed files with 3,819 additions and 1 deletion.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"rust-analyzer.linkedProjects": [
"/ow_data_provider_cli/Cargo.toml",
"/ow_validator_node/Cargo.toml",
"/ow_blob_codec/Cargo.toml"
]
}
2 changes: 1 addition & 1 deletion ow_data_provider_cli/src/ddex_sequencer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ impl DdexSequencerContext<'_> {
}

pub async fn send_blob(
self,
&self,
transaction_data: BlobTransactionData,
) -> Result<(), Box<dyn Error>> {
let receipt = self
Expand Down
4 changes: 4 additions & 0 deletions ow_validator_node/.env.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
RPC_URL=https://placeholder
WS_URL=wss://placeholder
BEACON_RPC_URL=placeholder
START_BLOCK=500
2 changes: 2 additions & 0 deletions ow_validator_node/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.env
/target/
Loading

0 comments on commit d733b71

Please sign in to comment.