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: 1 addition & 0 deletions .docker/service-cid
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
QmZUK6LA31b6vH66YbbxNBTeLmnogxRhRK6vkMkeRKuK1C
5 changes: 2 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
DEPLOY_ENV=LOCAL

CHAIN_ID=31337 # 31337 for local, 11155111 for Sepolia
LOCAL_ETHEREUM_RPC_URL=http://localhost:8545
# RPC_URL=https://ethereum-sepolia-rpc.publicnode.com/
# TESTNET_RPC_URL=https://ethereum-sepolia-rpc.publicnode.com/
RPC_URL=http://localhost:8545
# RPC_URL=https://ethereum-sepolia-rpc.publicnode.com/ # Sepolia testnet

# this key requires funds. used as the admin / deployer of contracts and core contracts.
FUNDED_KEY=0x323ef3a895cad9fcb625aa859953bba2812a64b39f2fd0b857f4757f0e896858
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ jobs:
with:
node-version: 21

- uses: pnpm/action-setup@v4
name: Install pnpm

- name: Install deps
run: make setup

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ infra/*

# Tools
**/.claude/settings.local.json
.task/remote/
7 changes: 7 additions & 0 deletions .taskrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
concurrency: 4

remote:
insecure: true

experiments:
REMOTE_TASKFILES: 1
26 changes: 26 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace]
members = ["components/evm-price-oracle"]
members = ["components/evm-price-oracle", "components/aggregator"]
resolver = "2"

[workspace.package]
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CARGO=cargo
INPUT_DATA?=``
COMPONENT_FILENAME?=evm_price_oracle.wasm
CREDENTIAL?=""
DOCKER_IMAGE?=ghcr.io/lay3rlabs/wavs:1.4.1
DOCKER_IMAGE?=ghcr.io/lay3rlabs/wavs:1.5.1
MIDDLEWARE_DOCKER_IMAGE?=ghcr.io/lay3rlabs/wavs-middleware:0.5.0-beta.10
IPFS_ENDPOINT?=http://127.0.0.1:5001
RPC_URL?=http://127.0.0.1:8545
Expand Down Expand Up @@ -91,7 +91,7 @@ setup: check-requirements
@echo " • Installing Forge dependencies..."
@forge install > /dev/null 2>&1
@echo " • Installing npm dependencies..."
@npm install > /dev/null 2>&1
@pnpm install > /dev/null 2>&1
@echo "✅ Dependencies installed"

## start-all-local: starting anvil and core services (like IPFS for example)
Expand Down
Loading