keyring-chatbot-agent-sdk-test 0.3.17 → 0.3.18
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/README.md +2 -2
- package/dist/chat-widget.es.js +58 -58
- package/dist/chat-widget.umd.js +1 -1
- package/dist/lib.d.ts +3 -3
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -280,7 +280,7 @@ The web component supports visual configuration via HTML attributes (`position`,
|
|
|
280
280
|
```typescript
|
|
281
281
|
interface Account {
|
|
282
282
|
address: string; // Wallet address (0x…)
|
|
283
|
-
chainId: number; // EIP-155 chain ID
|
|
283
|
+
chainId: number | string; // EIP-155 chain ID
|
|
284
284
|
}
|
|
285
285
|
|
|
286
286
|
interface Transaction {
|
|
@@ -293,7 +293,7 @@ interface Transaction {
|
|
|
293
293
|
maxFeePerGas?: string;
|
|
294
294
|
maxPriorityFeePerGas?: string;
|
|
295
295
|
nonce?: number;
|
|
296
|
-
chainId?: number;
|
|
296
|
+
chainId?: number | string;
|
|
297
297
|
}
|
|
298
298
|
|
|
299
299
|
interface TransactionResult {
|