@mnee/ts-sdk 1.0.3 → 1.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.
@@ -122,9 +122,14 @@ export type TransferStatus = {
122
122
  updatedAt: string;
123
123
  errors: string | null;
124
124
  };
125
+ export type OpReturnData = {
126
+ type: 'utf8' | 'hex';
127
+ data: string;
128
+ };
125
129
  export type TransferOptions = {
126
130
  broadcast?: boolean;
127
131
  callbackUrl?: string;
132
+ extraData?: OpReturnData[] | OpReturnData;
128
133
  };
129
134
  export type TransferWebhookResponse = {
130
135
  id: string;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.0.3",
6
+ "version": "1.1.1",
7
7
  "description": "Official typescript SDK of MNEE USD stablecoin",
8
8
  "type": "module",
9
9
  "source": "src/index.ts",
@@ -71,4 +71,4 @@
71
71
  "error-ex": "1.3.2",
72
72
  "has-ansi": "5.0.1"
73
73
  }
74
- }
74
+ }