@pafi-dev/issuer 0.5.24 → 0.5.26

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 CHANGED
@@ -2148,6 +2148,9 @@ var PafiBackendClient = class {
2148
2148
  json.paymasterVerificationGasLimit
2149
2149
  ),
2150
2150
  paymasterPostOpGasLimit: BigInt(json.paymasterPostOpGasLimit),
2151
+ callGasLimit: json.callGasLimit != null ? BigInt(json.callGasLimit) : void 0,
2152
+ verificationGasLimit: json.verificationGasLimit != null ? BigInt(json.verificationGasLimit) : void 0,
2153
+ preVerificationGas: json.preVerificationGas != null ? BigInt(json.preVerificationGas) : void 0,
2151
2154
  expiresAt: json.expiresAt
2152
2155
  };
2153
2156
  }