@bluxcc/react 0.1.18 → 0.1.19

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.
@@ -1,4 +1,4 @@
1
- import { ITransports } from "../../types";
2
- import { NetworkDetails } from "../../constants/networkDetails";
1
+ import { ITransports } from '../../types';
2
+ import { NetworkDetails } from '../../constants/networkDetails';
3
3
  declare const getNetworkRpc: (network: string, transports: ITransports) => NetworkDetails;
4
4
  export default getNetworkRpc;
@@ -0,0 +1,2 @@
1
+ declare const getActiveNetworkTitle: (activeNetwork: string) => string;
2
+ export default getActiveNetworkTitle;
@@ -0,0 +1,4 @@
1
+ import { Horizon } from '@stellar/stellar-sdk';
2
+ import { IAsset } from '../../types';
3
+ declare const paymentTransaction: (memo: string, amount: string, destinationAddress: string, asset: IAsset, sourceAddress: string, server: Horizon.Server, networkPassphrase: string) => Promise<string>;
4
+ export default paymentTransaction;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bluxcc/react",
3
3
  "author": "Blux team",
4
- "version": "0.1.18",
4
+ "version": "0.1.19",
5
5
  "homepage": "https://blux.cc",
6
6
  "description": "Connecting to the Stellar Ecosystem and Beyond",
7
7
  "repository": {
@@ -31,7 +31,6 @@
31
31
  },
32
32
  "peerDependencies": {
33
33
  "@albedo-link/intent": "^0.12.0",
34
- "@creit.tech/xbull-wallet-connect": "^0.3.0",
35
34
  "@lobstrco/signer-extension-api": "^1.0.0-beta.0",
36
35
  "@stellar/freighter-api": "^3.0.0",
37
36
  "@stellar/stellar-sdk": "^13.1.0",
@@ -60,6 +59,7 @@
60
59
  "rollup-plugin-peer-deps-external": "^2.2.4",
61
60
  "rollup-plugin-postcss": "^4.0.2",
62
61
  "tailwindcss": "^3.4.17",
62
+ "tslib": "^2.8.1",
63
63
  "typescript": "^5.7.2",
64
64
  "typescript-eslint": "^8.19.1"
65
65
  },