anymal-protocol 1.0.111 → 1.0.112
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/index.js +2 -3
- package/dist/index.mjs +2 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1828,10 +1828,9 @@ function useCreateOrganizationBase() {
|
|
|
1828
1828
|
data: callData
|
|
1829
1829
|
}
|
|
1830
1830
|
],
|
|
1831
|
-
maxPriorityFeePerGas: (0, import_viem4.parseGwei)("0.001")
|
|
1831
|
+
maxPriorityFeePerGas: (0, import_viem4.parseGwei)("0.001")
|
|
1832
1832
|
// Low priority fee
|
|
1833
|
-
maxFeePerGas:
|
|
1834
|
-
// Max fee cap -- keeps rising at random
|
|
1833
|
+
// maxFeePerGas: parseGwei("0.15"), // Max fee cap -- keeps rising at random
|
|
1835
1834
|
});
|
|
1836
1835
|
const txReceipt = await bundlerClient.waitForUserOperationReceipt({
|
|
1837
1836
|
hash: userOpHash
|
package/dist/index.mjs
CHANGED
|
@@ -1765,10 +1765,9 @@ function useCreateOrganizationBase() {
|
|
|
1765
1765
|
data: callData
|
|
1766
1766
|
}
|
|
1767
1767
|
],
|
|
1768
|
-
maxPriorityFeePerGas: parseGwei4("0.001")
|
|
1768
|
+
maxPriorityFeePerGas: parseGwei4("0.001")
|
|
1769
1769
|
// Low priority fee
|
|
1770
|
-
maxFeePerGas:
|
|
1771
|
-
// Max fee cap -- keeps rising at random
|
|
1770
|
+
// maxFeePerGas: parseGwei("0.15"), // Max fee cap -- keeps rising at random
|
|
1772
1771
|
});
|
|
1773
1772
|
const txReceipt = await bundlerClient.waitForUserOperationReceipt({
|
|
1774
1773
|
hash: userOpHash
|
package/package.json
CHANGED