From 4acf7865d9002f4a2c23c9003651f9f57290fbce Mon Sep 17 00:00:00 2001 From: Ludovic Levalleux Date: Mon, 18 Nov 2024 11:54:22 +0000 Subject: [PATCH] try fixing subgraph deploy failure: add slash on target in npm commands (testing only) --- packages/subgraph/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/subgraph/package.json b/packages/subgraph/package.json index b53300b96..704705260 100644 --- a/packages/subgraph/package.json +++ b/packages/subgraph/package.json @@ -29,11 +29,11 @@ "remove:local": "graph remove --node http://localhost:8020/ boson/corecomponents", "deploy:local": "npm run manifest:local && npm run create:local && graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 boson/corecomponents -l 0.0.1", "deploy:testing:amoy": "run-script-os", - "deploy:testing:amoy:default": "npm run manifest:testing:amoy && graph deploy --node https://api.0xgraph.xyz/deploy --ipfs https://api.0xgraph.xyz/ipfs -l $npm_package_version boson-testing-amoy", - "deploy:testing:amoy:win32": "npm run manifest:testing:amoy && graph deploy --node https://api.0xgraph.xyz/deploy --ipfs https://api.0xgraph.xyz/ipfs -l %npm_package_version% boson-testing-amoy", + "deploy:testing:amoy:default": "npm run manifest:testing:amoy && graph deploy --node https://api.0xgraph.xyz/deploy/ --ipfs https://api.0xgraph.xyz/ipfs -l $npm_package_version boson-testing-amoy", + "deploy:testing:amoy:win32": "npm run manifest:testing:amoy && graph deploy --node https://api.0xgraph.xyz/deploy/ --ipfs https://api.0xgraph.xyz/ipfs -l %npm_package_version% boson-testing-amoy", "deploy:testing:sepolia": "run-script-os", - "deploy:testing:sepolia:default": "npm run manifest:testing:sepolia && graph deploy --node https://api.0xgraph.xyz/deploy --ipfs https://api.0xgraph.xyz/ipfs -l $npm_package_version boson-testing-sepolia", - "deploy:testing:sepolia:win32": "npm run manifest:testing:sepolia && graph deploy --node https://api.0xgraph.xyz/deploy --ipfs https://api.0xgraph.xyz/ipfs -l %npm_package_version% boson-testing-sepolia", + "deploy:testing:sepolia:default": "npm run manifest:testing:sepolia && graph deploy --node https://api.0xgraph.xyz/deploy/ --ipfs https://api.0xgraph.xyz/ipfs -l $npm_package_version boson-testing-sepolia", + "deploy:testing:sepolia:win32": "npm run manifest:testing:sepolia && graph deploy --node https://api.0xgraph.xyz/deploy/ --ipfs https://api.0xgraph.xyz/ipfs -l %npm_package_version% boson-testing-sepolia", "deploy:staging:amoy": "run-script-os", "deploy:staging:amoy:default": "npm run manifest:staging:amoy && graph deploy --node https://api.0xgraph.xyz/deploy --ipfs https://api.0xgraph.xyz/ipfs -l $npm_package_version boson-staging-amoy", "deploy:staging:amoy:win32": "npm run manifest:staging:amoy && graph deploy --node https://api.0xgraph.xyz/deploy --ipfs https://api.0xgraph.xyz/ipfs -l %npm_package_version% boson-staging-amoy",