@stellar/typescript-wallet-sdk 1.1.0 → 1.1.1
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/lib/bundle.js +19095 -47844
- package/lib/bundle.js.map +1 -1
- package/lib/bundle_browser.js +89069 -0
- package/lib/bundle_browser.js.map +1 -0
- package/package.json +6 -2
- package/webpack.config.js +5 -4
- package/lib/walletSdk/Watcher/Types.d.ts +0 -65
- package/lib/walletSdk/exception/index.d.ts +0 -21
- package/lib/walletSdk/horizon/constants.d.ts +0 -4
- package/lib/walletSdk/interactive/index.d.ts +0 -27
- package/lib/walletSdk/recovery/Recovery.d.ts +0 -3
- package/lib/walletSdk/toml/index.d.ts +0 -78
- package/lib/walletSdk/util/camelToSnakeCase.d.ts +0 -2
- package/lib/walletSdk/util/url.d.ts +0 -1
- /package/lib/walletSdk/{anchor → Anchor}/Sep24.d.ts +0 -0
- /package/lib/walletSdk/{anchor → Anchor}/index.d.ts +0 -0
- /package/lib/walletSdk/{auth → Auth}/WalletSigner.d.ts +0 -0
- /package/lib/walletSdk/{auth → Auth}/index.d.ts +0 -0
- /package/lib/walletSdk/{horizon → Horizon}/Account.d.ts +0 -0
- /package/lib/walletSdk/{horizon → Horizon}/AccountService.d.ts +0 -0
- /package/lib/walletSdk/{horizon → Horizon}/Stellar.d.ts +0 -0
- /package/lib/walletSdk/{horizon/transaction → Horizon/Transaction}/TransactionBuilder.d.ts +0 -0
- /package/lib/walletSdk/{horizon → Horizon}/index.d.ts +0 -0
- /package/lib/walletSdk/{recovery → Recovery}/index.d.ts +0 -0
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stellar/typescript-wallet-sdk",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=18"
|
|
6
6
|
},
|
|
7
|
+
"browser": "./lib/bundle_browser.js",
|
|
7
8
|
"main": "./lib/bundle.js",
|
|
8
9
|
"types": "./lib/index.d.ts",
|
|
9
10
|
"license": "Apache-2.0",
|
|
@@ -21,6 +22,7 @@
|
|
|
21
22
|
"eslint": "^8.33.0",
|
|
22
23
|
"husky": "^8.0.0",
|
|
23
24
|
"jest": "^29.4.1",
|
|
25
|
+
"npm-run-all": "^4.1.5",
|
|
24
26
|
"prettier": "^2.0.5",
|
|
25
27
|
"pretty-quick": "^2.0.1",
|
|
26
28
|
"sinon": "^15.1.0",
|
|
@@ -47,6 +49,8 @@
|
|
|
47
49
|
"scripts": {
|
|
48
50
|
"prepare": "yarn build",
|
|
49
51
|
"test": "jest --watchAll",
|
|
50
|
-
"build": "webpack --config webpack.config.js"
|
|
52
|
+
"build:web": "webpack --config webpack.config.js",
|
|
53
|
+
"build:node": "webpack --env NODE=true --config webpack.config.js",
|
|
54
|
+
"build": "run-p build:web build:node"
|
|
51
55
|
}
|
|
52
56
|
}
|
package/webpack.config.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const path = require("path");
|
|
2
2
|
|
|
3
|
-
module.exports = {
|
|
3
|
+
module.exports = (env = { NODE: false }) => ({
|
|
4
4
|
mode: "development",
|
|
5
5
|
entry: "./src/index.ts",
|
|
6
6
|
devtool: "source-map",
|
|
@@ -25,10 +25,11 @@ module.exports = {
|
|
|
25
25
|
},
|
|
26
26
|
},
|
|
27
27
|
output: {
|
|
28
|
-
library: "
|
|
28
|
+
library: "WalletSDK",
|
|
29
29
|
libraryTarget: "umd",
|
|
30
30
|
globalObject: "this",
|
|
31
|
-
filename:
|
|
31
|
+
filename: `bundle${!env.NODE ? "_browser" : ""}.js`,
|
|
32
32
|
path: path.resolve(__dirname, "lib"),
|
|
33
33
|
},
|
|
34
|
-
|
|
34
|
+
target: env.NODE ? "node" : "web",
|
|
35
|
+
});
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
export declare enum TransactionStatus {
|
|
2
|
-
/**
|
|
3
|
-
* There is not yet enough information for this transaction to be initiated. Perhaps the user has
|
|
4
|
-
* not yet entered necessary info in an interactive flow
|
|
5
|
-
*/
|
|
6
|
-
incomplete = "incomplete",
|
|
7
|
-
/**
|
|
8
|
-
* The user has not yet initiated their transfer to the anchor. This is the next necessary step in
|
|
9
|
-
* any deposit or withdrawal flow after transitioning from `incomplete`
|
|
10
|
-
*/
|
|
11
|
-
pending_user_transfer_start = "pending_user_transfer_start",
|
|
12
|
-
/**
|
|
13
|
-
* The Stellar payment has been successfully received by the anchor and the off-chain funds are
|
|
14
|
-
* available for the customer to pick up. Only used for withdrawal transactions.
|
|
15
|
-
*/
|
|
16
|
-
pending_user_transfer_complete = "pending_user_transfer_complete",
|
|
17
|
-
/**
|
|
18
|
-
* Pending External deposit/withdrawal has been submitted to external network, but is not yet
|
|
19
|
-
* confirmed. This is the status when waiting on Bitcoin or other external crypto network to
|
|
20
|
-
* complete a transaction, or when waiting on a bank transfer.
|
|
21
|
-
*/
|
|
22
|
-
pending_external = "pending_external",
|
|
23
|
-
/**
|
|
24
|
-
* Deposit/withdrawal is being processed internally by anchor. This can also be used when the
|
|
25
|
-
* anchor must verify KYC information prior to deposit/withdrawal.
|
|
26
|
-
*/
|
|
27
|
-
pending_anchor = "pending_anchor",
|
|
28
|
-
/**
|
|
29
|
-
* Deposit/withdrawal operation has been submitted to Stellar network, but is not yet confirmed.
|
|
30
|
-
*/
|
|
31
|
-
pending_stellar = "pending_stellar",
|
|
32
|
-
/** The user must add a trustline for the asset for the deposit to complete. */
|
|
33
|
-
pending_trust = "pending_trust",
|
|
34
|
-
/**
|
|
35
|
-
* The user must take additional action before the deposit / withdrawal can complete, for example
|
|
36
|
-
* an email or 2fa confirmation of a withdrawal.
|
|
37
|
-
*/
|
|
38
|
-
pending_user = "pending_user",
|
|
39
|
-
/** Deposit/withdrawal fully completed */
|
|
40
|
-
completed = "completed",
|
|
41
|
-
/** The deposit/withdrawal is fully refunded */
|
|
42
|
-
refunded = "refunded",
|
|
43
|
-
/**
|
|
44
|
-
* Funds were never received by the anchor and the transaction is considered abandoned by the
|
|
45
|
-
* user. Anchors are responsible for determining when transactions are considered expired.
|
|
46
|
-
*/
|
|
47
|
-
expired = "expired",
|
|
48
|
-
/**
|
|
49
|
-
* Could not complete deposit because no satisfactory asset/XLM market was available to create the
|
|
50
|
-
* account
|
|
51
|
-
*/
|
|
52
|
-
no_market = "no_market",
|
|
53
|
-
/** Deposit/withdrawal size less than min_amount. */
|
|
54
|
-
too_small = "too_small",
|
|
55
|
-
/** Deposit/withdrawal size exceeded max_amount. */
|
|
56
|
-
too_large = "too_large",
|
|
57
|
-
/** Catch-all for any error not enumerated above. */
|
|
58
|
-
error = "error"
|
|
59
|
-
}
|
|
60
|
-
export type WatcherRefreshFunction = () => void;
|
|
61
|
-
export type WatcherStopFunction = () => void;
|
|
62
|
-
export interface WatcherResponse {
|
|
63
|
-
refresh: WatcherRefreshFunction;
|
|
64
|
-
stop: WatcherStopFunction;
|
|
65
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export declare class ServerRequestFailedError extends Error {
|
|
2
|
-
constructor(e: any);
|
|
3
|
-
}
|
|
4
|
-
export declare class AssetNotSupportedError extends Error {
|
|
5
|
-
constructor(type: any, assetCode: any);
|
|
6
|
-
}
|
|
7
|
-
export declare class InvalidMemoError extends Error {
|
|
8
|
-
constructor();
|
|
9
|
-
}
|
|
10
|
-
export declare class ClientDomainWithMemoError extends Error {
|
|
11
|
-
constructor();
|
|
12
|
-
}
|
|
13
|
-
export declare class MissingTransactionIdError extends Error {
|
|
14
|
-
constructor();
|
|
15
|
-
}
|
|
16
|
-
export declare class InvalidTransactionResponseError extends Error {
|
|
17
|
-
constructor(transactionResponse: any);
|
|
18
|
-
}
|
|
19
|
-
export declare class InvalidTransactionsResponseError extends Error {
|
|
20
|
-
constructor(transactionsResponse: any);
|
|
21
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
type ExtraFields = {
|
|
2
|
-
[api_key: string]: string;
|
|
3
|
-
};
|
|
4
|
-
type InteractiveParams = {
|
|
5
|
-
accountAddress: string;
|
|
6
|
-
assetCode: string;
|
|
7
|
-
authToken: string;
|
|
8
|
-
lang?: string;
|
|
9
|
-
extraFields?: ExtraFields;
|
|
10
|
-
fundsAccountAddress?: string;
|
|
11
|
-
};
|
|
12
|
-
export declare enum FLOW_TYPE {
|
|
13
|
-
DEPOSIT = "deposit",
|
|
14
|
-
WITHDRAW = "withdraw"
|
|
15
|
-
}
|
|
16
|
-
export declare class Interactive {
|
|
17
|
-
private homeDomain;
|
|
18
|
-
private anchor;
|
|
19
|
-
private httpClient;
|
|
20
|
-
constructor(homeDomain: any, anchor: any, httpClient: any);
|
|
21
|
-
deposit(params: InteractiveParams): Promise<any>;
|
|
22
|
-
withdraw(params: InteractiveParams): Promise<any>;
|
|
23
|
-
flow(params: InteractiveParams & {
|
|
24
|
-
type: FLOW_TYPE;
|
|
25
|
-
}): Promise<any>;
|
|
26
|
-
}
|
|
27
|
-
export {};
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
export type TomlInfo = {
|
|
2
|
-
version: string;
|
|
3
|
-
networkPassphrase: string;
|
|
4
|
-
federationServer: string;
|
|
5
|
-
authServer: string;
|
|
6
|
-
transferServer: string;
|
|
7
|
-
transferServerSep24: string;
|
|
8
|
-
kycServer: string;
|
|
9
|
-
webAuthEndpoint: string;
|
|
10
|
-
signingKey: string;
|
|
11
|
-
horizonUrl: string;
|
|
12
|
-
accounts: Array<string>;
|
|
13
|
-
uriRequestSigningKey: string;
|
|
14
|
-
directPaymentServer: string;
|
|
15
|
-
anchorQuoteServer: string;
|
|
16
|
-
documentation: {
|
|
17
|
-
orgName: string;
|
|
18
|
-
orgDba: string;
|
|
19
|
-
orgUrl: string;
|
|
20
|
-
orgLogo: string;
|
|
21
|
-
orgDescription: string;
|
|
22
|
-
orgPhysicalAddress: string;
|
|
23
|
-
orgPhysicalAddressAttestation: string;
|
|
24
|
-
orgPhoneNumber: string;
|
|
25
|
-
orgPhoneNumberAttestation: string;
|
|
26
|
-
orgKeybase: string;
|
|
27
|
-
orgTwitter: string;
|
|
28
|
-
orgGithub: string;
|
|
29
|
-
orgOfficialEmail: string;
|
|
30
|
-
orgSupportEmail: string;
|
|
31
|
-
orgLicensingAuthority: string;
|
|
32
|
-
orgLicenseType: string;
|
|
33
|
-
orgLicenseNumber: string;
|
|
34
|
-
};
|
|
35
|
-
principals: Array<{
|
|
36
|
-
name: string;
|
|
37
|
-
email: string;
|
|
38
|
-
keybase: string;
|
|
39
|
-
telegram: string;
|
|
40
|
-
twitter: string;
|
|
41
|
-
github: string;
|
|
42
|
-
idPhotoHash: string;
|
|
43
|
-
verificationPhotoHash: string;
|
|
44
|
-
}>;
|
|
45
|
-
currencies: Array<{
|
|
46
|
-
code: string;
|
|
47
|
-
codeTemplate: string;
|
|
48
|
-
issuer: string;
|
|
49
|
-
status: string;
|
|
50
|
-
displayDecimals: string;
|
|
51
|
-
name: string;
|
|
52
|
-
desc: string;
|
|
53
|
-
conditions: string;
|
|
54
|
-
image: string;
|
|
55
|
-
fixedNumber: string;
|
|
56
|
-
maxNumber: string;
|
|
57
|
-
isUnlimited: boolean;
|
|
58
|
-
isAssetAnchored: boolean;
|
|
59
|
-
anchorAssetType: string;
|
|
60
|
-
anchorAsset: string;
|
|
61
|
-
attestationOfReserve: string;
|
|
62
|
-
redemptionInstructions: string;
|
|
63
|
-
collateralAddresses: Array<string>;
|
|
64
|
-
collateralAddressMessages: Array<string>;
|
|
65
|
-
collateralAddressSignatures: Array<string>;
|
|
66
|
-
regulated: string;
|
|
67
|
-
approvalServer: string;
|
|
68
|
-
approvalCriteria: string;
|
|
69
|
-
}>;
|
|
70
|
-
validators: Array<{
|
|
71
|
-
alias: string;
|
|
72
|
-
displayName: string;
|
|
73
|
-
publicKey: string;
|
|
74
|
-
host: string;
|
|
75
|
-
history: string;
|
|
76
|
-
}>;
|
|
77
|
-
};
|
|
78
|
-
export declare const parseToml: (toml: any) => TomlInfo;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const getUrlDomain: (url: any) => any;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|