@bluxcc/core 0.2.1 → 0.2.2

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.
@@ -9,12 +9,6 @@ type ApiGetUserResponse = {
9
9
  public_key: string;
10
10
  };
11
11
  export declare const apiGetUser: (JWT: string) => Promise<ApiGetUserResponse>;
12
- type ApiSignMessageResponse = {
13
- signature?: string;
14
- };
15
- type ApiSignTransactionResponse = {
16
- signed_xdr?: string;
17
- };
18
- export declare const apiSignMessage: (JWT: string, message: string) => Promise<ApiSignMessageResponse>;
19
- export declare const apiSignTransaction: (JWT: string, xdr: string, network: string) => Promise<ApiSignTransactionResponse>;
12
+ export declare const apiSignMessage: (JWT: string, message: string) => Promise<string>;
13
+ export declare const apiSignTransaction: (JWT: string, xdr: string, network: string) => Promise<string>;
20
14
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bluxcc/core",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "homepage": "https://blux.cc",
5
5
  "description": "Blux is a wallet infra for the Stellar network",
6
6
  "type": "module",