@pafi-dev/issuer 0.5.26 → 0.5.27
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.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1555,6 +1555,15 @@ interface SponsorshipResponse {
|
|
|
1555
1555
|
callGasLimit?: bigint;
|
|
1556
1556
|
verificationGasLimit?: bigint;
|
|
1557
1557
|
preVerificationGas?: bigint;
|
|
1558
|
+
/**
|
|
1559
|
+
* Bundler-required gas price (Pimlico's `pimlico_getUserOperationGasPrice`
|
|
1560
|
+
* fast tier). Pimlico's paymaster signs over these — caller MUST apply
|
|
1561
|
+
* to the userOp before computing the EIP-712 userOpHash. Base RPC's
|
|
1562
|
+
* `eth_feeHistory` underestimates the bundler floor by 10-15 %, so
|
|
1563
|
+
* relying on it produces "maxFeePerGas must be at least ..." rejections.
|
|
1564
|
+
*/
|
|
1565
|
+
maxFeePerGas?: bigint;
|
|
1566
|
+
maxPriorityFeePerGas?: bigint;
|
|
1558
1567
|
expiresAt: number;
|
|
1559
1568
|
}
|
|
1560
1569
|
declare class PafiBackendClient {
|
package/dist/index.d.ts
CHANGED
|
@@ -1555,6 +1555,15 @@ interface SponsorshipResponse {
|
|
|
1555
1555
|
callGasLimit?: bigint;
|
|
1556
1556
|
verificationGasLimit?: bigint;
|
|
1557
1557
|
preVerificationGas?: bigint;
|
|
1558
|
+
/**
|
|
1559
|
+
* Bundler-required gas price (Pimlico's `pimlico_getUserOperationGasPrice`
|
|
1560
|
+
* fast tier). Pimlico's paymaster signs over these — caller MUST apply
|
|
1561
|
+
* to the userOp before computing the EIP-712 userOpHash. Base RPC's
|
|
1562
|
+
* `eth_feeHistory` underestimates the bundler floor by 10-15 %, so
|
|
1563
|
+
* relying on it produces "maxFeePerGas must be at least ..." rejections.
|
|
1564
|
+
*/
|
|
1565
|
+
maxFeePerGas?: bigint;
|
|
1566
|
+
maxPriorityFeePerGas?: bigint;
|
|
1558
1567
|
expiresAt: number;
|
|
1559
1568
|
}
|
|
1560
1569
|
declare class PafiBackendClient {
|
package/dist/index.js
CHANGED
|
@@ -2110,6 +2110,8 @@ var PafiBackendClient = class {
|
|
|
2110
2110
|
callGasLimit: json.callGasLimit != null ? BigInt(json.callGasLimit) : void 0,
|
|
2111
2111
|
verificationGasLimit: json.verificationGasLimit != null ? BigInt(json.verificationGasLimit) : void 0,
|
|
2112
2112
|
preVerificationGas: json.preVerificationGas != null ? BigInt(json.preVerificationGas) : void 0,
|
|
2113
|
+
maxFeePerGas: json.maxFeePerGas != null ? BigInt(json.maxFeePerGas) : void 0,
|
|
2114
|
+
maxPriorityFeePerGas: json.maxPriorityFeePerGas != null ? BigInt(json.maxPriorityFeePerGas) : void 0,
|
|
2113
2115
|
expiresAt: json.expiresAt
|
|
2114
2116
|
};
|
|
2115
2117
|
}
|