diff --git a/docs/staking/become-symbiotic-fp.md b/docs/staking/become-symbiotic-fp.md index 28521e63..8c5ef670 100644 --- a/docs/staking/become-symbiotic-fp.md +++ b/docs/staking/become-symbiotic-fp.md @@ -303,11 +303,11 @@ Fetch the signature required to claim your rewards. ```bash curl -X POST https://prod.reward-api.pacific-staking.manta.network/reward/claim-all-data \ -H "Content-Type: application/json" \ - -d '{ + -d '[{ "address": "0x9e22e7f3ad7a800c6a4cd42f9f3bc3b36fe11ec3", "protocolType": "symbiotic", "isOperator": true - }' + }]' ``` **Example Response**: diff --git a/package.json b/package.json index 720c905b..603cdc55 100644 --- a/package.json +++ b/package.json @@ -31,9 +31,6 @@ "rehype-katex": "4", "remark-math": "3" }, - "engines": { - "node": ">= 17" - }, "browserslist": { "production": [ ">0.5%", diff --git a/vercel.json b/vercel.json new file mode 100644 index 00000000..682d50b3 --- /dev/null +++ b/vercel.json @@ -0,0 +1,7 @@ +{ + "build": { + "env": { + "NODE_VERSION": "20" + } + } +}