@aastar/operator 0.16.12 → 0.16.14

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.
@@ -50,6 +50,7 @@ export declare class PaymasterOperatorClient extends BaseClient {
50
50
  stakeAmount?: bigint;
51
51
  version?: string;
52
52
  salt?: bigint;
53
+ priceFeed?: Address;
53
54
  }, options?: TransactionOptions): Promise<{
54
55
  paymasterAddress: Address;
55
56
  deployHash: Hash;
@@ -155,7 +155,7 @@ export class PaymasterOperatorClient extends BaseClient {
155
155
  this.ethUsdPriceFeed,
156
156
  200n, // serviceFeeRate (2%)
157
157
  parseEther('0.1'), // maxGasCostCap
158
- 3600n // priceStalenessThreshold
158
+ 3600n // priceStalenessThreshold (1 hour)
159
159
  ]
160
160
  });
161
161
  deployHash = await factory(this.client).deployPaymaster({
package/package.json CHANGED
@@ -1,6 +1,9 @@
1
1
  {
2
2
  "name": "@aastar/operator",
3
- "version": "0.16.12",
3
+ "version": "0.16.14",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
4
7
  "description": "Operator client for AAstar SDK",
5
8
  "main": "dist/index.js",
6
9
  "types": "dist/index.d.ts",
@@ -16,7 +19,7 @@
16
19
  "license": "MIT",
17
20
  "dependencies": {
18
21
  "viem": "2.43.3",
19
- "@aastar/core": "0.16.12"
22
+ "@aastar/core": "0.16.14"
20
23
  },
21
24
  "devDependencies": {
22
25
  "typescript": "5.7.2"