You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Use this endpoint only with advanced wallets. For other wallet types, use [Accelerate Transaction](https://developers.bitgo.com/reference/expresswalletacceleratetx).
* Test your connection between the Advanced Wallet Manager (AWM) and the Master Bitgo Express (MBE) servers.
36
+
*
37
+
* @tag Advanced Wallets
38
+
* @operationId advancedwallet.mbe.awm.ping
39
+
*/
40
+
constPingAwmRoute=httpRoute({
41
+
method: 'POST',
42
+
path: '/ping/advancedWalletManager',
43
+
request: httpRequest({}),
44
+
response: PingAwmResponse,
45
+
description: 'Ping the advanced wallet manager server',
46
+
});
47
+
48
+
/**
49
+
* Check Version (MBE-to-AWM)
50
+
*
51
+
* Use the Master Bitgo Express (MBE) server to check your version of the Advanced Wallet Manager (AWM) server. Calling this endpoint instructs the MBE server to call [Check AWM Version](https://developers.bitgo.com/reference/v1healthversionawm).
34
52
*
35
53
* @tag Advanced Wallets
36
-
* @operationId v1.advancedwalletmanager.ping
37
-
* @private
54
+
* @operationId advancedwallet.mbe.awm.version
38
55
*/
56
+
constVersionAwmRoute=httpRoute({
57
+
method: 'GET',
58
+
path: '/version/advancedWalletManager',
59
+
request: httpRequest({}),
60
+
response: VersionAwmResponse,
61
+
description: 'Get the version of the advanced wallet manager server',
* Use this endpoint only with advanced wallets. For other wallet types, use [Consolidate account (simple)](https://developers.bitgo.com/reference/expresswalletconsolidateaccount).
* Use this endpoint only with advanced wallets. For other wallet types, use [Consolidate unspents (simple)](https://developers.bitgo.com/reference/expresswalletconsolidateunspents).
* Use this endpoint only with advanced wallets. For other wallet types, use the [Wallet Recovery Wizard](https://developers.bitgo.com/docs/wallets-recover#/).
* Use this endpoint only with advanced wallets. For other wallet types, use the [Wallet Recovery Wizard](https://developers.bitgo.com/docs/wallets-recover#/).
0 commit comments