@bluxcc/core 0.2.3 → 0.2.4

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.
@@ -0,0 +1,11 @@
1
+ export declare const ArrowOutward: ({ fill }: {
2
+ fill?: string;
3
+ }) => import("react/jsx-runtime").JSX.Element;
4
+ export declare const Terms: ({ fill }: {
5
+ fill?: string;
6
+ }) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const BitGetLogo: ({ fill }: {
8
+ fill?: string;
9
+ }) => import("react/jsx-runtime").JSX.Element;
10
+ export declare const OneKeyLogo: () => import("react/jsx-runtime").JSX.Element;
11
+ export declare const MoonPayLogo: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,8 @@
1
+ type ProfileItemProps = {
2
+ label: string;
3
+ icon: React.ReactNode;
4
+ href?: string;
5
+ onClick?: () => void;
6
+ };
7
+ declare const Link: ({ label, icon, href, onClick }: ProfileItemProps) => import("react/jsx-runtime").JSX.Element;
8
+ export default Link;
@@ -21,6 +21,7 @@ declare enum CDNFiles {
21
21
  Downstream = "downstream.svg",
22
22
  Globe = "globe.svg",
23
23
  SmallEmail = "smallemail.svg",
24
+ MoonPayLogo = "moonpaylogo.svg",
24
25
  Email = "email.svg",
25
26
  RedExclamation = "redexclamation.svg",
26
27
  WrongNetwork = "wrongnetwork.svg",
@@ -6,4 +6,4 @@ export declare const WC_STELLAR_TESTNET = "stellar:testnet";
6
6
  export declare const BLUX_API = "https://api.blux.cc";
7
7
  export declare const BLUX_APP_ID_HEADER: "blux-app-id";
8
8
  export declare const BLUX_CDN_PATH = "https://cdn.blux.cc/files";
9
- export declare const CLOUDFLARE_R2_LOGOS = "https://cdn2.blux.cc/core-assets/logos.json.gz";
9
+ export declare const CLOUDFLARE_R2_LOGOS = "https://cdn2.blux.cc/core-assets/logos2.json.gz";
package/dist/enums.d.ts CHANGED
@@ -9,7 +9,9 @@ export declare enum SupportedWallet {
9
9
  WalletConnect = "Wallet Connect",
10
10
  Hot = "Hot",
11
11
  Klever = "Klever",
12
- Ledger = "Ledger"
12
+ Ledger = "Ledger",
13
+ Bitget = "Bitget",
14
+ Onekey = "Onekey"
13
15
  }
14
16
  export declare enum StellarNetwork {
15
17
  PUBLIC = "Public Global Stellar Network ; September 2015",
@@ -10,6 +10,9 @@ export declare const sendTransaction: (xdr: string, options?: {
10
10
  export declare const signMessage: (message: string, options?: {
11
11
  network: string;
12
12
  }) => Promise<unknown>;
13
+ export declare const signAuthEntry: (authEntry: string, options?: {
14
+ network: string;
15
+ }) => Promise<unknown>;
13
16
  export declare const blux: {
14
17
  login: () => Promise<IUser>;
15
18
  logout: () => void;
@@ -18,6 +21,9 @@ export declare const blux: {
18
21
  signMessage: (message: string, options?: {
19
22
  network: string;
20
23
  }) => Promise<unknown>;
24
+ signAuthEntry: (authEntry: string, options?: {
25
+ network: string;
26
+ }) => Promise<unknown>;
21
27
  signTransaction: (xdr: string, options?: {
22
28
  network: string;
23
29
  }) => Promise<unknown>;