@bronlabs/intents-sdk 1.0.37 → 1.0.38

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.
@@ -1,13 +1,13 @@
1
1
  import { EventQueue } from './eventQueue.js';
2
2
  interface OrderEvent {
3
3
  orderId: string;
4
- status: string;
4
+ status: bigint;
5
5
  }
6
6
  export declare abstract class OrderProcessor {
7
7
  protected isRunning: boolean;
8
8
  protected delayedQueue: EventQueue<OrderEvent>;
9
9
  protected constructor();
10
- abstract process(orderId: string, status: string): Promise<void>;
10
+ abstract process(orderId: string, status: bigint): Promise<void>;
11
11
  stop(): Promise<void>;
12
12
  private processDelayedQueue;
13
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bronlabs/intents-sdk",
3
- "version": "1.0.37",
3
+ "version": "1.0.38",
4
4
  "description": "SDK for Intents DeFi smart contracts",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",