@bitgo/sdk-coin-xlm 3.4.13 → 3.4.15

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/dist/src/xlm.d.ts DELETED
@@ -1,367 +0,0 @@
1
- import * as stellar from 'stellar-sdk';
2
- import { BaseCoin, BitGoBase, ExtraPrebuildParamsOptions, ITransactionRecipient, KeyPair, ParsedTransaction, ParseTransactionOptions, SignTransactionOptions as BaseSignTransactionOptions, TokenEnablementConfig, TransactionExplanation as BaseTransactionExplanation, TransactionParams as BaseTransactionParams, TransactionPrebuild as BaseTransactionPrebuild, VerifyAddressOptions as BaseVerifyAddressOptions, VerifyTransactionOptions as BaseVerifyTransactionOptions, Wallet, MultisigType, AuditDecryptedKeyParams } from '@bitgo/sdk-core';
3
- /**
4
- * XLM accounts support virtual (muxed) addresses
5
- * A base address starts with "G" and is tied to the underlying "real" account
6
- * A muxed address starts with "M" and combines the base address with a 64-bit integer ID in order to provide
7
- * an alternative to memo ids.
8
- */
9
- interface AddressDetails {
10
- baseAddress: string;
11
- address: string;
12
- id?: string;
13
- memoId?: string | undefined;
14
- }
15
- interface Memo {
16
- type: stellar.MemoType;
17
- value: string;
18
- }
19
- interface InitiateRecoveryOptions {
20
- userKey: string;
21
- backupKey: string;
22
- recoveryDestination: string;
23
- krsProvider?: string;
24
- walletPassphrase?: string;
25
- }
26
- interface RecoveryOptions extends InitiateRecoveryOptions {
27
- rootAddress?: string;
28
- }
29
- interface RecoveryTransaction {
30
- txBase64: string;
31
- recoveryAmount: number;
32
- coin?: string;
33
- backupKey?: string;
34
- txInfo?: any;
35
- feeInfo?: any;
36
- }
37
- interface BuildOptions {
38
- wallet?: Wallet;
39
- recipients?: Record<string, string>[];
40
- type?: string;
41
- walletPassphrase?: string;
42
- [index: string]: unknown;
43
- }
44
- interface TransactionPrebuild extends BaseTransactionPrebuild {
45
- txBase64: string;
46
- }
47
- interface SignTransactionOptions extends BaseSignTransactionOptions {
48
- txPrebuild: TransactionPrebuild;
49
- prv: string;
50
- }
51
- interface HalfSignedTransaction {
52
- halfSigned: {
53
- txBase64: string;
54
- };
55
- recipients?: ITransactionRecipient[];
56
- type?: string;
57
- }
58
- interface SupplementGenerateWalletOptions {
59
- rootPrivateKey?: string;
60
- }
61
- interface ExplainTransactionOptions {
62
- txHex?: string;
63
- txBase64?: string;
64
- }
65
- interface TransactionMemo {
66
- value?: string;
67
- type?: string;
68
- }
69
- interface TransactionExplanation extends BaseTransactionExplanation {
70
- memo: TransactionMemo;
71
- }
72
- interface VerifyAddressOptions extends BaseVerifyAddressOptions {
73
- rootAddress: string;
74
- }
75
- interface TrustlineOptions {
76
- token: string;
77
- action: string;
78
- limit?: string;
79
- }
80
- interface TransactionParams extends BaseTransactionParams {
81
- trustlines?: TrustlineOptions[];
82
- }
83
- interface VerifyTransactionOptions extends BaseVerifyTransactionOptions {
84
- txParams: TransactionParams;
85
- }
86
- export declare class Xlm extends BaseCoin {
87
- readonly homeDomain: string;
88
- static readonly tokenPatternSeparator = "-";
89
- static readonly maxMemoId: string;
90
- static readonly maxTrustlineLimit: string;
91
- constructor(bitgo: BitGoBase);
92
- static createInstance(bitgo: BitGoBase): BaseCoin;
93
- protected getStellarNetwork(): stellar.Networks;
94
- /**
95
- * Factor between the base unit and its smallest subdivison
96
- */
97
- getBaseFactor(): number;
98
- /**
99
- * Identifier for the blockchain which supports this coin
100
- */
101
- getChain(): string;
102
- /**
103
- * Identifier for the coin family
104
- */
105
- getFamily(): string;
106
- /**
107
- * Complete human-readable name of this coin
108
- */
109
- getFullName(): string;
110
- /**
111
- * Url at which the stellar federation server can be reached
112
- */
113
- getFederationServerUrl(): string;
114
- /**
115
- * Url at which horizon can be reached
116
- */
117
- getHorizonUrl(): string;
118
- /** inheritdoc */
119
- generateKeyPair(seed?: Buffer): KeyPair;
120
- generateRootKeyPair(seed?: Buffer): KeyPair;
121
- /**
122
- * Get encoded ed25519 public key from raw data
123
- *
124
- * @param pub Raw public key
125
- * @returns Encoded public key
126
- */
127
- getPubFromRaw(pub: string): string;
128
- /**
129
- * Get encoded ed25519 private key from raw data
130
- *
131
- * @param prv Raw private key
132
- * @returns Encoded private key
133
- */
134
- getPrvFromRaw(prv: string): string;
135
- /**
136
- * Return boolean indicating whether input is valid public key for the coin.
137
- *
138
- * @param pub the pub to be checked
139
- * @returns is it valid?
140
- */
141
- isValidPub(pub: string): boolean;
142
- /**
143
- * Return boolean indicating whether input is valid private key for the coin
144
- *
145
- * @param prv the prv to be checked
146
- * @returns is it valid?
147
- */
148
- isValidPrv(prv: string): boolean;
149
- /**
150
- * Return boolean indicating whether a memo id is valid
151
- *
152
- * @param memoId memo id
153
- * @returns true if memo id is valid
154
- */
155
- isValidMemoId(memoId: string): boolean;
156
- supportsDeriveKeyWithSeed(): boolean;
157
- /** inherited doc */
158
- getDefaultMultisigType(): MultisigType;
159
- /**
160
- * Evaluates whether a memo is valid
161
- *
162
- * @param value value of the memo
163
- * @param type type of the memo
164
- * @returns true if value and type are a valid
165
- */
166
- isValidMemo({ value, type }: Memo): boolean;
167
- /**
168
- * Create instance of stellar.MuxedAccount from M address
169
- * See: https://developers.stellar.org/docs/glossary/muxed-accounts
170
- */
171
- getMuxedAccount(address: string): stellar.MuxedAccount;
172
- /**
173
- * Return boolean indicating whether a muxed address is valid
174
- * See: https://developers.stellar.org/docs/glossary/muxed-accounts
175
- *
176
- * @param address
177
- * @returns {boolean}
178
- */
179
- isValidMuxedAddress(address: string): boolean;
180
- /**
181
- * Minimum balance of a 2-of-3 multisig wallet
182
- * @returns minimum balance in stroops
183
- */
184
- getMinimumReserve(): Promise<number>;
185
- /**
186
- * Transaction fee for each operation
187
- * @returns transaction fee in stroops
188
- */
189
- getBaseTransactionFee(): Promise<number>;
190
- /**
191
- * Process address into address and memo id
192
- *
193
- * @param address the address
194
- * @returns object containing address and memo id
195
- */
196
- getAddressDetails(address: string): AddressDetails;
197
- /**
198
- * Validate and return address with appended memo id or muxed address
199
- *
200
- * @param address address
201
- * @param memoId memo id
202
- * @returns address with memo id
203
- */
204
- normalizeAddress({ address, memoId }: AddressDetails): string;
205
- /**
206
- * Return boolean indicating whether input is valid public key for the coin
207
- *
208
- * @param address the pub to be checked
209
- * @returns is it valid?
210
- */
211
- isValidAddress(address: string): boolean;
212
- /**
213
- * Return a Stellar Asset in coin:token form (i.e. (t)xlm:<code>-<issuer>)
214
- * If the asset is XLM, return the chain
215
- * @param {stellar.Asset} asset - instance of Stellar Asset
216
- */
217
- getTokenNameFromStellarAsset(asset: stellar.Asset): string;
218
- /**
219
- * Evaluate whether a stellar username has valid format
220
- * This method is used by the client when a stellar address is being added to a wallet
221
- * Example of a common stellar username: foo@bar.baz
222
- * The above example would result in the Stellar address: foo@bar.baz*bitgo.com
223
- *
224
- * @param username - stellar username
225
- * @return true if stellar username is valid
226
- */
227
- isValidStellarUsername(username: string): boolean;
228
- /**
229
- * Get an instance of FederationServer for BitGo lookups
230
- *
231
- * @returns instance of BitGo Federation Server
232
- */
233
- getBitGoFederationServer(): stellar.FederationServer;
234
- /**
235
- * Perform federation lookups
236
- * Our federation server handles lookups for bitgo as well as for other federation domains
237
- *
238
- * @param {String} [address] - address to look up
239
- * @param {String} [accountId] - account id to look up
240
- */
241
- private federationLookup;
242
- /**
243
- * Attempt to resolve a stellar address into a stellar account
244
- *
245
- * @param {String} address - stellar address to look for
246
- */
247
- federationLookupByName(address: string): Promise<stellar.FederationServer.Record>;
248
- /**
249
- * Attempt to resolve an account id into a stellar account
250
- * Only works for accounts that can be resolved by our federation server
251
- *
252
- * @param {String} accountId - stellar account id
253
- */
254
- federationLookupByAccountId(accountId: string): Promise<stellar.FederationServer.Record>;
255
- /**
256
- * Check if address is a valid XLM address, and then make sure it matches the root address.
257
- *
258
- * @param address {String} the address to verify
259
- * @param rootAddress {String} the wallet's root address
260
- */
261
- isWalletAddress({ address, rootAddress }: VerifyAddressOptions): Promise<boolean>;
262
- /**
263
- * Get extra parameters for prebuilding a tx
264
- * Set empty recipients array in trustline txs
265
- */
266
- getExtraPrebuildParams(buildParams: ExtraPrebuildParamsOptions): Promise<BuildOptions>;
267
- /**
268
- * @deprecated
269
- */
270
- initiateRecovery(params: RecoveryOptions): never;
271
- /**
272
- * Builds a funds recovery transaction without BitGo
273
- * @param params
274
- * - userKey: [encrypted] Stellar private key
275
- * - backupKey: [encrypted] Stellar private key, or public key if the private key is held by a KRS provider
276
- * - walletPassphrase: necessary if one of the private keys is encrypted
277
- * - rootAddress: base address of the wallet to recover funds from
278
- * - krsProvider: necessary if backup key is held by KRS
279
- * - recoveryDestination: target address to send recovered funds to
280
- */
281
- recover(params: RecoveryOptions): Promise<RecoveryTransaction>;
282
- /**
283
- * Assemble keychain and half-sign prebuilt transaction
284
- *
285
- * @param params
286
- * @param params.txPrebuild {Object} prebuild object returned by platform
287
- * @param params.prv {String} user prv
288
- * @returns {Promise<HalfSignedTransaction>}
289
- */
290
- signTransaction(params: SignTransactionOptions): Promise<HalfSignedTransaction>;
291
- /**
292
- * Extend walletParams with extra params required for generating an XLM wallet
293
- *
294
- * Stellar wallets have three keychains on them. Two are generated by the platform, and the last is generated by the user.
295
- * Initially, we need a root prv to generate the account, which must be distinct from all three keychains on the wallet.
296
- * If a root prv is not provided, a random one is generated.
297
- */
298
- supplementGenerateWallet(walletParams: SupplementGenerateWalletOptions): Promise<SupplementGenerateWalletOptions>;
299
- /**
300
- * Sign message with private key
301
- *
302
- * @param key
303
- * @param message
304
- */
305
- signMessage(key: KeyPair, message: string | Buffer): Promise<Buffer>;
306
- /**
307
- * Verifies if signature for message is valid.
308
- *
309
- * @param pub public key
310
- * @param message signed message
311
- * @param signature signature to verify
312
- * @returns true if signature is valid.
313
- */
314
- verifySignature(pub: string, message: string | Buffer, signature: Buffer): boolean;
315
- /**
316
- * Explain/parse transaction
317
- * @param params
318
- */
319
- explainTransaction(params: ExplainTransactionOptions): Promise<TransactionExplanation>;
320
- /**
321
- * Verify that a tx prebuild's operations comply with the original intention
322
- * @param {stellar.Operation} operations - tx operations
323
- * @param {TransactionParams} txParams - params used to build the tx
324
- */
325
- verifyEnableTokenTxOperations(operations: stellar.Operation[], txParams: TransactionParams): void;
326
- /**
327
- * Verify that a tx prebuild's operations comply with the original intention
328
- * @param {stellar.Operation} operations - tx operations
329
- * @param {TransactionParams} txParams - params used to build the tx
330
- */
331
- verifyTrustlineTxOperations(operations: stellar.Operation[], txParams: TransactionParams): void;
332
- /**
333
- * Verify that a transaction prebuild complies with the original intention
334
- *
335
- * @param options
336
- * @param options.txPrebuild prebuild object returned by platform
337
- * @param options.txPrebuild.txBase64 prebuilt transaction encoded as base64 string
338
- * @param options.wallet wallet object to obtain keys to verify against
339
- * @param options.verification specifying some verification parameters
340
- * @param options.verification.disableNetworking Disallow fetching any data from the internet for verification purposes
341
- * @param options.verification.keychains Pass keychains manually rather than fetching them by id
342
- */
343
- verifyTransaction(options: VerifyTransactionOptions): Promise<boolean>;
344
- /** inheritdoc */
345
- deriveKeyWithSeed(): {
346
- derivationPath: string;
347
- key: string;
348
- };
349
- /**
350
- * stellar-sdk has two overloads for toXDR, and typescript can't seem to figure out the
351
- * correct one to use, so we have to be very explicit as to which one we want.
352
- * @param tx transaction to convert
353
- */
354
- protected static txToString: (tx: stellar.Transaction) => string;
355
- parseTransaction(params: ParseTransactionOptions): Promise<ParsedTransaction>;
356
- /**
357
- * Gets config for how token enablements work for this coin
358
- * @returns
359
- * requiresTokenEnablement: True if tokens need to be enabled for this coin
360
- * supportsMultipleTokenEnablements: True if multiple tokens can be enabled in one transaction
361
- */
362
- getTokenEnablementConfig(): TokenEnablementConfig;
363
- /** @inheritDoc */
364
- auditDecryptedKey({ publicKey, prv, multiSigType }: AuditDecryptedKeyParams): void;
365
- }
366
- export {};
367
- //# sourceMappingURL=xlm.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"xlm.d.ts","sourceRoot":"","sources":["../../src/xlm.ts"],"names":[],"mappings":"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"}