@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 +6 -0
- package/dist/index.cjs +1 -0
- package/dist/index.js +1 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/.env.example +0 -12
package/.clawhubignore
CHANGED
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}`);
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
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
|