@stacks/blockchain-api-client 9.0.0-next.35 → 9.0.0-next.36

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.
@@ -32598,7 +32598,10 @@ export interface operations {
32598
32598
  recipient: string;
32599
32599
  /** @description Amount of the token transfer */
32600
32600
  amount: string;
32601
- memo: string | null;
32601
+ memo: {
32602
+ hex: string;
32603
+ repr: string;
32604
+ } | null;
32602
32605
  };
32603
32606
  } | {
32604
32607
  /** @description Transaction ID */
@@ -33405,7 +33408,10 @@ export interface operations {
33405
33408
  recipient: string;
33406
33409
  /** @description Amount of the token transfer */
33407
33410
  amount: string;
33408
- memo: string | null;
33411
+ memo: {
33412
+ hex: string;
33413
+ repr: string;
33414
+ } | null;
33409
33415
  };
33410
33416
  } | {
33411
33417
  /** @description Transaction ID */
@@ -34204,7 +34210,10 @@ export interface operations {
34204
34210
  recipient: string;
34205
34211
  /** @description Transfer amount as Integer string (64-bit unsigned integer) */
34206
34212
  amount: string;
34207
- memo: string | null;
34213
+ memo: {
34214
+ hex: string;
34215
+ repr: string;
34216
+ } | null;
34208
34217
  };
34209
34218
  } | {
34210
34219
  /** @description Transaction ID */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stacks/blockchain-api-client",
3
- "version": "9.0.0-next.35",
3
+ "version": "9.0.0-next.36",
4
4
  "access": "public",
5
5
  "description": "Client for the Stacks Blockchain API",
6
6
  "homepage": "https://github.com/hirosystems/stacks-blockchain-api/tree/master/client#readme",
@@ -32598,7 +32598,10 @@ export interface operations {
32598
32598
  recipient: string;
32599
32599
  /** @description Amount of the token transfer */
32600
32600
  amount: string;
32601
- memo: string | null;
32601
+ memo: {
32602
+ hex: string;
32603
+ repr: string;
32604
+ } | null;
32602
32605
  };
32603
32606
  } | {
32604
32607
  /** @description Transaction ID */
@@ -33405,7 +33408,10 @@ export interface operations {
33405
33408
  recipient: string;
33406
33409
  /** @description Amount of the token transfer */
33407
33410
  amount: string;
33408
- memo: string | null;
33411
+ memo: {
33412
+ hex: string;
33413
+ repr: string;
33414
+ } | null;
33409
33415
  };
33410
33416
  } | {
33411
33417
  /** @description Transaction ID */
@@ -34204,7 +34210,10 @@ export interface operations {
34204
34210
  recipient: string;
34205
34211
  /** @description Transfer amount as Integer string (64-bit unsigned integer) */
34206
34212
  amount: string;
34207
- memo: string | null;
34213
+ memo: {
34214
+ hex: string;
34215
+ repr: string;
34216
+ } | null;
34208
34217
  };
34209
34218
  } | {
34210
34219
  /** @description Transaction ID */