mirror of
https://github.com/oceanprotocol/ocean-subgraph.git
synced 2024-11-01 07:45:19 +01:00
13 lines
386 B
Plaintext
13 lines
386 B
Plaintext
|
#! /bin/bash
|
||
|
|
||
|
if [ $# != 3 ]; then
|
||
|
echo "usage: deploy <name> <ipfs_hash> <node>"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
api="http://index-node.default/"
|
||
|
|
||
|
echo "Deploying $1 (deployment $2)"
|
||
|
data=$(printf '{"jsonrpc": "2.0", "method": "subgraph_deploy", "params": {"name":"%s", "ipfs_hash":"%s", "node_id":"%s"}, "id":"1"}' "$1" "$2" "$3")
|
||
|
curl -s -H "content-type: application/json" --data "$data" "$api"
|