mirror of
https://github.com/FiloSpaTeam/plutus-pioneer-program.git
synced 2024-11-25 08:12:00 +01:00
9 lines
356 B
Bash
Executable file
9 lines
356 B
Bash
Executable file
#1/bin/sh
|
|
|
|
symbol=$( cat symbol.json )
|
|
body="{\"rpCoinB\":{\"unAssetClass\":[$symbol,{\"unTokenName\":\"$4\"}]},\"rpDiff\":$2,\"rpCoinA\":{\"unAssetClass\":[$symbol,{\"unTokenName\":\"$3\"}]}}"
|
|
echo $body
|
|
|
|
curl "http://localhost:8080/api/new/contract/instance/$(cat W$1.cid)/endpoint/remove" \
|
|
--header 'Content-Type: application/json' \
|
|
--data-raw $body
|