@renegade-fi/renegade-sdk 0.1.0 → 0.1.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@renegade-fi/renegade-sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A TypeScript client for interacting with the Renegade Darkpool API",
5
5
  "module": "index.ts",
6
6
  "type": "module",
package/src/client.ts CHANGED
@@ -329,7 +329,6 @@ export class ExternalMatchClient {
329
329
  receiver_address: options.receiverAddress,
330
330
  signed_quote: signedQuote,
331
331
  updated_order: options.updatedOrder,
332
- gas_sponsorship_info: quote.gas_sponsorship_info,
333
332
  };
334
333
 
335
334
  const path = options.buildRequestPath();
package/src/types.ts CHANGED
@@ -102,7 +102,6 @@ export interface AssembleExternalMatchRequest {
102
102
  receiver_address?: string;
103
103
  signed_quote: ApiSignedExternalQuote;
104
104
  updated_order?: ExternalOrder;
105
- gas_sponsorship_info?: SignedGasSponsorshipInfo;
106
105
  }
107
106
 
108
107
  export interface ExternalMatchResponse {
package/src/version.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * SDK version information
3
3
  * This file is automatically updated during the build process
4
- * Last updated: 2025-03-27T00:13:04Z
4
+ * Last updated: 2025-04-04T16:34:13Z
5
5
  */
6
6
 
7
- export const VERSION = '0.1.0';
7
+ export const VERSION = '0.1.1';