@zebec-network/exchange-card-sdk 1.11.2 → 1.11.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.
@@ -1,4 +1,4 @@
1
- import { Asset, Horizon } from "@stellar/stellar-sdk";
1
+ import { Asset, Horizon } from "@zebec-fintech/stellar-sdk";
2
2
  export interface StellarWallet {
3
3
  address: string;
4
4
  signTransaction: (txXdr: string) => Promise<string>;
@@ -1,4 +1,4 @@
1
- import { Asset, Horizon, Memo, Networks, Operation, TimeoutInfinite, TransactionBuilder, } from "@stellar/stellar-sdk";
1
+ import { Asset, Horizon, Memo, Networks, Operation, TimeoutInfinite, TransactionBuilder, } from "@zebec-fintech/stellar-sdk";
2
2
  import { STELLAR_RPC_URL, STELLAR_USDC_ISSUER } from "../constants";
3
3
  import { ZebecCardAPIService } from "../helpers/apiHelpers";
4
4
  export class StellarService {
@@ -1,4 +1,4 @@
1
- import { Asset, Horizon } from "@stellar/stellar-sdk";
1
+ import { Asset, Horizon } from "@zebec-fintech/stellar-sdk";
2
2
  import { ZebecCardAPIService } from "../helpers/apiHelpers";
3
3
  export interface XDBWalletInterface {
4
4
  address: string;
@@ -1,4 +1,4 @@
1
- import { Asset, Horizon, Memo, Operation, TimeoutInfinite, TransactionBuilder, } from "@stellar/stellar-sdk";
1
+ import { Asset, Horizon, Memo, Operation, TimeoutInfinite, TransactionBuilder, } from "@zebec-fintech/stellar-sdk";
2
2
  import { XDB_NETWORK, XDB_RPC_URL } from "../constants";
3
3
  import { ZebecCardAPIService } from "../helpers/apiHelpers";
4
4
  export class XDBService {
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "@near-js/types": "^2.5.1",
8
8
  "@near-js/utils": "^2.5.1",
9
9
  "@provablehq/sdk": "^0.10.2",
10
- "@stellar/stellar-sdk": "^15.0.1",
10
+ "@zebec-fintech/stellar-sdk": "^15.0.2",
11
11
  "algosdk": "^3.4.0",
12
12
  "axios": "^1.15.0",
13
13
  "bignumber.js": "^10.0.2",
@@ -58,9 +58,10 @@
58
58
  "clean": "rimraf dist",
59
59
  "format": "prettier --write .",
60
60
  "gen:typechain": "typechain --target ethers-v6 --out-dir \"src/artifacts/typechain-types\" \"src/artifacts/abi/*.json\"",
61
+ "prepare": "npm run build",
61
62
  "test": "ts-mocha -p ./tsconfig.test.json -t 1000000"
62
63
  },
63
64
  "type": "module",
64
65
  "types": "dist/index.d.ts",
65
- "version": "1.11.2"
66
+ "version": "1.11.4"
66
67
  }