Withdraw from Wallet - Self-Managed MPC Hot (Simple)

Overview

The simple withdrawal flow for self-managed MPC hot wallets enables you to build, sign, and send transactions, all in 1 call, using the BitGo JavaScript SDK. The simple flow suffices for most use cases. If you require more granular control, see the integration guide for the advanced flow.

The simple flow also supports sending to many recipients in 1 transaction, lowering the aggregate amount of blockchain fees when compared to creating multiple transactions. Sending to many aligns with the simple transaction flow, where in 1 call you build, sign, and send a half-signed transaction to BitGo. BitGo then uses the BitGo key to create a fully signed send-to-many transaction.

Just like with the advanced flow, you can configure wallet policies to require approvals on withdrawals. Once the transaction is half signed and approved, you send it to BitGo for final signing and broadcasting to the blockchain.

Prerequisites

1. Build, Sign, and Send Transaction

Build and sign the transaction and send it to BitGo, all in 1 call.

Additionally, you can create a send-to-many transaction that automatically invokes a batcher contract to send assets to multiple recipients. Currently, send-to-many transaction are available for ETH and MATIC and are limited to 200 recipients.

Endpoints:

  • cURL
  • JavaScript
  • JavaScript (send to many)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 export BITGO_EXPRESS_HOST="<YOUR_LOCAL_HOST>" export COIN="<ASSET_ID>" export WALLET_ID="<YOUR_WALLET_ID>" export ACCESS_TOKEN="<YOUR_ACCESS_TOKEN>" export WALLET_PASSPHRASE="<YOUR_WALLET_PASSPHRASE>" export ADDRESS="<DESTINATION_ADDRESS>" export AMOUNT="<AMOUNT_IN_BASE_UNITS>" curl -X POST \ http://$BITGO_EXPRESS_HOST:3080/api/v2/$COIN/wallet/$WALLET_ID/sendmany \ -H 'Content-Type: application/json' \ -H "Authorization: Bearer $ACCESS_TOKEN" \ -d '{ "walletPassphrase": "'"$WALLET_PASSPHRASE"'", "recipients": [ { "address": "'"$ADDRESS"'", "amount": "'"$AMOUNT"'" } ], "type": "transfer" }'

Step Result

BitGo uses the data you pass to build a half-signed transaction. The transaction remains in a pending-approval status until a wallet admin approves it.

  • JSON
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 { "transfer": { "entries": [ { "address": "0x1a52b70e708f4aec9d92260aa035b3c71e51df84", "wallet": "665e33f768f9b4b1cc2ca87a6b87cdfb", "value": -1, "valueString": "-1" }, { "address": "0xe2c5b494162bd9033283af31e35be27c6ee4bbf7", "value": 1, "valueString": "1" } ], "id": "665e352e29c225381225e8f5f74f429d", "coin": "hteth", "wallet": "665e33f768f9b4b1cc2ca87a6b87cdfb", "walletType": "hot", "enterprise": "66325011d4b1ff58feae3b311d669aae", "organization": "66325011d4b1ff58feae3b76c2d30987", "txid": "0x43f7bef95dd02eea33d447afc625908a429902fbd35a35f0da6b7befddc69d9b", "txidType": "transactionHash", "txRequestId": "2c7e52a6-a422-49d3-876c-c050fb4cbf36", "height": 999999999, "heightId": "999999999-665e352e29c225381225e8f5f74f429d", "date": "2024-06-03T21:27:10.071Z", "type": "send", "value": -1, "valueString": "-1", "intendedValueString": "-1", "baseValue": -1, "baseValueString": "-1", "baseValueWithoutFees": -1, "baseValueWithoutFeesString": "-1", "feeString": "0", "payGoFee": 0, "payGoFeeString": "0", "usd": 0, "usdRate": 3775.4311802956, "state": "signed", "instant": false, "isReward": false, "isUnlock": false, "isFee": false, "tags": [ "665e33f768f9b4b1cc2ca87a6b87cdfb", "66325011d4b1ff58feae3b311d669aae" ], "history": [ { "date": "2024-06-03T21:27:10.071Z", "action": "signed" }, { "date": "2024-06-03T21:27:10.020Z", "user": "660d7c9fa6fbf0d00b415146cf70405a", "action": "created" } ], "signedDate": "2024-06-03T21:27:10.071Z", "coinSpecific": { "isMev": false }, "metadata": [], "signedTime": "2024-06-03T21:27:10.071Z", "createdTime": "2024-06-03T21:27:10.020Z" }, "txRequest": { "apiVersion": "full", "txRequestId": "2c7e52a6-a422-49d3-876c-c050fb4cbf36", "walletId": "665e33f768f9b4b1cc2ca87a6b87cdfb", "walletType": "hot", "version": 10, "enterpriseId": "66325011d4b1ff58feae3b311d669aae", "organizationId": "66325011d4b1ff58feae3b76c2d30987", "userId": "660d7c9fa6fbf0d00b415146cf70405a", "initiatedBy": "660d7c9fa6fbf0d00b415146cf70405a", "updatedBy": "660d7c9fa6fbf0d00b415146cf70405a", "policiesChecked": true, "date": "2024-06-03T21:27:10.203Z", "createdDate": "2024-06-03T21:27:01.066Z", "intent": { "intentType": "payment", "recipients": [ { "address": { "address": "0xE2C5b494162bd9033283Af31e35Be27C6Ee4Bbf7" }, "amount": { "value": "1", "symbol": "hteth" } } ], "feeOptions": { "baseFee": "1005178132", "gasUsedRatio": "0.2743939", "safeLowMinerTip": "10896128", "normalMinerTip": "22751361", "standardMinerTip": "498266940", "fastestMinerTip": "437486468", "ludicrousMinerTip": "1500000000", "maxPriorityFeePerGas": "498266940", "maxFeePerGas": "2508623204" }, "senderAddressIndex": 0 }, "intents": [ { "intentType": "payment", "recipients": [ { "address": { "address": "0xE2C5b494162bd9033283Af31e35Be27C6Ee4Bbf7" }, "amount": { "value": "1", "symbol": "hteth" } } ], "feeOptions": { "baseFee": "1005178132", "gasUsedRatio": "0.2743939", "safeLowMinerTip": "10896128", "normalMinerTip": "22751361", "standardMinerTip": "498266940", "fastestMinerTip": "437486468", "ludicrousMinerTip": "1500000000", "maxPriorityFeePerGas": "498266940", "maxFeePerGas": "2508623204" }, "senderAddressIndex": 0 } ], "state": "delivered", "latest": true, "transactions": [ { "state": "delivered", "signatureShares": [], "commitmentShares": [], "unsignedTx": { "parsedTx": { "minerFee": "0", "spendAmount": "1", "spendAmounts": [ { "coinName": "hteth", "amountString": "1" } ], "outputs": [ { "address": "0xe2c5b494162bd9033283af31e35be27c6ee4bbf7", "wallets": [], "enterprises": [], "valueString": "1", "coinName": "hteth" } ], "inputs": [ { "value": 1, "address": "0x1a52b70e708f4aec9d92260aa035b3c71e51df84", "valueString": "1" } ], "hasUnvalidatedData": false }, "serializedTxHex": "02ed82426880841db2f33c8495868d648301637894e2c5b494162bd9033283af31e35be27c6ee4bbf70180c0808080", "signableHex": "02ea82426880841db2f33c8495868d648301637894e2c5b494162bd9033283af31e35be27c6ee4bbf70180c0", "feeInfo": { "fee": 136813501552000, "feeString": "136813501552000" }, "derivationPath": "m" }, "txHash": "0x43f7bef95dd02eea33d447afc625908a429902fbd35a35f0da6b7befddc69d9b", "signedTx": { "id": "0x43f7bef95dd02eea33d447afc625908a429902fbd35a35f0da6b7befddc69d9b", "tx": "0x02f86d82426880841db2f33c8495868d648301637894e2c5b494162bd9033283af31e35be27c6ee4bbf70180c080a0631c4464bcb29519ac7e3998955c1bda374d058868557661c3711d531cb37e62a04836e3cf75969a2ddd9c38981d1b6fade02733059544c74784f9a85e62da8719" }, "updatedDate": "2024-06-03T21:27:10.215Z", "createdDate": "2024-06-03T21:27:01.072Z" } ], "messages": [], "isCanceled": false }, "txid": "0x43f7bef95dd02eea33d447afc625908a429902fbd35a35f0da6b7befddc69d9b", "tx": "0x02f86d82426880841db2f33c8495868d648301637894e2c5b494162bd9033283af31e35be27c6ee4bbf70180c080a0631c4464bcb29519ac7e3998955c1bda374d058868557661c3711d531cb37e62a04836e3cf75969a2ddd9c38981d1b6fade02733059544c74784f9a85e62da8719", "status": "signed" }

2. Approve Transaction

Note: You can't approve your own transactions - another admin must approve them.

Endpoint: Update Pending Approval

  • cURL
  • JavaScript
1 2 3 4 5 6 7 8 9 10 11 12 export APPROVAL_ID="<APPROVAL_ID>" export ACCESS_TOKEN="<YOUR_ACCESS_TOKEN>" export OTP="<YOUR_OTP>" curl -X PUT \ https://app.bitgo-test.com/api/v2/pendingApprovals/$APPROVAL_ID \ -H 'Content-Type: application/json' \ -H "Authorization: Bearer $ACCESS_TOKEN" \ -d '{ "state": "approved", "otp": "'"$OTP"'" }'

Step Result

Once approved, BitGo rebuilds the half-signed transaction, applying the most up-to-date fees. BitGo then applies the final signature using the BitGo key and broadcasts the transaction to the blockchain.

  • JSON
  • JSON (send to many)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 { "id": "655686880765186f0b3e9e88e1bdd0f4", "coin": "tbtc", "wallet": "6553e933288be490293ae748efafeaaf", "enterprise": "62c5ae8174ac860007aff138a2d74df7", "creator": "62ab90e06dfda30007974f0a52a12995", "createDate": "2023-11-16T21:15:52.703Z", "info": { "type": "transactionRequest", "transactionRequest": { "requestedAmount": "10000", "fee": 45242, "sourceWallet": "6553e933288be490293ae748efafeaaf", "policyUniqueId": "6553e933288be490293ae753", "recipients": [ { "address": "2N3sBpM1RnWRMXnEVoUWnM7xtYzL756JE2Q", "amount": "10000", "_id": "655686880765186f0b3e9e8a" } ], "buildParams": { "recipients": [ { "address": "2N3sBpM1RnWRMXnEVoUWnM7xtYzL756JE2Q", "amount": "10000" } ] }, "coinSpecific": { "tbtc": { "txHex": "01000000000101eac5e7d68acfc2349672fb99094e79c2006e5fd663475c8f1eb6f29095970b740100000000ffffffff02102700000000000017a914747e6b7f5db53794b0fc01d95878e0f9b6db96738746c1020000000000220020efb9deaabeab5d62cecc363f24cd6deafcdd14d93d8734f7f01ed3953e732a640500483045022100cd6c221e4cefbb51aa82087d86e7d089b2473eb21ae809dba89eb9f13c4caf19022000f3b7f1b7fec2dc49cbfce35baa69ca37ab9ee8e51c779cde5b98a653f3e142010000695221029bde55661e4f359cf9ca2d1846c235e752f760ed6d65e2018f821253e78b3c722103f2b4a813ab79e4fb46edf3a6a87fb154a85b45810158e949f41a3fce3c9bf574210399a6d766f6d3a3843f8479446ee766b5745dc15c24d1db5149214d27987bd29453ae00000000" } }, "validTransaction": "01000000000101eac5e7d68acfc2349672fb99094e79c2006e5fd663475c8f1eb6f29095970b740100000000ffffffff02102700000000000017a914747e6b7f5db53794b0fc01d95878e0f9b6db96738746c1020000000000220020efb9deaabeab5d62cecc363f24cd6deafcdd14d93d8734f7f01ed3953e732a640400483045022100cd6c221e4cefbb51aa82087d86e7d089b2473eb21ae809dba89eb9f13c4caf19022000f3b7f1b7fec2dc49cbfce35baa69ca37ab9ee8e51c779cde5b98a653f3e14201473044022002b246c43722fec49858caf6b0605a0d01a6b6c13c964b84bf272604fd3951780220324ee44ba3ce8febb154c317e688a5f6ed410ad8e2bd77c5678bf1f7f3eb45f601695221029bde55661e4f359cf9ca2d1846c235e752f760ed6d65e2018f821253e78b3c722103f2b4a813ab79e4fb46edf3a6a87fb154a85b45810158e949f41a3fce3c9bf574210399a6d766f6d3a3843f8479446ee766b5745dc15c24d1db5149214d27987bd29453ae00000000", "validTransactionHash": "ff40ccd5c8ba75ffdce27d8584b6e8ee625cb3f71f7cbb6d072a445a97c2c8c3" } }, "state": "approved", "scope": "wallet", "userIds": [ "62ab90e06dfda30007974f0a52a12995", "627ff9325a5c1b0007c05a40d15e1522" ], "approvalsRequired": 1, "singleRunResults": [ { "ruleId": "Custodial Enterprise Transaction ID Verification", "triggered": false, "_id": "655686880765186f0b3e9e89" } ], "resolvers": [ { "user": "627ff9325a5c1b0007c05a40d15e1522", "date": "2023-11-16T21:33:24.644Z", "resolutionType": "pending" } ] }

Next

You can view your completed withdrawal in BitGo or on a blockchain explorer.

See Also