Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,6 @@ source script/deploy-contracts.sh
Deploy the compiled component with the contract information from the previous steps. Review the [makefile](./Makefile) for more details and configuration options.`TRIGGER_EVENT` is the event that the trigger contract emits and WAVS watches for. By altering `SERVICE_TRIGGER_ADDR` you can watch events for contracts others have deployed.

```bash docci-delay-per-cmd=3

export COMPONENT_FILENAME=evm_price_oracle.wasm
export PKG_NAME="evmrustoracle"
export PKG_VERSION="0.1.0"
Expand Down
1 change: 0 additions & 1 deletion script/build-service.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/bin/bash

set -e
# set -x

: '''
Expand Down
2 changes: 1 addition & 1 deletion script/create-aggregator.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/bash
set -e

# set -x

# have an optional argument $1, if set, use it as the agg index
Expand Down
1 change: 0 additions & 1 deletion script/create-operator.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/bin/bash
# set -e

SP=""; if [[ "$(uname)" == *"Darwin"* ]]; then SP=" "; fi

Expand Down
2 changes: 1 addition & 1 deletion script/deploy-contracts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if [ -z "$WAVS_SERVICE_MANAGER_ADDRESS" ]; then
export WAVS_SERVICE_MANAGER_ADDRESS=$(jq -r '.addresses.WavsServiceManager' .nodes/avs_deploy.json)
else
echo "WAVS_SERVICE_MANAGER_ADDRESS is not set."
exit 1
return
fi
fi

Expand Down
Loading