From 975d053aeafb6260580c70a0979426fb729650c2 Mon Sep 17 00:00:00 2001 From: RedPanda Date: Fri, 2 Jan 2026 15:32:16 +0530 Subject: [PATCH 1/2] fix: localnet uses 1414 --- tools/testBurnFee.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testBurnFee.sh b/tools/testBurnFee.sh index 9a1c538..94f1dac 100644 --- a/tools/testBurnFee.sh +++ b/tools/testBurnFee.sh @@ -25,7 +25,7 @@ lotus send $clientAddr 10000 # Deploy PDP service contract echo "Deploying PDP service" # Parse the output of forge create to extract the contract address -PDP_SERVICE_ADDRESS=$(forge create --rpc-url "$RPC_URL" --keystore "$KEYSTORE" --password "$PASSWORD" --compiler-version 0.8.23 --chain-id 31415926 contracts/src/PDPService.sol:PDPService --constructor-args 3 | grep "Deployed to" | awk '{print $3}') +PDP_SERVICE_ADDRESS=$(forge create --rpc-url "$RPC_URL" --keystore "$KEYSTORE" --password "$PASSWORD" --compiler-version 0.8.23 --chain-id 1414 contracts/src/PDPService.sol:PDPService --constructor-args 3 | grep "Deployed to" | awk '{print $3}') if [ -z "$PDP_SERVICE_ADDRESS" ]; then echo "Error: Failed to extract PDP service contract address" From b9e10263972e3d0a2441a99502c6de44c1dee84d Mon Sep 17 00:00:00 2001 From: RedPanda Date: Mon, 12 Jan 2026 22:14:03 +0530 Subject: [PATCH 2/2] update: chainID --- tools/testBurnFee.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testBurnFee.sh b/tools/testBurnFee.sh index 94f1dac..9a1c538 100644 --- a/tools/testBurnFee.sh +++ b/tools/testBurnFee.sh @@ -25,7 +25,7 @@ lotus send $clientAddr 10000 # Deploy PDP service contract echo "Deploying PDP service" # Parse the output of forge create to extract the contract address -PDP_SERVICE_ADDRESS=$(forge create --rpc-url "$RPC_URL" --keystore "$KEYSTORE" --password "$PASSWORD" --compiler-version 0.8.23 --chain-id 1414 contracts/src/PDPService.sol:PDPService --constructor-args 3 | grep "Deployed to" | awk '{print $3}') +PDP_SERVICE_ADDRESS=$(forge create --rpc-url "$RPC_URL" --keystore "$KEYSTORE" --password "$PASSWORD" --compiler-version 0.8.23 --chain-id 31415926 contracts/src/PDPService.sol:PDPService --constructor-args 3 | grep "Deployed to" | awk '{print $3}') if [ -z "$PDP_SERVICE_ADDRESS" ]; then echo "Error: Failed to extract PDP service contract address"