ton-provider-system 0.1.10 → 0.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ton-provider-system",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "description": "A bullet-proof TON RPC provider management system with automatic failover, health checking, and rate limiting",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -28,6 +28,8 @@
28
28
  "test": "tsx src/test.ts",
29
29
  "test:quick": "tsx src/test.ts --quick",
30
30
  "test:verbose": "tsx src/test.ts --verbose",
31
+ "browser-test": "tsx scripts/browser-test.ts",
32
+ "browser-test:verbose": "tsx scripts/browser-test.ts --verbose",
31
33
  "prepublishOnly": "pnpm build"
32
34
  },
33
35
  "keywords": [
package/rpc.json CHANGED
@@ -93,7 +93,8 @@
93
93
  "rps": 3,
94
94
  "priority": 8,
95
95
  "enabled": true,
96
- "description": "Tatum testnet gateway - 3 RPS free plan. Endpoint automatically appends /jsonRPC. Requires x-api-key header with TATUM_API_KEY_TESTNET."
96
+ "browserCompatible": false,
97
+ "description": "Tatum testnet gateway - 3 RPS free plan. Endpoint automatically appends /jsonRPC. Requires x-api-key header with TATUM_API_KEY_TESTNET. Not compatible with browser due to CORS restrictions."
97
98
  },
98
99
  "tatum_mainnet": {
99
100
  "name": "Tatum Mainnet",
@@ -106,7 +107,8 @@
106
107
  "rps": 3,
107
108
  "priority": 8,
108
109
  "enabled": true,
109
- "description": "Tatum mainnet gateway - 3 RPS free plan. Endpoint automatically appends /jsonRPC. Requires x-api-key header with TATUM_API_KEY_MAINNET."
110
+ "browserCompatible": false,
111
+ "description": "Tatum mainnet gateway - 3 RPS free plan. Endpoint automatically appends /jsonRPC. Requires x-api-key header with TATUM_API_KEY_MAINNET. Not compatible with browser due to CORS restrictions."
110
112
  },
111
113
  "orbs_testnet": {
112
114
  "name": "Orbs TON Access Testnet",