-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c3b0553
commit 2090b2f
Showing
9 changed files
with
773 additions
and
368 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Version 4.5.0 of the Wallet Recovery Wizard supports building transactions to recover TAO from your BitGo Hot and Self-Managed Cold wallets. | ||
|
||
Below is a list full node RPC endpoints that must be called to broadcast the transaction as there are no suitable explorers available for TAO. | ||
|
||
Construct the API request to the full node: | ||
|
||
Testnet Request URL: wss://test.finney.opentensor.ai | ||
|
||
Mainnet Request URL: [dummy link] // TODO: Correct link | ||
|
||
Request Body format (find "serializedTx" in your downloaded JSON): | ||
|
||
```json | ||
{ | ||
"id": 1, | ||
"jsonrpc": "2.0", | ||
"method": "author_submitExtrinsic", | ||
"params": ["serializedTx"] | ||
} | ||
``` | ||
|
||
## Important Note | ||
|
||
If using an API request tool such as [Postman](https://www.postman.com/), you must ensure that you connect to a WS endpoint instead of an HTTP endpoint. | ||
|
||
[How to create a WS request using Postman](https://learning.postman.com/docs/sending-requests/websocket/websocket/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.