diff --git a/README.md b/README.md index c9ce88d..943cccf 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A Deno-first, NPM-compatible TypeScript SDK for the [GRVT Exchange](https://grvt ## Features -- **Deno & NPM**: Native TypeScript for Deno, works with Node.js 20+ +- **Deno & NPM**: Native TypeScript for Deno, works with Node.js 18+ - **Full Type Safety**: Complete TypeScript types for all API requests/responses - **EIP-712 Signing**: Built-in order signing (viem, ethers, or standalone) - **WebSocket Support**: Real-time market data and trade updates diff --git a/docs/getting-started/quick-start.md b/docs/getting-started/quick-start.md index 9bc132b..80f9d6d 100644 --- a/docs/getting-started/quick-start.md +++ b/docs/getting-started/quick-start.md @@ -11,7 +11,7 @@ GRVT provides multiple environments for testing and production: | ----------- | ----------------- | -------- | -------------------------- | | Production | `GrvtEnv.PROD` | 325 | Live trading | | Testnet | `GrvtEnv.TESTNET` | 326 | Testing with testnet funds | -| Staging | `GrvtEnv.STG` | 328 | Internal staging | +| Staging | `GrvtEnv.STG` | 327 | Internal staging | | Development | `GrvtEnv.DEV` | 327 | Internal development | {% hint style="info" %} Use `GrvtEnv.TESTNET` for development and testing. Switch to `GrvtEnv.PROD` only for production diff --git a/docs/utilities/config.md b/docs/utilities/config.md index a48e1c7..e7452bd 100644 --- a/docs/utilities/config.md +++ b/docs/utilities/config.md @@ -14,7 +14,7 @@ import { GrvtEnv } from "@wezzcoetzee/grvt"; | ----------- | ----------------- | -------- | -------------------------------- | | Production | `GrvtEnv.PROD` | 325 | Live trading with real funds | | Testnet | `GrvtEnv.TESTNET` | 326 | Testing with testnet funds | -| Staging | `GrvtEnv.STG` | 328 | Internal staging environment | +| Staging | `GrvtEnv.STG` | 327 | Internal staging environment | | Development | `GrvtEnv.DEV` | 327 | Internal development environment | ```ts @@ -38,7 +38,7 @@ import { CHAIN_IDS, GrvtEnv } from "@wezzcoetzee/grvt"; console.log(CHAIN_IDS[GrvtEnv.PROD]); // 325 console.log(CHAIN_IDS[GrvtEnv.TESTNET]); // 326 -console.log(CHAIN_IDS[GrvtEnv.STG]); // 328 +console.log(CHAIN_IDS[GrvtEnv.STG]); // 327 console.log(CHAIN_IDS[GrvtEnv.DEV]); // 327 ```