Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/utilities/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
```

Expand Down