Skip to content

Commit 08d3982

Browse files
committed
fix: change hardcoded address values
1 parent 9c4995e commit 08d3982

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ batcher/target/release/aligned:
234234

235235

236236
RPC_URL=http://localhost:8545
237-
BATCHER_PAYMENTS_CONTRACT_ADDRESS=0x7969c5eD335650692Bc04293B07F5BF2e7A673C0
237+
BATCHER_PAYMENTS_CONTRACT_ADDRESS=0x7bc06c482DEAd17c0e297aFbC32f6e63d3846650
238238

239239
batcher_send_sp1_task:
240240
@echo "Sending SP1 fibonacci task to Batcher..."

batcher/aligned-sdk/src/sdk.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ async fn _submit_multiple(
178178
let response_stream = Arc::new(Mutex::new(response_stream));
179179

180180
let payment_service_addr = match chain {
181-
Chain::Devnet => H160::from_str("0x7969c5eD335650692Bc04293B07F5BF2e7A673C0").ok(),
181+
Chain::Devnet => H160::from_str("0x7bc06c482DEAd17c0e297aFbC32f6e63d3846650").ok(),
182182
Chain::Holesky => H160::from_str("0x815aeCA64a974297942D2Bbf034ABEe22a38A003").ok(),
183183
Chain::HoleskyStage => H160::from_str("0x7577Ec4ccC1E6C529162ec8019A49C13F6DAd98b").ok(),
184184
};
@@ -503,7 +503,7 @@ mod test {
503503

504504
use ethers::signers::LocalWallet;
505505

506-
const BATCHER_PAYMENT_SERVICE_ADDR: &str = "0x7969c5eD335650692Bc04293B07F5BF2e7A673C0";
506+
const BATCHER_PAYMENT_SERVICE_ADDR: &str = "0x7bc06c482DEAd17c0e297aFbC32f6e63d3846650";
507507
const MAX_FEE: U256 = U256::max_value();
508508

509509
#[tokio::test]

batcher/aligned/generate_proof_and_send.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ go run scripts/test_files/gnark_groth16_bn254_infinite_script/cmd/main.go $x
2727
# Set default values for RPC and BATCHER if they are not set
2828
RPC=${RPC:-http://localhost:8545}
2929
BATCHER_CONN=${BATCHER_CONN:-ws://localhost:8080}
30-
BATCHER_ADDR=${BATCHER_ADDR:-0x7969c5eD335650692Bc04293B07F5BF2e7A673C0}
30+
BATCHER_ADDR=${BATCHER_ADDR:-0x7bc06c482DEAd17c0e297aFbC32f6e63d3846650}
3131

3232
cmd=(
3333
./batcher/target/release/aligned

batcher/aligned/src/main.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ pub struct SubmitArgs {
7070
#[arg(
7171
name = "Batcher Payment Service Eth Address",
7272
long = "payment_service_addr",
73-
default_value = "0x7969c5eD335650692Bc04293B07F5BF2e7A673C0"
73+
default_value = "0x7bc06c482DEAd17c0e297aFbC32f6e63d3846650"
7474
)]
7575
payment_service_addr: String,
7676
#[arg(
@@ -133,7 +133,7 @@ pub struct DepositToBatcherArgs {
133133
#[arg(
134134
name = "Batcher Payment Service Eth Address",
135135
long = "payment_service_addr",
136-
default_value = "0x7969c5eD335650692Bc04293B07F5BF2e7A673C0"
136+
default_value = "0x7bc06c482DEAd17c0e297aFbC32f6e63d3846650"
137137
)]
138138
payment_service_addr: String,
139139
#[arg(
@@ -178,7 +178,7 @@ pub struct VerifyProofOnchainArgs {
178178
#[arg(
179179
name = "Batcher Payment Service Eth Address",
180180
long = "payment_service_addr",
181-
default_value = "0x7969c5eD335650692Bc04293B07F5BF2e7A673C0"
181+
default_value = "0x7bc06c482DEAd17c0e297aFbC32f6e63d3846650"
182182
)]
183183
payment_service_addr: String,
184184
}
@@ -200,7 +200,7 @@ pub struct GetUserBalanceArgs {
200200
#[arg(
201201
name = "Batcher Payment Service Eth Address",
202202
long = "payment_service_addr",
203-
default_value = "0x7969c5eD335650692Bc04293B07F5BF2e7A673C0"
203+
default_value = "0x7bc06c482DEAd17c0e297aFbC32f6e63d3846650"
204204
)]
205205
payment_service_addr: String,
206206
#[arg(

contracts/scripts/anvil/state/alignedlayer-deployed-anvil-state.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)