@agenticmail/enterprise 0.5.528 → 0.5.529
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/dist/dashboard/pages/polymarket.js +139 -50
- package/logs/cloudflared-error.log +26 -0
- package/package.json +1 -1
|
@@ -132,6 +132,12 @@ export function PolymarketPage() {
|
|
|
132
132
|
const [swapLoading, setSwapLoading] = useState(false);
|
|
133
133
|
const [swapCountdown, setSwapCountdown] = useState(0);
|
|
134
134
|
const [chartVisible, setChartVisible] = useState(function() { try { return localStorage.getItem('pm_chart_visible') !== 'false'; } catch { return true; } });
|
|
135
|
+
// Export key PIN verification
|
|
136
|
+
const [exportStep, setExportStep] = useState('idle'); // 'idle' | 'pin' | 'setup_pin' | 'revealed'
|
|
137
|
+
const [exportPin, setExportPin] = useState('');
|
|
138
|
+
const [exportPinSetup, setExportPinSetup] = useState({ pin: '', confirm: '' });
|
|
139
|
+
const [exportLoading, setExportLoading] = useState(false);
|
|
140
|
+
const [exportAutoCloseTimer, setExportAutoCloseTimer] = useState(null);
|
|
135
141
|
|
|
136
142
|
// Countdown timer during swap
|
|
137
143
|
useEffect(function() {
|
|
@@ -1072,11 +1078,12 @@ export function PolymarketPage() {
|
|
|
1072
1078
|
// Custom modal for pending orders on a position
|
|
1073
1079
|
if (selectedRow.tab === 'pendingForPosition' && d.orders) {
|
|
1074
1080
|
return h('div', { className: 'modal-overlay', onClick: function() { setSelectedRow(null); } },
|
|
1075
|
-
h('div', { className: 'modal
|
|
1076
|
-
h('div', {
|
|
1077
|
-
h('
|
|
1078
|
-
h('button', { className: 'btn btn-
|
|
1081
|
+
h('div', { className: 'modal', onClick: function(e) { e.stopPropagation(); }, style: { width: 560, maxHeight: '85vh', overflow: 'auto' } },
|
|
1082
|
+
h('div', { className: 'modal-header' },
|
|
1083
|
+
h('h2', { style: { fontSize: 16, flex: 1, display: 'flex', alignItems: 'center', gap: 8 } }, I('clock'), ' Pending Orders'),
|
|
1084
|
+
h('button', { className: 'btn btn-ghost btn-icon', onClick: function() { setSelectedRow(null); } }, '\u00d7')
|
|
1079
1085
|
),
|
|
1086
|
+
h('div', { className: 'modal-body', style: { padding: 20 } },
|
|
1080
1087
|
h('div', { style: { marginBottom: 16, padding: '10px 14px', background: 'var(--bg-secondary)', borderRadius: 8, fontSize: 13 } },
|
|
1081
1088
|
h('div', { style: { fontWeight: 600, marginBottom: 4 } }, d.market || 'Position'),
|
|
1082
1089
|
h('div', { style: { color: 'var(--text-muted)' } }, 'Filled shares: ', h('strong', null, (d.filled_shares || 0).toFixed(1)),
|
|
@@ -1101,6 +1108,10 @@ export function PolymarketPage() {
|
|
|
1101
1108
|
),
|
|
1102
1109
|
h('div', { style: { marginTop: 12, fontSize: 12, color: 'var(--text-muted)', fontStyle: 'italic' } },
|
|
1103
1110
|
'Total pending capital: $' + d.orders.reduce(function(s, o) { return s + (o.price || 0) * (o.size || 0); }, 0).toFixed(2))
|
|
1111
|
+
),
|
|
1112
|
+
h('div', { className: 'modal-footer' },
|
|
1113
|
+
h('button', { className: 'btn btn-primary', onClick: function() { setSelectedRow(null); } }, 'Close')
|
|
1114
|
+
)
|
|
1104
1115
|
)
|
|
1105
1116
|
);
|
|
1106
1117
|
}
|
|
@@ -2376,13 +2387,13 @@ export function PolymarketPage() {
|
|
|
2376
2387
|
),
|
|
2377
2388
|
// Wallet management bar
|
|
2378
2389
|
(wallet || walletBalance) && h('div', { style: { display: 'flex', gap: 8, marginTop: 16, marginBottom: 4 } },
|
|
2379
|
-
h('button', { className: 'btn btn-sm btn-secondary', onClick:
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
}
|
|
2390
|
+
h('button', { className: 'btn btn-sm btn-secondary', onClick: function() {
|
|
2391
|
+
// Start PIN verification flow for export
|
|
2392
|
+
if (walletSecurity && walletSecurity.hasPin) {
|
|
2393
|
+
setExportStep('pin'); setExportPin('');
|
|
2394
|
+
} else {
|
|
2395
|
+
setExportStep('setup_pin'); setExportPinSetup({ pin: '', confirm: '' });
|
|
2396
|
+
}
|
|
2386
2397
|
} }, I('key'), ' Export Private Key'),
|
|
2387
2398
|
h('button', { className: 'btn btn-sm btn-secondary', onClick: function() { setImportKey(''); setShowImportWallet(true); } }, I('download'), ' Import Wallet'),
|
|
2388
2399
|
h('button', { className: 'btn btn-sm btn-secondary', onClick: async function() {
|
|
@@ -3054,58 +3065,136 @@ export function PolymarketPage() {
|
|
|
3054
3065
|
)
|
|
3055
3066
|
),
|
|
3056
3067
|
|
|
3057
|
-
// Export key modal
|
|
3058
|
-
|
|
3068
|
+
// Export key modal — PIN-gated with auto-close
|
|
3069
|
+
exportStep !== 'idle' && h('div', { className: 'modal-overlay', onMouseMove: hideTip, onClick: function() { setExportStep('idle'); setExportedKey(null); if (exportAutoCloseTimer) clearTimeout(exportAutoCloseTimer); } },
|
|
3059
3070
|
h('div', { className: 'modal', onClick: function(e) { e.stopPropagation(); }, style: { width: 520, maxHeight: '85vh', overflow: 'auto' } },
|
|
3060
3071
|
h('div', { className: 'modal-header' },
|
|
3061
|
-
h('h2', { style: { fontSize: 16, flex: 1, display: 'flex', alignItems: 'center', gap: 8 } }, I('key'), '
|
|
3062
|
-
h('button', { className: 'btn btn-ghost btn-icon', onClick: function() { setExportedKey(null); } }, '\u00d7')
|
|
3072
|
+
h('h2', { style: { fontSize: 16, flex: 1, display: 'flex', alignItems: 'center', gap: 8 } }, I('key'), ' Export Private Key'),
|
|
3073
|
+
h('button', { className: 'btn btn-ghost btn-icon', onClick: function() { setExportStep('idle'); setExportedKey(null); if (exportAutoCloseTimer) clearTimeout(exportAutoCloseTimer); } }, '\u00d7')
|
|
3063
3074
|
),
|
|
3064
3075
|
h('div', { className: 'modal-body', style: { padding: 20 } },
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
h('
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
h('
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
|
|
3076
|
+
|
|
3077
|
+
// Step: Enter PIN
|
|
3078
|
+
exportStep === 'pin' && h('div', null,
|
|
3079
|
+
h('div', { style: { textAlign: 'center', padding: '16px 0' } },
|
|
3080
|
+
h('div', { style: { marginBottom: 12, color: 'var(--text-muted)' } }, I('lock', 40)),
|
|
3081
|
+
h('h3', { style: { marginBottom: 8 } }, 'Enter Wallet PIN'),
|
|
3082
|
+
h('p', { style: { fontSize: 12, color: 'var(--text-muted)', marginBottom: 16 } }, 'Enter your 6-digit wallet PIN to reveal the private key.')
|
|
3083
|
+
),
|
|
3084
|
+
h('input', { type: 'password', value: exportPin, maxLength: 6, placeholder: '\u2022\u2022\u2022\u2022\u2022\u2022', autoFocus: true,
|
|
3085
|
+
style: { width: '100%', padding: '12px 16px', fontSize: 24, textAlign: 'center', letterSpacing: 8, fontFamily: 'var(--font-mono)', border: '2px solid var(--border)', borderRadius: 8, background: 'var(--bg-secondary)' },
|
|
3086
|
+
onChange: function(e) { setExportPin(e.target.value.replace(/\D/g, '').slice(0, 6)); }
|
|
3087
|
+
}),
|
|
3088
|
+
h('div', { style: { display: 'flex', gap: 8, marginTop: 16 } },
|
|
3089
|
+
h('button', { className: 'btn btn-secondary', onClick: function() { setExportStep('idle'); } }, 'Cancel'),
|
|
3090
|
+
h('button', { className: 'btn btn-primary', disabled: exportPin.length !== 6 || exportLoading, onClick: async function() {
|
|
3091
|
+
setExportLoading(true);
|
|
3092
|
+
try {
|
|
3093
|
+
var verify = await apiCall('/polymarket/' + selectedAgent + '/wallet/verify-transfer', { method: 'POST', body: JSON.stringify({ method: 'pin', code: exportPin }) });
|
|
3094
|
+
if (verify.ok) {
|
|
3095
|
+
var res = await apiCall('/polymarket/' + selectedAgent + '/wallet/export', { method: 'POST', body: JSON.stringify({ confirm: 'EXPORT' }) });
|
|
3096
|
+
if (res.privateKey) {
|
|
3097
|
+
setExportedKey(res); setExportStep('revealed');
|
|
3098
|
+
// Auto-close after 60 seconds
|
|
3099
|
+
var timer = setTimeout(function() { setExportStep('idle'); setExportedKey(null); toast('Export modal auto-closed for security', 'info'); }, 60000);
|
|
3100
|
+
setExportAutoCloseTimer(timer);
|
|
3101
|
+
} else { toast(res.error || 'Export failed', 'error'); }
|
|
3102
|
+
} else { toast(verify.error || 'Invalid PIN', 'error'); }
|
|
3103
|
+
} catch (e) { toast(e.message || 'Verification failed', 'error'); }
|
|
3104
|
+
setExportLoading(false);
|
|
3105
|
+
} }, exportLoading ? 'Verifying...' : 'Verify & Export')
|
|
3082
3106
|
)
|
|
3083
3107
|
),
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
|
|
3090
|
-
|
|
3091
|
-
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
|
|
3095
|
-
|
|
3096
|
-
h('
|
|
3108
|
+
|
|
3109
|
+
// Step: Set up PIN (first time)
|
|
3110
|
+
exportStep === 'setup_pin' && (function() {
|
|
3111
|
+
var pinVal = exportPinSetup.pin;
|
|
3112
|
+
var confVal = exportPinSetup.confirm;
|
|
3113
|
+
var isTrivial = pinVal.length === 6 && (/^(.)\1{5}$/.test(pinVal) || pinVal === '123456' || pinVal === '654321');
|
|
3114
|
+
var mismatch = pinVal.length === 6 && confVal.length === 6 && pinVal !== confVal;
|
|
3115
|
+
var canSubmit = pinVal.length === 6 && confVal.length === 6 && pinVal === confVal && !isTrivial && !exportLoading;
|
|
3116
|
+
return h('div', null,
|
|
3117
|
+
h('div', { style: { textAlign: 'center', padding: '12px 0 16px' } },
|
|
3118
|
+
h('div', { style: { marginBottom: 12, color: '#b45309' } }, I('shield', 40)),
|
|
3119
|
+
h('h3', { style: { marginBottom: 8 } }, 'Set Up Wallet PIN First'),
|
|
3120
|
+
h('p', { style: { fontSize: 12, color: 'var(--text-muted)', marginBottom: 4 } }, 'A 6-digit wallet PIN is required to export your private key. This PIN is also used for fund transfers.')
|
|
3097
3121
|
),
|
|
3098
|
-
h('div', { style: {
|
|
3099
|
-
h('
|
|
3122
|
+
h('div', { style: { marginBottom: 12 } },
|
|
3123
|
+
h('label', { style: { fontSize: 12, fontWeight: 600, display: 'block', marginBottom: 4 } }, 'PIN (6 digits)'),
|
|
3124
|
+
h('input', { type: 'password', inputMode: 'numeric', value: pinVal, maxLength: 6, placeholder: '\u2022\u2022\u2022\u2022\u2022\u2022', autoComplete: 'new-password',
|
|
3125
|
+
style: { width: '100%', padding: '10px 14px', fontSize: 20, textAlign: 'center', letterSpacing: 8, fontFamily: 'var(--font-mono)', border: '2px solid ' + (isTrivial ? '#ef4444' : 'var(--border)'), borderRadius: 8, background: 'var(--bg-secondary)' },
|
|
3126
|
+
onInput: function(e) { setExportPinSetup(Object.assign({}, exportPinSetup, { pin: e.target.value.replace(/\D/g, '').slice(0, 6) })); }
|
|
3127
|
+
}),
|
|
3128
|
+
isTrivial && h('div', { style: { fontSize: 11, color: '#ef4444', marginTop: 4 } }, 'PIN is too simple. Choose a less predictable PIN.')
|
|
3100
3129
|
),
|
|
3101
|
-
h('div', { style: {
|
|
3102
|
-
h('
|
|
3130
|
+
h('div', { style: { marginBottom: 12 } },
|
|
3131
|
+
h('label', { style: { fontSize: 12, fontWeight: 600, display: 'block', marginBottom: 4 } }, 'Confirm PIN'),
|
|
3132
|
+
h('input', { type: 'password', inputMode: 'numeric', value: confVal, maxLength: 6, placeholder: '\u2022\u2022\u2022\u2022\u2022\u2022', autoComplete: 'new-password',
|
|
3133
|
+
style: { width: '100%', padding: '10px 14px', fontSize: 20, textAlign: 'center', letterSpacing: 8, fontFamily: 'var(--font-mono)', border: '2px solid ' + (mismatch ? '#ef4444' : 'var(--border)'), borderRadius: 8, background: 'var(--bg-secondary)' },
|
|
3134
|
+
onInput: function(e) { setExportPinSetup(Object.assign({}, exportPinSetup, { confirm: e.target.value.replace(/\D/g, '').slice(0, 6) })); }
|
|
3135
|
+
}),
|
|
3136
|
+
mismatch && h('div', { style: { fontSize: 11, color: '#ef4444', marginTop: 4 } }, 'PINs do not match')
|
|
3137
|
+
),
|
|
3138
|
+
h('div', { style: { display: 'flex', gap: 8, marginTop: 16 } },
|
|
3139
|
+
h('button', { className: 'btn btn-secondary', onClick: function() { setExportStep('idle'); } }, 'Cancel'),
|
|
3140
|
+
h('button', { className: 'btn btn-primary', disabled: !canSubmit, onClick: async function() {
|
|
3141
|
+
setExportLoading(true);
|
|
3142
|
+
try {
|
|
3143
|
+
var res = await apiCall('/polymarket/' + selectedAgent + '/wallet/setup-pin', { method: 'POST', body: JSON.stringify({ pin: pinVal }) });
|
|
3144
|
+
if (res.ok) {
|
|
3145
|
+
toast('Wallet PIN created!', 'success');
|
|
3146
|
+
setWalletSecurity(Object.assign({}, walletSecurity, { hasPin: true }));
|
|
3147
|
+
// Now export immediately
|
|
3148
|
+
var exp = await apiCall('/polymarket/' + selectedAgent + '/wallet/export', { method: 'POST', body: JSON.stringify({ confirm: 'EXPORT' }) });
|
|
3149
|
+
if (exp.privateKey) {
|
|
3150
|
+
setExportedKey(exp); setExportStep('revealed');
|
|
3151
|
+
var timer = setTimeout(function() { setExportStep('idle'); setExportedKey(null); toast('Export modal auto-closed for security', 'info'); }, 60000);
|
|
3152
|
+
setExportAutoCloseTimer(timer);
|
|
3153
|
+
}
|
|
3154
|
+
} else { toast(res.error || 'PIN setup failed', 'error'); }
|
|
3155
|
+
} catch (e) { toast(e.message, 'error'); }
|
|
3156
|
+
setExportLoading(false);
|
|
3157
|
+
} }, exportLoading ? 'Setting up...' : 'Create PIN & Export Key')
|
|
3158
|
+
)
|
|
3159
|
+
);
|
|
3160
|
+
})(),
|
|
3161
|
+
|
|
3162
|
+
// Step: Key revealed (auto-closes in 60s)
|
|
3163
|
+
exportStep === 'revealed' && exportedKey && h('div', null,
|
|
3164
|
+
h('div', { style: { padding: 10, background: 'rgba(180,83,9,0.1)', border: '1px solid rgba(180,83,9,0.3)', borderRadius: 8, marginBottom: 12, fontSize: 12, color: '#b45309', textAlign: 'center' } },
|
|
3165
|
+
I('clock'), ' This window will auto-close in 60 seconds for security.'
|
|
3166
|
+
),
|
|
3167
|
+
h('div', { style: { padding: 12, background: 'rgba(239,68,68,0.08)', border: '1px solid rgba(239,68,68,0.25)', borderRadius: 8, marginBottom: 16, fontSize: 12, color: '#ef4444', lineHeight: 1.6 } },
|
|
3168
|
+
h('strong', null, '\u26A0 SECURITY WARNING'), h('br'),
|
|
3169
|
+
'Anyone with this key has FULL CONTROL of this wallet and all funds. Never share it.'
|
|
3170
|
+
),
|
|
3171
|
+
exportedKey.mismatch && h('div', { style: { padding: 12, background: 'rgba(239,68,68,0.15)', border: '2px solid rgba(239,68,68,0.5)', borderRadius: 8, marginBottom: 16, fontSize: 12, color: '#dc2626', lineHeight: 1.6 } },
|
|
3172
|
+
h('strong', null, '\u26A0 KEY MISMATCH'), h('br'),
|
|
3173
|
+
'Key derives ', h('code', null, exportedKey.address), ' but funded wallet is ', h('code', null, exportedKey.storedFunderAddress)
|
|
3174
|
+
),
|
|
3175
|
+
h('div', { style: { marginBottom: 16 } },
|
|
3176
|
+
h('label', { style: _labelStyle }, 'Wallet Address'),
|
|
3177
|
+
h('div', { style: { fontFamily: 'var(--font-mono)', fontSize: 13, padding: '10px 12px', background: 'var(--bg-secondary)', borderRadius: 6, wordBreak: 'break-all', userSelect: 'all' } }, exportedKey.address)
|
|
3178
|
+
),
|
|
3179
|
+
h('div', { style: { marginBottom: 16 } },
|
|
3180
|
+
h('label', { style: _labelStyle }, 'Private Key'),
|
|
3181
|
+
h('div', { style: { fontFamily: 'var(--font-mono)', fontSize: 12, padding: '10px 12px', background: 'var(--bg-secondary)', borderRadius: 6, wordBreak: 'break-all', userSelect: 'all', border: '1px solid rgba(239,68,68,0.3)' } }, exportedKey.privateKey)
|
|
3182
|
+
),
|
|
3183
|
+
h('div', { style: { display: 'flex', gap: 8, marginBottom: 16 } },
|
|
3184
|
+
h('button', { className: 'btn btn-sm btn-secondary', onClick: function() { navigator.clipboard?.writeText(exportedKey.privateKey); toast('Private key copied', 'success'); } }, 'Copy Key'),
|
|
3185
|
+
h('button', { className: 'btn btn-sm btn-secondary', onClick: function() { navigator.clipboard?.writeText(exportedKey.address); toast('Address copied', 'success'); } }, 'Copy Address')
|
|
3186
|
+
),
|
|
3187
|
+
h('div', { style: { fontSize: 13, color: 'var(--text-secondary)' } },
|
|
3188
|
+
h('div', { style: { fontWeight: 600, marginBottom: 6 } }, 'Import into a wallet app:'),
|
|
3189
|
+
h('div', { style: { display: 'grid', gap: 8 } },
|
|
3190
|
+
h('div', { style: { padding: '8px 12px', background: 'var(--bg-secondary)', borderRadius: 6, fontSize: 12 } }, h('strong', null, 'MetaMask: '), 'Account menu \u2192 Import Account \u2192 Paste key'),
|
|
3191
|
+
h('div', { style: { padding: '8px 12px', background: 'var(--bg-secondary)', borderRadius: 6, fontSize: 12 } }, h('strong', null, 'Rabby: '), 'Add Address \u2192 Import Private Key \u2192 Paste')
|
|
3103
3192
|
)
|
|
3104
3193
|
)
|
|
3105
3194
|
)
|
|
3106
3195
|
),
|
|
3107
3196
|
h('div', { className: 'modal-footer' },
|
|
3108
|
-
h('button', { className: 'btn btn-primary', onClick: function() { setExportedKey(null); } }, '
|
|
3197
|
+
h('button', { className: 'btn btn-primary', onClick: function() { setExportStep('idle'); setExportedKey(null); if (exportAutoCloseTimer) clearTimeout(exportAutoCloseTimer); } }, 'Close')
|
|
3109
3198
|
)
|
|
3110
3199
|
)
|
|
3111
3200
|
),
|
|
@@ -360,3 +360,29 @@
|
|
|
360
360
|
2026-03-15 16:53:56: 2026-03-15T15:53:56Z ERR Request failed error="stream 905 canceled by remote with error code 0" connIndex=2 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.192.167 type=http
|
|
361
361
|
2026-03-15 16:54:05: 2026-03-15T15:54:05Z ERR error="stream 17761 canceled by remote with error code 0" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
362
362
|
2026-03-15 16:54:05: 2026-03-15T15:54:05Z ERR Request failed error="stream 17761 canceled by remote with error code 0" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
363
|
+
2026-03-15 17:07:50: 2026-03-15T16:07:50Z ERR error="stream 19089 canceled by remote with error code 0" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
364
|
+
2026-03-15 17:07:50: 2026-03-15T16:07:50Z ERR Request failed error="stream 19089 canceled by remote with error code 0" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.200.23 type=http
|
|
365
|
+
2026-03-15 17:07:54: 2026-03-15T16:07:54Z ERR error="stream 19137 canceled by remote with error code 0" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
366
|
+
2026-03-15 17:07:54: 2026-03-15T16:07:54Z ERR Request failed error="stream 19137 canceled by remote with error code 0" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
367
|
+
2026-03-15 17:08:45: 2026-03-15T16:08:45Z ERR error="Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: read tcp [::1]:51429->[::1]:3100: read: connection reset by peer" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
368
|
+
2026-03-15 17:08:45: 2026-03-15T16:08:45Z ERR Request failed error="Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: read tcp [::1]:51429->[::1]:3100: read: connection reset by peer" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/wallet/balance event=0 ip=198.41.200.23 type=http
|
|
369
|
+
2026-03-15 17:08:47: 2026-03-15T16:08:47Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
370
|
+
2026-03-15 17:08:47: 2026-03-15T16:08:47Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
371
|
+
2026-03-15 17:08:47: 2026-03-15T16:08:47Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
372
|
+
2026-03-15 17:08:47: 2026-03-15T16:08:47Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.200.23 type=http
|
|
373
|
+
2026-03-15 17:08:47: 2026-03-15T16:08:47Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
374
|
+
2026-03-15 17:08:47: 2026-03-15T16:08:47Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
375
|
+
2026-03-15 17:08:47: 2026-03-15T16:08:47Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
376
|
+
2026-03-15 17:08:47: 2026-03-15T16:08:47Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.200.23 type=http
|
|
377
|
+
2026-03-15 17:08:47: 2026-03-15T16:08:47Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
378
|
+
2026-03-15 17:08:47: 2026-03-15T16:08:47Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
379
|
+
2026-03-15 17:08:47: 2026-03-15T16:08:47Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
380
|
+
2026-03-15 17:08:47: 2026-03-15T16:08:47Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.200.23 type=http
|
|
381
|
+
2026-03-15 17:09:10: 2026-03-15T16:09:10Z ERR error="stream 20489 canceled by remote with error code 0" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
382
|
+
2026-03-15 17:09:10: 2026-03-15T16:09:10Z ERR Request failed error="stream 20489 canceled by remote with error code 0" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.200.23 type=http
|
|
383
|
+
2026-03-15 17:09:14: 2026-03-15T16:09:14Z ERR error="stream 20485 canceled by remote with error code 0" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
384
|
+
2026-03-15 17:09:14: 2026-03-15T16:09:14Z ERR Request failed error="stream 20485 canceled by remote with error code 0" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
385
|
+
2026-03-15 17:14:39: 2026-03-15T16:14:39Z ERR error="stream 20493 canceled by remote with error code 0" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
386
|
+
2026-03-15 17:14:39: 2026-03-15T16:14:39Z ERR Request failed error="stream 20493 canceled by remote with error code 0" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.200.23 type=http
|
|
387
|
+
2026-03-15 17:14:44: 2026-03-15T16:14:44Z ERR error="stream 1025 canceled by remote with error code 0" connIndex=2 event=1 ingressRule=0 originService=http://localhost:3100
|
|
388
|
+
2026-03-15 17:14:44: 2026-03-15T16:14:44Z ERR Request failed error="stream 1025 canceled by remote with error code 0" connIndex=2 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.192.167 type=http
|