@bluxcc/react 0.2.2 → 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.
package/README.md CHANGED
@@ -70,18 +70,19 @@ Configuration options can be set via the `BluxProvider` config or environment va
70
70
 
71
71
  Currently supported connection methods:
72
72
 
73
+ - [x] **Freighter**
73
74
  - [x] **Rabet**
75
+ - [x] **Hana**
74
76
  - [x] **xBull**
75
77
  - [x] **Lobstr**
76
- - [x] **Freighter**
77
78
  - [x] **Albedo**
78
- - [ ] **Ledger**
79
+ - [x] **Ledger**
80
+ - [x] **HotWallet**
81
+ - [x] **WalletConnect**
82
+ - [x] **Klever Wallet**
83
+ - [x] **Email**
79
84
  - [ ] **Trezor**
80
- - [x] **Hana**
81
- - [ ] **WalletConnect**
82
85
  - [ ] **OAuth**
83
- - [ ] **Email**
84
- - [ ] **Phone**
85
86
 
86
87
  ## License & Usage Restrictions
87
88
 
@@ -94,15 +95,12 @@ Currently supported connection methods:
94
95
  For support, licensing, or inquiries, reach out via:
95
96
 
96
97
  - **Email**: [support@blux.cc](mailto:support@blux.cc)
97
- - **X (Twitter)**: [@BluxOfficial](https://twitter.com/BluxOfficial)
98
+ - **X**: [@BluxOfficial](https://x.com/bluxofficial)
98
99
 
99
100
  ## Roadmap & Future Plans
100
101
 
101
- Blux is evolving. Follow our updates on [X (Twitter)](https://twitter.com/BluxOfficial) for:
102
+ Blux is evolving. Follow our updates on [X (Twitter)](https://x.com/BluxOfficial) for:
102
103
 
103
- - **OAuth Authentication (Apple, Meta, Google, etc.)**
104
- - **Email & Phone-Based Authentication**
104
+ - **Email & OAuth Authentication (Apple, Meta, Google, etc.)**
105
105
  - **More Wallet Integrations**
106
106
  - **Enhanced Customization & Security Features**
107
-
108
- Stay tuned. We have many exciting developments ahead!
@@ -1,10 +1,14 @@
1
1
  export declare const useBlux: () => {
2
- login: () => Promise<void>;
2
+ login: () => Promise<import("@bluxcc/core/dist/store").IUser>;
3
3
  logout: () => void;
4
+ fundMe: () => void;
4
5
  profile: () => void;
5
6
  signMessage: (message: string, options?: {
6
7
  network: string;
7
8
  }) => Promise<unknown>;
9
+ signAuthEntry: (authEntry: string, options?: {
10
+ network: string;
11
+ }) => Promise<unknown>;
8
12
  signTransaction: (xdr: string, options?: {
9
13
  network: string;
10
14
  }) => Promise<unknown>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bluxcc/react",
3
3
  "author": "Blux team",
4
- "version": "0.2.2",
4
+ "version": "0.2.4",
5
5
  "homepage": "https://blux.cc",
6
6
  "description": "Connecting to the Stellar Ecosystem and Beyond",
7
7
  "repository": {
@@ -30,8 +30,8 @@
30
30
  "build": "rollup -c rollup.config.prod.js"
31
31
  },
32
32
  "peerDependencies": {
33
- "@bluxcc/core": "^0.2.2",
34
- "@stellar/stellar-sdk": "^14.5.0",
33
+ "@bluxcc/core": "^0.2.4",
34
+ "@stellar/stellar-sdk": "^15.1.0",
35
35
  "@tanstack/react-query": "^5.90.11",
36
36
  "react": ">=17.0.0",
37
37
  "react-dom": ">=17.0.0"