@warppay402/sdk 1.1.10 → 1.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/.clawhubignore CHANGED
@@ -5,3 +5,9 @@ dist/*.tsbuildinfo
5
5
  .env.*
6
6
  .git/
7
7
  .tgz
8
+
9
+ .env
10
+ .env.*
11
+ *.pem
12
+ *.key
13
+ *.tgz
package/dist/index.cjs CHANGED
@@ -197,6 +197,7 @@ var WarpPayClient = class {
197
197
  if (method === "POST" && payload) {
198
198
  retryOptions.body = JSON.stringify(payload);
199
199
  }
200
+ await new Promise((resolve) => setTimeout(resolve, 800));
200
201
  console.log(`\u{1F50D} [SDK DEBUG] Resubmitting paid ${method} request to: ${url}`);
201
202
  response = await fetch(url, retryOptions);
202
203
  console.log(`\u{1F50D} [SDK DEBUG] Paid Retry Response Status: ${response.status} ${response.statusText}`);
package/dist/index.js CHANGED
@@ -167,6 +167,7 @@ var WarpPayClient = class {
167
167
  if (method === "POST" && payload) {
168
168
  retryOptions.body = JSON.stringify(payload);
169
169
  }
170
+ await new Promise((resolve) => setTimeout(resolve, 800));
170
171
  console.log(`\u{1F50D} [SDK DEBUG] Resubmitting paid ${method} request to: ${url}`);
171
172
  response = await fetch(url, retryOptions);
172
173
  console.log(`\u{1F50D} [SDK DEBUG] Paid Retry Response Status: ${response.status} ${response.statusText}`);
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "id": "warppay402-sdk",
3
3
  "name": "warppay402-sdk",
4
- "version": "1.1.10",
4
+ "version": "1.1.11",
5
5
  "description": "Official WarpPay402 TypeScript SDK: Enabling seamless pay-per-use AI tools across Base Mainnet, Solana, and Arbitrum One."
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@warppay402/sdk",
3
- "version": "1.1.10",
3
+ "version": "1.1.11",
4
4
  "license": "MIT",
5
5
  "description": "Official WarpPay402 TypeScript SDK: Enabling seamless pay-per-use AI tools across Base Mainnet, Solana, and Arbitrum One.",
6
6
  "type": "module",
package/.env.example DELETED
@@ -1,12 +0,0 @@
1
- # EVM / Base Mainnet Wallet Setup
2
- # Private key for funding Base x402 USDC micropayments (must start with 0x)
3
- CUSTOMER_BASE_KEY=0x_your_evm_private_key_here
4
-
5
- # Solana L1 Wallet Setup
6
- # Base58-encoded secret key for funding Solana SPL USDC micropayments
7
- CUSTOMER_SOLANA_KEY=base58_encoded_solana_secret_key_here
8
-
9
- # Optional Configuration Overrides
10
- # BASE_URL=https://api.warppay402.com
11
- # BASE_RPC_URL=https://mainnet.base.org
12
- # SOLANA_RPC_URL=https://api.mainnet-beta.solana.com