@bitgo/sdk-api 1.1.0-rc.21 → 1.1.0-rc.24
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/CHANGELOG.md +24 -0
- package/dist/package.json +10 -4
- package/dist/src/bitgoAPI.d.ts +214 -3
- package/dist/src/bitgoAPI.d.ts.map +1 -1
- package/dist/src/bitgoAPI.js +577 -7
- package/dist/src/types.d.ts +82 -0
- package/dist/src/types.d.ts.map +1 -1
- package/dist/src/types.js +1 -1
- package/dist/src/v1/blockchain.d.ts +5 -0
- package/dist/src/v1/blockchain.d.ts.map +1 -0
- package/dist/src/v1/blockchain.js +114 -0
- package/dist/src/v1/keychains.d.ts +5 -0
- package/dist/src/v1/keychains.d.ts.map +1 -0
- package/dist/src/v1/keychains.js +315 -0
- package/dist/src/v1/markets.d.ts +5 -0
- package/dist/src/v1/markets.d.ts.map +1 -0
- package/dist/src/v1/markets.js +63 -0
- package/dist/src/v1/pendingapproval.d.ts +6 -0
- package/dist/src/v1/pendingapproval.d.ts.map +1 -0
- package/dist/src/v1/pendingapproval.js +322 -0
- package/dist/src/v1/pendingapprovals.d.ts +6 -0
- package/dist/src/v1/pendingapprovals.d.ts.map +1 -0
- package/dist/src/v1/pendingapprovals.js +68 -0
- package/dist/src/v1/transactionBuilder.d.ts +5 -0
- package/dist/src/v1/transactionBuilder.d.ts.map +1 -0
- package/dist/src/v1/transactionBuilder.js +889 -0
- package/dist/src/v1/travelRule.d.ts +5 -0
- package/dist/src/v1/travelRule.d.ts.map +1 -0
- package/dist/src/v1/travelRule.js +257 -0
- package/dist/src/v1/wallet.d.ts +6 -0
- package/dist/src/v1/wallet.d.ts.map +1 -0
- package/dist/src/v1/wallet.js +2095 -0
- package/dist/src/v1/wallets.d.ts +5 -0
- package/dist/src/v1/wallets.d.ts.map +1 -0
- package/dist/src/v1/wallets.js +472 -0
- package/dist/web/main.js +1 -1
- package/dist/web/main.js.LICENSE.txt +41 -0
- package/package.json +10 -4
- package/dist/tsconfig.tsbuildinfo +0 -5499
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.1.0-rc.24](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.23...@bitgo/sdk-api@1.1.0-rc.24) (2022-07-01)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @bitgo/sdk-api
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [1.1.0-rc.23](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.22...@bitgo/sdk-api@1.1.0-rc.23) (2022-06-30)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @bitgo/sdk-api
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [1.1.0-rc.22](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.21...@bitgo/sdk-api@1.1.0-rc.22) (2022-06-30)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @bitgo/sdk-api
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
# [1.1.0-rc.21](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.19...@bitgo/sdk-api@1.1.0-rc.21) (2022-06-29)
|
|
7
31
|
|
|
8
32
|
**Note:** Version bump only for package @bitgo/sdk-api
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitgo/sdk-api",
|
|
3
|
-
"version": "1.1.0-rc.
|
|
3
|
+
"version": "1.1.0-rc.24",
|
|
4
4
|
"description": "REST wrapper for BitGoJS",
|
|
5
5
|
"main": "./dist/src/index.js",
|
|
6
6
|
"types": "./dist/src/index.d.ts",
|
|
@@ -24,7 +24,10 @@
|
|
|
24
24
|
"prepare": "npm run build",
|
|
25
25
|
"webpack-dev": "yarn webpack",
|
|
26
26
|
"webpack-prod": "yarn webpack --mode=production --node-env=production",
|
|
27
|
-
"prepublishOnly": "yarn webpack-prod"
|
|
27
|
+
"prepublishOnly": "yarn webpack-prod",
|
|
28
|
+
"test": "npm run coverage",
|
|
29
|
+
"coverage": "nyc -- npm run unit-test",
|
|
30
|
+
"unit-test": "mocha"
|
|
28
31
|
},
|
|
29
32
|
"author": "BitGo SDK Team <sdkteam@bitgo.com>",
|
|
30
33
|
"license": "MIT",
|
|
@@ -48,12 +51,14 @@
|
|
|
48
51
|
]
|
|
49
52
|
},
|
|
50
53
|
"dependencies": {
|
|
51
|
-
"@bitgo/sdk-core": "^1.1.0-rc.
|
|
54
|
+
"@bitgo/sdk-core": "^1.1.0-rc.21",
|
|
52
55
|
"@bitgo/sjcl": "^1.0.1-rc.3",
|
|
56
|
+
"@bitgo/unspents": "^0.8.0",
|
|
53
57
|
"@bitgo/utxo-lib": "^2.3.0-rc.10",
|
|
54
58
|
"@types/superagent": "4.1.15",
|
|
55
59
|
"bip32": "^2.0.6",
|
|
56
60
|
"bitcoinjs-message": "^2.0.0",
|
|
61
|
+
"bluebird": "^3.5.3",
|
|
57
62
|
"browser-or-node": "2.0.0",
|
|
58
63
|
"bs58": "^2.0.1",
|
|
59
64
|
"debug": "3.1.0",
|
|
@@ -61,8 +66,9 @@
|
|
|
61
66
|
"lodash": "^4.17.15",
|
|
62
67
|
"sanitize-html": "^1.27.5",
|
|
63
68
|
"secp256k1": "^4.0.2",
|
|
69
|
+
"secrets.js-grempe": "^1.1.0",
|
|
64
70
|
"superagent": "3.8.3",
|
|
65
71
|
"superagent-proxy": "3.0.0"
|
|
66
72
|
},
|
|
67
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "31eec830f3eb9cf156eae9b77aae2a20f7da52ff"
|
|
68
74
|
}
|
package/dist/src/bitgoAPI.d.ts
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
import * as utxolib from '@bitgo/utxo-lib';
|
|
2
2
|
import { BitGoBase, BitGoRequest, CoinConstructor, DecryptOptions, EncryptOptions, EnvironmentName, GetSharingKeyOptions, IBaseCoin, IRequestTracer } from '@bitgo/sdk-core';
|
|
3
|
-
import { AccessTokenOptions, AddAccessTokenOptions, AuthenticateOptions, BitGoAPIOptions, BitGoJson, CalculateHmacSubjectOptions, CalculateRequestHeadersOptions, CalculateRequestHmacOptions, ExtendTokenOptions, GetUserOptions, PingOptions, ProcessedAuthenticationOptions, RemoveAccessTokenOptions, RequestHeaders, TokenIssuance, TokenIssuanceResponse, UnlockOptions, User, VerifyPasswordOptions, VerifyResponseInfo, VerifyResponseOptions } from './types';
|
|
3
|
+
import { AccessTokenOptions, AddAccessTokenOptions, AuthenticateOptions, AuthenticateWithAuthCodeOptions, BitGoAPIOptions, BitGoJson, BitGoSimulateWebhookOptions, CalculateHmacSubjectOptions, CalculateRequestHeadersOptions, CalculateRequestHmacOptions, ChangePasswordOptions, DeprecatedVerifyAddressOptions, EstimateFeeOptions, ExtendTokenOptions, GetEcdhSecretOptions, GetUserOptions, ListWebhookNotificationsOptions, PingOptions, ProcessedAuthenticationOptions, ReconstitutedSecret, ReconstituteSecretOptions, RegisterPushTokenOptions, RemoveAccessTokenOptions, RequestHeaders, SplitSecret, SplitSecretOptions, TokenIssuance, TokenIssuanceResponse, UnlockOptions, User, VerifyPasswordOptions, VerifyPushTokenOptions, VerifyResponseInfo, VerifyResponseOptions, VerifyShardsOptions, WebhookOptions } from './types';
|
|
4
4
|
export declare class BitGoAPI implements BitGoBase {
|
|
5
|
+
protected _keychains: any;
|
|
6
|
+
protected _wallets: any;
|
|
7
|
+
protected _markets?: any;
|
|
8
|
+
protected _blockchain?: any;
|
|
9
|
+
protected _travelRule?: any;
|
|
10
|
+
protected _pendingApprovals?: any;
|
|
5
11
|
protected static _constants: any;
|
|
6
12
|
protected static _constantsExpire: any;
|
|
7
13
|
protected static _testnetWarningMessage: boolean;
|
|
@@ -25,13 +31,11 @@ export declare class BitGoAPI implements BitGoBase {
|
|
|
25
31
|
protected readonly _clientSecret?: string;
|
|
26
32
|
protected _validate: boolean;
|
|
27
33
|
constructor(params?: BitGoAPIOptions);
|
|
28
|
-
wallets(): any;
|
|
29
34
|
/**
|
|
30
35
|
* Create a basecoin object
|
|
31
36
|
* @param name
|
|
32
37
|
*/
|
|
33
38
|
coin(name: string): IBaseCoin;
|
|
34
|
-
getECDHSharingKeychain(): Promise<any>;
|
|
35
39
|
/**
|
|
36
40
|
* Return the current BitGo environment
|
|
37
41
|
*/
|
|
@@ -310,5 +314,212 @@ export declare class BitGoAPI implements BitGoBase {
|
|
|
310
314
|
* @returns {void}
|
|
311
315
|
*/
|
|
312
316
|
register(name: string, coin: CoinConstructor): void;
|
|
317
|
+
/**
|
|
318
|
+
* Get bitcoin market data
|
|
319
|
+
*
|
|
320
|
+
* @deprecated
|
|
321
|
+
*/
|
|
322
|
+
markets(): any;
|
|
323
|
+
/**
|
|
324
|
+
* Get the latest bitcoin prices
|
|
325
|
+
* (Deprecated: Will be removed in the future) use `bitgo.markets().latest()`
|
|
326
|
+
* @deprecated
|
|
327
|
+
*/
|
|
328
|
+
market(): Promise<any>;
|
|
329
|
+
/**
|
|
330
|
+
* Get market data from yesterday
|
|
331
|
+
* (Deprecated: Will be removed in the future) use bitgo.markets().yesterday()
|
|
332
|
+
* @deprecated
|
|
333
|
+
*/
|
|
334
|
+
yesterday(): Promise<any>;
|
|
335
|
+
/**
|
|
336
|
+
* Get the blockchain object.
|
|
337
|
+
* @deprecated
|
|
338
|
+
*/
|
|
339
|
+
blockchain(): any;
|
|
340
|
+
/**
|
|
341
|
+
* Get the user's keychains object.
|
|
342
|
+
* @deprecated
|
|
343
|
+
*/
|
|
344
|
+
keychains(): any;
|
|
345
|
+
/**
|
|
346
|
+
* Get the travel rule object
|
|
347
|
+
* @deprecated
|
|
348
|
+
*/
|
|
349
|
+
travelRule(): any;
|
|
350
|
+
/**
|
|
351
|
+
* Get the user's wallets object.
|
|
352
|
+
* @deprecated
|
|
353
|
+
*/
|
|
354
|
+
wallets(): any;
|
|
355
|
+
/**
|
|
356
|
+
* Get pending approvals that can be approved/ or rejected
|
|
357
|
+
* @deprecated
|
|
358
|
+
*/
|
|
359
|
+
pendingApprovals(): any;
|
|
360
|
+
/**
|
|
361
|
+
* A factory method to create a new Wallet object, initialized with the wallet params
|
|
362
|
+
* Can be used to reconstitute a wallet from cached data
|
|
363
|
+
* @param walletParams
|
|
364
|
+
* @deprecated
|
|
365
|
+
*/
|
|
366
|
+
newWalletObject(walletParams: any): any;
|
|
367
|
+
/**
|
|
368
|
+
* V1 method for calculating miner fee amounts, given the number and
|
|
369
|
+
* type of transaction inputs, along with a fee rate in satoshis per vkB.
|
|
370
|
+
*
|
|
371
|
+
* This method should not be used for new code.
|
|
372
|
+
*
|
|
373
|
+
* @deprecated
|
|
374
|
+
* @param params
|
|
375
|
+
* @return {any}
|
|
376
|
+
*/
|
|
377
|
+
calculateMinerFeeInfo(params: any): Promise<any>;
|
|
378
|
+
/**
|
|
379
|
+
* Verify a Bitcoin address is a valid base58 address
|
|
380
|
+
* @deprecated
|
|
381
|
+
*/
|
|
382
|
+
verifyAddress(params?: DeprecatedVerifyAddressOptions): boolean;
|
|
383
|
+
/**
|
|
384
|
+
* Split a secret into shards using Shamir Secret Sharing.
|
|
385
|
+
* @param seed A hexadecimal secret to split
|
|
386
|
+
* @param passwords An array of the passwords used to encrypt each share
|
|
387
|
+
* @param m The threshold number of shards necessary to reconstitute the secret
|
|
388
|
+
*/
|
|
389
|
+
splitSecret({ seed, passwords, m }: SplitSecretOptions): SplitSecret;
|
|
390
|
+
/**
|
|
391
|
+
* Reconstitute a secret which was sharded with `splitSecret`.
|
|
392
|
+
* @param shards
|
|
393
|
+
* @param passwords
|
|
394
|
+
*/
|
|
395
|
+
reconstituteSecret({ shards, passwords }: ReconstituteSecretOptions): ReconstitutedSecret;
|
|
396
|
+
/**
|
|
397
|
+
*
|
|
398
|
+
* @param shards
|
|
399
|
+
* @param passwords
|
|
400
|
+
* @param m
|
|
401
|
+
* @param xpub Optional xpub to verify the results against
|
|
402
|
+
*/
|
|
403
|
+
verifyShards({ shards, passwords, m, xpub }: VerifyShardsOptions): boolean;
|
|
404
|
+
/**
|
|
405
|
+
* @deprecated - use `getSharedSecret()`
|
|
406
|
+
*/
|
|
407
|
+
getECDHSecret({ otherPubKeyHex, eckey }: GetEcdhSecretOptions): string;
|
|
408
|
+
/**
|
|
409
|
+
* Gets the user's private keychain, used for receiving shares
|
|
410
|
+
*/
|
|
411
|
+
getECDHSharingKeychain(): Promise<any>;
|
|
412
|
+
/**
|
|
413
|
+
* @param params
|
|
414
|
+
* - operatingSystem: one of ios, android
|
|
415
|
+
* - pushToken: hex-formatted token for the respective native push notification service
|
|
416
|
+
* @returns {*}
|
|
417
|
+
* @deprecated
|
|
418
|
+
*/
|
|
419
|
+
registerPushToken(params: RegisterPushTokenOptions): Promise<any>;
|
|
420
|
+
/**
|
|
421
|
+
* @param params
|
|
422
|
+
* - pushVerificationToken: the token received via push notification to confirm the device's mobility
|
|
423
|
+
* @deprecated
|
|
424
|
+
*/
|
|
425
|
+
verifyPushToken(params: VerifyPushTokenOptions): Promise<any>;
|
|
426
|
+
/**
|
|
427
|
+
* Login to the bitgo system using an authcode generated via Oauth
|
|
428
|
+
*/
|
|
429
|
+
authenticateWithAuthCode(params: AuthenticateWithAuthCodeOptions): Promise<any>;
|
|
430
|
+
/**
|
|
431
|
+
* Change the password of the currently logged in user.
|
|
432
|
+
* Also change all v1 and v2 keychain passwords if they match the
|
|
433
|
+
* given oldPassword. Returns nothing on success.
|
|
434
|
+
* @param oldPassword {String} - the current password
|
|
435
|
+
* @param newPassword {String} - the new password
|
|
436
|
+
*/
|
|
437
|
+
changePassword({ oldPassword, newPassword }: ChangePasswordOptions): Promise<any>;
|
|
438
|
+
/**
|
|
439
|
+
* Get all the address labels on all of the user's wallets
|
|
440
|
+
*
|
|
441
|
+
* @deprecated
|
|
442
|
+
*/
|
|
443
|
+
labels(): Promise<any>;
|
|
444
|
+
/**
|
|
445
|
+
* Estimates approximate fee per kb needed for a tx to get into a block
|
|
446
|
+
* @param {number} params.numBlocks target blocks for the transaction to be confirmed
|
|
447
|
+
* @param {number} params.maxFee maximum fee willing to be paid (for safety)
|
|
448
|
+
* @param {array[string]} params.inputs list of unconfirmed txIds from which this transaction uses inputs
|
|
449
|
+
* @param {number} params.txSize estimated transaction size in bytes, optional parameter used for CPFP estimation.
|
|
450
|
+
* @param {boolean} params.cpfpAware flag indicating fee should take into account CPFP
|
|
451
|
+
* @deprecated
|
|
452
|
+
*/
|
|
453
|
+
estimateFee(params?: EstimateFeeOptions): Promise<any>;
|
|
454
|
+
/**
|
|
455
|
+
* Get BitGo's guarantee using an instant id
|
|
456
|
+
* @param params
|
|
457
|
+
* @deprecated
|
|
458
|
+
*/
|
|
459
|
+
instantGuarantee(params: {
|
|
460
|
+
id: string;
|
|
461
|
+
}): Promise<any>;
|
|
462
|
+
/**
|
|
463
|
+
* Get a target address for payment of a BitGo fee
|
|
464
|
+
* @deprecated
|
|
465
|
+
*/
|
|
466
|
+
getBitGoFeeAddress(): Promise<any>;
|
|
467
|
+
/**
|
|
468
|
+
* Gets an address object (including the wallet id) for a given address.
|
|
469
|
+
* @param {string} params.address The address to look up.
|
|
470
|
+
* @deprecated
|
|
471
|
+
*/
|
|
472
|
+
getWalletAddress({ address }: {
|
|
473
|
+
address: string;
|
|
474
|
+
}): Promise<any>;
|
|
475
|
+
/**
|
|
476
|
+
* Fetch list of user webhooks
|
|
477
|
+
*
|
|
478
|
+
* @returns {*}
|
|
479
|
+
* @deprecated
|
|
480
|
+
*/
|
|
481
|
+
listWebhooks(): Promise<any>;
|
|
482
|
+
/**
|
|
483
|
+
* Add new user webhook
|
|
484
|
+
*
|
|
485
|
+
* @param params
|
|
486
|
+
* @returns {*}
|
|
487
|
+
* @deprecated
|
|
488
|
+
*/
|
|
489
|
+
addWebhook(params: WebhookOptions): Promise<any>;
|
|
490
|
+
/**
|
|
491
|
+
* Remove user webhook
|
|
492
|
+
*
|
|
493
|
+
* @param params
|
|
494
|
+
* @returns {*}
|
|
495
|
+
* @deprecated
|
|
496
|
+
*/
|
|
497
|
+
removeWebhook(params: WebhookOptions): Promise<any>;
|
|
498
|
+
/**
|
|
499
|
+
* Fetch list of webhook notifications for the user
|
|
500
|
+
*
|
|
501
|
+
* @param params
|
|
502
|
+
* @returns {*}
|
|
503
|
+
*/
|
|
504
|
+
listWebhookNotifications(params?: ListWebhookNotificationsOptions): Promise<any>;
|
|
505
|
+
/**
|
|
506
|
+
* Simulate a user webhook
|
|
507
|
+
*
|
|
508
|
+
* @param params
|
|
509
|
+
* @returns {*}
|
|
510
|
+
*/
|
|
511
|
+
simulateWebhook(params: BitGoSimulateWebhookOptions): Promise<any>;
|
|
512
|
+
/**
|
|
513
|
+
* Synchronously get constants which are relevant to the client.
|
|
514
|
+
*
|
|
515
|
+
* Note: This function has a known race condition. It may return different values over time,
|
|
516
|
+
* especially if called shortly after creation of the BitGo object.
|
|
517
|
+
*
|
|
518
|
+
* New code should call fetchConstants() directly instead.
|
|
519
|
+
*
|
|
520
|
+
* @deprecated
|
|
521
|
+
* @return {Object} The client constants object
|
|
522
|
+
*/
|
|
523
|
+
getConstants(): any;
|
|
313
524
|
}
|
|
314
525
|
//# sourceMappingURL=bitgoAPI.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bitgoAPI.d.ts","sourceRoot":"","sources":["../../src/bitgoAPI.ts"],"names":[],"mappings":"AAiBA,OAAO,KAAK,OAAO,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAEL,SAAS,EACT,YAAY,EACZ,eAAe,EAEf,cAAc,
|
|
1
|
+
{"version":3,"file":"bitgoAPI.d.ts","sourceRoot":"","sources":["../../src/bitgoAPI.ts"],"names":[],"mappings":"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"}
|