@storagehub-sdk/core 0.4.0 → 0.4.3
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/_wasm_embed.d.ts +1 -1
- package/dist/evm/storageHubClient.d.ts +4 -0
- package/dist/index.browser.js +1 -1
- package/dist/index.browser.js.map +2 -2
- package/dist/index.node.js +1 -1
- package/dist/index.node.js.map +2 -2
- package/package.json +1 -1
- package/wasm/pkg/storagehub_wasm.d.ts +10 -10
- package/wasm/pkg/storagehub_wasm.js +22 -22
- package/wasm/pkg/storagehub_wasm_bg.wasm +0 -0
- package/wasm/pkg/storagehub_wasm_bg.wasm.d.ts +4 -4
|
@@ -54,6 +54,10 @@ export declare class StorageHubClient {
|
|
|
54
54
|
/**
|
|
55
55
|
* Build transaction options with gas and fee settings.
|
|
56
56
|
* Handles both legacy and EIP-1559 fee structures.
|
|
57
|
+
*
|
|
58
|
+
* Note: `chain: null` is set to ensure compatibility with wallet clients that don't
|
|
59
|
+
* properly expose chain information (e.g., Reown's Social Login). This tells viem
|
|
60
|
+
* to use the wallet's currently selected chain rather than trying to fetch chainId.
|
|
57
61
|
*/
|
|
58
62
|
private buildTxOptions;
|
|
59
63
|
/**
|