@gardenfi/orderbook 3.1.3-beta.11 → 3.1.3-beta.12

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.
@@ -188,6 +188,14 @@ export type EvmOrderResponse = WithTypedData<BaseCreateOrderResponse & {
188
188
  approval_transaction: EVMTransaction | null;
189
189
  initiate_transaction: EVMTransaction;
190
190
  }, EvmTypedData>;
191
+ export type EvmOrderResponseWithCoreTransfer = EvmOrderResponse & {
192
+ core_to_evm_transfer: {
193
+ to: string;
194
+ value: string;
195
+ data: string;
196
+ gas_limit: string;
197
+ } | null;
198
+ };
191
199
  export type StarknetOrderResponse = WithTypedData<BaseCreateOrderResponse & {
192
200
  approval_transaction: StarknetCall;
193
201
  initiate_transaction: StarknetCall;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gardenfi/orderbook",
3
- "version": "3.1.3-beta.11",
3
+ "version": "3.1.3-beta.12",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "@coral-xyz/anchor": "^0.31.1",
31
- "@gardenfi/utils": "3.1.1-beta.9",
31
+ "@gardenfi/utils": "3.1.1-beta.10",
32
32
  "bufferutil": "^4.0.8",
33
33
  "node-cache": "^5.1.2",
34
34
  "siwe": "^2.1.4",