haveno-ts/docs/index.html
2024-09-20 21:30:40 -04:00

489 lines
69 KiB
HTML

<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>haveno-ts</title><meta name="description" content="Documentation for haveno-ts"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="assets/style.css"/><link rel="stylesheet" href="assets/highlight.css"/><script async src="assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
<div class="tsd-toolbar-contents container">
<div class="table-cell" id="tsd-search" data-base=".">
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
<div class="field">
<div id="tsd-toolbar-links"></div></div>
<ul class="results">
<li class="state loading">Preparing search index...</li>
<li class="state failure">The search index is not available</li></ul><a href="index.html" class="title">haveno-ts</a></div>
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
<div class="container container-main">
<div class="col-8 col-content">
<div class="tsd-page-title">
<h2>haveno-ts</h2></div>
<div class="tsd-panel tsd-typography">
<a href="#haveno-typescript-library" id="haveno-typescript-library" style="color: inherit; text-decoration: none;">
<h1>Haveno TypeScript Library</h1>
</a>
<p><img src="https://img.shields.io/github/actions/workflow/status/haveno-dex/haveno-ts/build.yml?branch=master" alt="GitHub Workflow Status">
<a href="https://twitter.com/havenodex"><img src="https://img.shields.io/twitter/follow/HavenoDEX?style=social" alt="Twitter Follow"></a>
<a href="https://matrix.to/#/#haveno:monero.social"><img src="https://img.shields.io/badge/Matrix%20room-%23haveno-blue" alt="Matrix rooms"></a></p>
<p>TypeScript library for using Haveno.</p>
<a href="#install" id="install" style="color: inherit; text-decoration: none;">
<h2>Install</h2>
</a>
<ol>
<li>Start a Haveno daemon (see <a href="https://github.com/haveno-dex/haveno/blob/master/docs/installing.md">installing.md</a>).</li>
<li>Install haveno-ts in your project: <code>npm install haveno-ts</code></li>
</ol>
<a href="#sample-code" id="sample-code" style="color: inherit; text-decoration: none;">
<h2>Sample code</h2>
</a>
<pre><code class="language-js"><span class="hl-0">import</span><span class="hl-1"> { </span><span class="hl-2">HavenoClient</span><span class="hl-1"> } </span><span class="hl-0">from</span><span class="hl-1"> </span><span class="hl-3">&quot;haveno-ts&quot;</span><span class="hl-1">;</span><br/><br/><span class="hl-4">// create client connected to Haveno daemon</span><br/><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">alice</span><span class="hl-1"> = </span><span class="hl-5">new</span><span class="hl-1"> </span><span class="hl-7">HavenoClient</span><span class="hl-1">(</span><span class="hl-3">&quot;http://localhost:8080&quot;</span><span class="hl-1">, </span><span class="hl-3">&quot;apitest&quot;</span><span class="hl-1">);</span><br/><br/><span class="hl-4">// use Haveno daemon</span><br/><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">balances</span><span class="hl-1"> = </span><span class="hl-0">await</span><span class="hl-1"> </span><span class="hl-2">alice</span><span class="hl-1">.</span><span class="hl-7">getBalances</span><span class="hl-1">();</span><br/><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">paymentAccounts</span><span class="hl-1"> = </span><span class="hl-0">await</span><span class="hl-1"> </span><span class="hl-2">alice</span><span class="hl-1">.</span><span class="hl-7">getPaymentAccounts</span><span class="hl-1">();</span><br/><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">myOffers</span><span class="hl-1"> = </span><span class="hl-0">await</span><span class="hl-1"> </span><span class="hl-2">alice</span><span class="hl-1">.</span><span class="hl-7">getMyOffers</span><span class="hl-1">(</span><span class="hl-3">&quot;ETH&quot;</span><span class="hl-1">);</span><br/><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">offers</span><span class="hl-1"> = </span><span class="hl-0">await</span><span class="hl-1"> </span><span class="hl-2">alice</span><span class="hl-1">.</span><span class="hl-7">getOffers</span><span class="hl-1">(</span><span class="hl-3">&quot;ETH&quot;</span><span class="hl-1">, </span><span class="hl-3">&quot;BUY&quot;</span><span class="hl-1">);</span><br/><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">trade</span><span class="hl-1"> = </span><span class="hl-0">await</span><span class="hl-1"> </span><span class="hl-2">alice</span><span class="hl-1">.</span><span class="hl-7">takeOffer</span><span class="hl-1">(</span><span class="hl-2">offers</span><span class="hl-1">[</span><span class="hl-8">0</span><span class="hl-1">].</span><span class="hl-7">getId</span><span class="hl-1">(), </span><span class="hl-2">paymentAccounts</span><span class="hl-1">[</span><span class="hl-8">0</span><span class="hl-1">].</span><span class="hl-7">getId</span><span class="hl-1">());</span><br/><br/><span class="hl-4">// disconnect client</span><br/><span class="hl-0">await</span><span class="hl-1"> </span><span class="hl-2">alice</span><span class="hl-1">.</span><span class="hl-7">disconnect</span><span class="hl-1">();</span>
</code></pre>
<a href="#typedocs" id="typedocs" style="color: inherit; text-decoration: none;">
<h2>TypeDocs</h2>
</a>
<p>See <a href="https://haveno-dex.github.io/haveno-ts/classes/HavenoClient.HavenoClient.html">TypeDocs</a>.</p>
<a href="#run-tests" id="run-tests" style="color: inherit; text-decoration: none;">
<h2>Run tests</h2>
</a>
<p>Running the <a href="./src/HavenoClient.test.ts">API tests</a> is the best way to develop and test Haveno end-to-end. <a href="./src/HavenoClient.ts"><code>HavenoClient.ts</code></a> provides the client interface to Haveno&#39;s backend daemon.</p>
<p>You first need to start a local Haveno network which can be done manually or using docker.</p>
<a href="#start-local-haveno-network-manually" id="start-local-haveno-network-manually" style="color: inherit; text-decoration: none;">
<h3>Start local Haveno network manually</h3>
</a>
<p>This workflow is useful for local development of <code>haveno</code> and <code>haveno-ts</code></p>
<ol>
<li><a href="https://github.com/haveno-dex/haveno/blob/master/docs/installing.md">Run a local Haveno test network</a> and then shut down the arbitrator, user1, and user2 or run them as daemons, e.g. <code>make user1-daemon-local</code>. You may omit the arbitrator registration steps since it&#39;s done automatically in the tests.</li>
<li>Clone this project to the same parent directory as the haveno project: <code>git clone https://github.com/haveno-dex/haveno-ts</code></li>
<li>Install <code>envoy</code> proxy from your package manager of choice, for example <code>brew install envoy</code>.</li>
<li>In a new terminal, start envoy with the config in haveno-ts/config/envoy.local.yaml: <code>envoy -c config/envoy.local.yaml</code></li>
<li>In a new terminal, start the funding wallet. This wallet will be funded automatically in order to fund the tests.<br>For example: <code>cd ~/git/haveno &amp;&amp; make funding-wallet-local</code>.</li>
</ol>
<a href="#start-local-haveno-network-with-docker" id="start-local-haveno-network-with-docker" style="color: inherit; text-decoration: none;">
<h3>Start local Haveno network with docker</h3>
</a>
<p>Alternatively use this wokflow to develop <code>haveno-ts</code> or run tests with dockerized setup:</p>
<p>Start a local Haveno network with docker:</p>
<ol>
<li><code>cd ~/git/haveno-ts/docker</code></li>
<li><code>sudo docker-compose up</code>. This will start docker and initialize the network.</li>
</ol>
<blockquote>
<p><strong>Docker Tips</strong></p>
<ul>
<li>Stop: <code>sudo docker-compose stop</code></li>
<li>Rebuild: <code>sudo docker-compose build</code></li>
<li>Stop and delete contains: <code>sudo docker-compose stop</code></li>
</ul>
</blockquote>
<a href="#run-client-tests" id="run-client-tests" style="color: inherit; text-decoration: none;">
<h3>Run client tests</h3>
</a>
<ol start="5">
<li>Install protobuf compiler <a href="https://github.com/protocolbuffers/protobuf/releases/tag/v3.20.3">v3.20.3</a> for your system.</li>
<li>Download <code>protoc-gen-grpc-web</code> plugin and make executable as <a href="https://github.com/grpc/grpc-web#code-generator-plugin">shown here</a>.</li>
<li><code>cd haveno-ts</code></li>
<li><code>npm install</code></li>
<li><code>npm run test -- --baseCurrencyNetwork=XMR_LOCAL</code> to run all tests or <code>npm run test -- --baseCurrencyNetwork=XMR_LOCAL -t &quot;Can get the version&quot;</code> to run tests by name.</li>
</ol>
</div></div>
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
<div class="tsd-navigation settings">
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Settings</h3></summary>
<div class="tsd-accordion-details">
<div class="tsd-filter-visibility">
<h4 class="uppercase">Member Visibility</h4><form>
<ul id="tsd-filter-options">
<li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li>
<li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li>
<li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div>
<div class="tsd-theme-toggle">
<h4 class="uppercase">Theme</h4><select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div>
<nav class="tsd-navigation primary">
<details class="tsd-index-accordion" open><summary class="tsd-accordion-summary">
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
<div class="tsd-accordion-details">
<ul>
<li class="current selected"><a href="modules.html">haveno-<wbr/>ts</a>
<ul>
<li class="tsd-kind-module"><a href="modules/HavenoClient.html">Haveno<wbr/>Client</a>
<ul>
<li class="tsd-kind-module tsd-parent-kind-module"><a href="modules/HavenoClient._internal_.html">&lt;internal&gt;</a></li></ul></li>
<li class="tsd-kind-module"><a href="modules/index.html">index</a></li>
<li class="tsd-kind-module"><a href="modules/index-1.html">index</a></li>
<li class="tsd-kind-module"><a href="modules/protobuf_GrpcServiceClientPb.html">protobuf/<wbr/>Grpc<wbr/>Service<wbr/>Client<wbr/>Pb</a>
<ul>
<li class="tsd-kind-module tsd-parent-kind-module"><a href="modules/protobuf_GrpcServiceClientPb._internal_.html">&lt;internal&gt;</a></li></ul></li>
<li class="tsd-kind-module"><a href="modules/protobuf_grpc_pb.html">protobuf/grpc_<wbr/>pb</a>
<ul>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.AccountExistsReply.html">Account<wbr/>Exists<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.AccountExistsRequest.html">Account<wbr/>Exists<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.AddConnectionReply.html">Add<wbr/>Connection<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.AddConnectionRequest.html">Add<wbr/>Connection<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.AddressBalanceInfo.html">Address<wbr/>Balance<wbr/>Info</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.AvailabilityResultWithDescription.html">Availability<wbr/>Result<wbr/>With<wbr/>Description</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.BackupAccountReply.html">Backup<wbr/>Account<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.BackupAccountRequest.html">Backup<wbr/>Account<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.BalancesInfo.html">Balances<wbr/>Info</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.BtcBalanceInfo.html">Btc<wbr/>Balance<wbr/>Info</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.CancelOfferReply.html">Cancel<wbr/>Offer<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.CancelOfferRequest.html">Cancel<wbr/>Offer<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.ChangePasswordReply.html">Change<wbr/>Password<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.ChangePasswordRequest.html">Change<wbr/>Password<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.CheckConnectionReply.html">Check<wbr/>Connection<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.CheckConnectionRequest.html">Check<wbr/>Connection<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.CheckConnectionsReply.html">Check<wbr/>Connections<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.CheckConnectionsRequest.html">Check<wbr/>Connections<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.CloseAccountReply.html">Close<wbr/>Account<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.CloseAccountRequest.html">Close<wbr/>Account<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.CompleteTradeReply.html">Complete<wbr/>Trade<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.CompleteTradeRequest.html">Complete<wbr/>Trade<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.ConfirmPaymentReceivedReply.html">Confirm<wbr/>Payment<wbr/>Received<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.ConfirmPaymentReceivedRequest.html">Confirm<wbr/>Payment<wbr/>Received<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.ConfirmPaymentSentReply.html">Confirm<wbr/>Payment<wbr/>Sent<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.ConfirmPaymentSentRequest.html">Confirm<wbr/>Payment<wbr/>Sent<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.ContractInfo.html">Contract<wbr/>Info</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.CreateAccountReply.html">Create<wbr/>Account<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.CreateAccountRequest.html">Create<wbr/>Account<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.CreateCryptoCurrencyPaymentAccountReply.html">Create<wbr/>Crypto<wbr/>Currency<wbr/>Payment<wbr/>Account<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.CreateCryptoCurrencyPaymentAccountRequest.html">Create<wbr/>Crypto<wbr/>Currency<wbr/>Payment<wbr/>Account<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.CreatePaymentAccountReply.html">Create<wbr/>Payment<wbr/>Account<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.CreatePaymentAccountRequest.html">Create<wbr/>Payment<wbr/>Account<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.CreateXmrTxReply.html">Create<wbr/>Xmr<wbr/>Tx<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.CreateXmrTxRequest.html">Create<wbr/>Xmr<wbr/>Tx<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.DeleteAccountReply.html">Delete<wbr/>Account<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.DeleteAccountRequest.html">Delete<wbr/>Account<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.DeletePaymentAccountReply.html">Delete<wbr/>Payment<wbr/>Account<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.DeletePaymentAccountRequest.html">Delete<wbr/>Payment<wbr/>Account<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetAddressBalanceReply.html">Get<wbr/>Address<wbr/>Balance<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetAddressBalanceRequest.html">Get<wbr/>Address<wbr/>Balance<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetBalancesReply.html">Get<wbr/>Balances<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetBalancesRequest.html">Get<wbr/>Balances<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetBestAvailableConnectionReply.html">Get<wbr/>Best<wbr/>Available<wbr/>Connection<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetBestAvailableConnectionRequest.html">Get<wbr/>Best<wbr/>Available<wbr/>Connection<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetChatMessagesReply.html">Get<wbr/>Chat<wbr/>Messages<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetChatMessagesRequest.html">Get<wbr/>Chat<wbr/>Messages<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetConnectionReply.html">Get<wbr/>Connection<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetConnectionRequest.html">Get<wbr/>Connection<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetConnectionsReply.html">Get<wbr/>Connections<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetConnectionsRequest.html">Get<wbr/>Connections<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetCryptoCurrencyPaymentMethodsReply.html">Get<wbr/>Crypto<wbr/>Currency<wbr/>Payment<wbr/>Methods<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetCryptoCurrencyPaymentMethodsRequest.html">Get<wbr/>Crypto<wbr/>Currency<wbr/>Payment<wbr/>Methods<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetDisputeReply.html">Get<wbr/>Dispute<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetDisputeRequest.html">Get<wbr/>Dispute<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetDisputesReply.html">Get<wbr/>Disputes<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetDisputesRequest.html">Get<wbr/>Disputes<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetFundingAddressesReply.html">Get<wbr/>Funding<wbr/>Addresses<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetFundingAddressesRequest.html">Get<wbr/>Funding<wbr/>Addresses<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetMethodHelpReply.html">Get<wbr/>Method<wbr/>Help<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetMethodHelpRequest.html">Get<wbr/>Method<wbr/>Help<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetMyOfferReply.html">Get<wbr/>My<wbr/>Offer<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetMyOfferRequest.html">Get<wbr/>My<wbr/>Offer<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetMyOffersReply.html">Get<wbr/>My<wbr/>Offers<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetMyOffersRequest.html">Get<wbr/>My<wbr/>Offers<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetOfferReply.html">Get<wbr/>Offer<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetOfferRequest.html">Get<wbr/>Offer<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetOffersReply.html">Get<wbr/>Offers<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetOffersRequest.html">Get<wbr/>Offers<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetPaymentAccountFormAsJsonReply.html">Get<wbr/>Payment<wbr/>Account<wbr/>Form<wbr/>As<wbr/>Json<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetPaymentAccountFormAsJsonRequest.html">Get<wbr/>Payment<wbr/>Account<wbr/>Form<wbr/>As<wbr/>Json<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetPaymentAccountFormReply.html">Get<wbr/>Payment<wbr/>Account<wbr/>Form<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetPaymentAccountFormRequest.html">Get<wbr/>Payment<wbr/>Account<wbr/>Form<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetPaymentAccountsReply.html">Get<wbr/>Payment<wbr/>Accounts<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetPaymentAccountsRequest.html">Get<wbr/>Payment<wbr/>Accounts<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetPaymentMethodsReply.html">Get<wbr/>Payment<wbr/>Methods<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetPaymentMethodsRequest.html">Get<wbr/>Payment<wbr/>Methods<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetTradeReply.html">Get<wbr/>Trade<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetTradeRequest.html">Get<wbr/>Trade<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetTradeStatisticsReply.html">Get<wbr/>Trade<wbr/>Statistics<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetTradeStatisticsRequest.html">Get<wbr/>Trade<wbr/>Statistics<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetTradesReply.html">Get<wbr/>Trades<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetTradesRequest.html">Get<wbr/>Trades<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetVersionReply.html">Get<wbr/>Version<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetVersionRequest.html">Get<wbr/>Version<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetXmrNewSubaddressReply.html">Get<wbr/>Xmr<wbr/>New<wbr/>Subaddress<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetXmrNewSubaddressRequest.html">Get<wbr/>Xmr<wbr/>New<wbr/>Subaddress<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetXmrNodeSettingsReply.html">Get<wbr/>Xmr<wbr/>Node<wbr/>Settings<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetXmrNodeSettingsRequest.html">Get<wbr/>Xmr<wbr/>Node<wbr/>Settings<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetXmrPrimaryAddressReply.html">Get<wbr/>Xmr<wbr/>Primary<wbr/>Address<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetXmrPrimaryAddressRequest.html">Get<wbr/>Xmr<wbr/>Primary<wbr/>Address<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetXmrSeedReply.html">Get<wbr/>Xmr<wbr/>Seed<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetXmrSeedRequest.html">Get<wbr/>Xmr<wbr/>Seed<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetXmrTxsReply.html">Get<wbr/>Xmr<wbr/>Txs<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.GetXmrTxsRequest.html">Get<wbr/>Xmr<wbr/>Txs<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.IsAccountOpenReply.html">Is<wbr/>Account<wbr/>Open<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.IsAccountOpenRequest.html">Is<wbr/>Account<wbr/>Open<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.IsAppInitializedReply.html">Is<wbr/>App<wbr/>Initialized<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.IsAppInitializedRequest.html">Is<wbr/>App<wbr/>Initialized<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.IsXmrNodeOnlineReply.html">Is<wbr/>Xmr<wbr/>Node<wbr/>Online<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.IsXmrNodeOnlineRequest.html">Is<wbr/>Xmr<wbr/>Node<wbr/>Online<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.LockWalletReply.html">Lock<wbr/>Wallet<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.LockWalletRequest.html">Lock<wbr/>Wallet<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.MarketDepthInfo.html">Market<wbr/>Depth<wbr/>Info</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.MarketDepthReply.html">Market<wbr/>Depth<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.MarketDepthRequest.html">Market<wbr/>Depth<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.MarketPriceInfo.html">Market<wbr/>Price<wbr/>Info</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.MarketPriceReply.html">Market<wbr/>Price<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.MarketPriceRequest.html">Market<wbr/>Price<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.MarketPricesReply.html">Market<wbr/>Prices<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.MarketPricesRequest.html">Market<wbr/>Prices<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.NotificationMessage.html">Notification<wbr/>Message</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.OfferInfo.html">Offer<wbr/>Info</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.OpenAccountReply.html">Open<wbr/>Account<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.OpenAccountRequest.html">Open<wbr/>Account<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.OpenDisputeReply.html">Open<wbr/>Dispute<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.OpenDisputeRequest.html">Open<wbr/>Dispute<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.PostOfferReply.html">Post<wbr/>Offer<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.PostOfferRequest.html">Post<wbr/>Offer<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.RegisterDisputeAgentReply.html">Register<wbr/>Dispute<wbr/>Agent<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.RegisterDisputeAgentRequest.html">Register<wbr/>Dispute<wbr/>Agent<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.RegisterNotificationListenerRequest.html">Register<wbr/>Notification<wbr/>Listener<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.RelayXmrTxReply.html">Relay<wbr/>Xmr<wbr/>Tx<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.RelayXmrTxRequest.html">Relay<wbr/>Xmr<wbr/>Tx<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.RemoveConnectionReply.html">Remove<wbr/>Connection<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.RemoveConnectionRequest.html">Remove<wbr/>Connection<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.RemoveWalletPasswordReply.html">Remove<wbr/>Wallet<wbr/>Password<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.RemoveWalletPasswordRequest.html">Remove<wbr/>Wallet<wbr/>Password<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.ResolveDisputeReply.html">Resolve<wbr/>Dispute<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.ResolveDisputeRequest.html">Resolve<wbr/>Dispute<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.RestoreAccountReply.html">Restore<wbr/>Account<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.RestoreAccountRequest.html">Restore<wbr/>Account<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.SendBtcRequest.html">Send<wbr/>Btc<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.SendChatMessageReply.html">Send<wbr/>Chat<wbr/>Message<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.SendChatMessageRequest.html">Send<wbr/>Chat<wbr/>Message<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.SendDisputeChatMessageReply.html">Send<wbr/>Dispute<wbr/>Chat<wbr/>Message<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.SendDisputeChatMessageRequest.html">Send<wbr/>Dispute<wbr/>Chat<wbr/>Message<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.SendNotificationReply.html">Send<wbr/>Notification<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.SendNotificationRequest.html">Send<wbr/>Notification<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.SetAutoSwitchReply.html">Set<wbr/>Auto<wbr/>Switch<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.SetAutoSwitchRequest.html">Set<wbr/>Auto<wbr/>Switch<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.SetConnectionReply.html">Set<wbr/>Connection<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.SetConnectionRequest.html">Set<wbr/>Connection<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.SetWalletPasswordReply.html">Set<wbr/>Wallet<wbr/>Password<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.SetWalletPasswordRequest.html">Set<wbr/>Wallet<wbr/>Password<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.StartCheckingConnectionReply.html">Start<wbr/>Checking<wbr/>Connection<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.StartCheckingConnectionRequest.html">Start<wbr/>Checking<wbr/>Connection<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.StartXmrNodeReply.html">Start<wbr/>Xmr<wbr/>Node<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.StartXmrNodeRequest.html">Start<wbr/>Xmr<wbr/>Node<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.StopCheckingConnectionReply.html">Stop<wbr/>Checking<wbr/>Connection<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.StopCheckingConnectionRequest.html">Stop<wbr/>Checking<wbr/>Connection<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.StopReply.html">Stop<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.StopRequest.html">Stop<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.StopXmrNodeReply.html">Stop<wbr/>Xmr<wbr/>Node<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.StopXmrNodeRequest.html">Stop<wbr/>Xmr<wbr/>Node<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.TakeOfferReply.html">Take<wbr/>Offer<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.TakeOfferRequest.html">Take<wbr/>Offer<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.TradeInfo.html">Trade<wbr/>Info</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.UnlockWalletReply.html">Unlock<wbr/>Wallet<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.UnlockWalletRequest.html">Unlock<wbr/>Wallet<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.UnregisterDisputeAgentReply.html">Unregister<wbr/>Dispute<wbr/>Agent<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.UnregisterDisputeAgentRequest.html">Unregister<wbr/>Dispute<wbr/>Agent<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.UrlConnection.html">Url<wbr/>Connection</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.ValidateFormFieldReply.html">Validate<wbr/>Form<wbr/>Field<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.ValidateFormFieldRequest.html">Validate<wbr/>Form<wbr/>Field<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.WithdrawFundsReply.html">Withdraw<wbr/>Funds<wbr/>Reply</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.WithdrawFundsRequest.html">Withdraw<wbr/>Funds<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.XmrBalanceInfo.html">Xmr<wbr/>Balance<wbr/>Info</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.XmrDestination.html">Xmr<wbr/>Destination</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.XmrIncomingTransfer.html">Xmr<wbr/>Incoming<wbr/>Transfer</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.XmrOutgoingTransfer.html">Xmr<wbr/>Outgoing<wbr/>Transfer</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_grpc_pb.XmrTx.html">Xmr<wbr/>Tx</a></li></ul></li>
<li class="tsd-kind-module"><a href="modules/protobuf_grpc_pb-1.html">protobuf/grpc_<wbr/>pb</a></li>
<li class="tsd-kind-module"><a href="modules/protobuf_pb_pb.html">protobuf/pb_<wbr/>pb</a>
<ul>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.AccountAgeWitness.html">Account<wbr/>Age<wbr/>Witness</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.AccountAgeWitnessStore.html">Account<wbr/>Age<wbr/>Witness<wbr/>Store</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.AchTransferAccountPayload.html">Ach<wbr/>Transfer<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.AckMessage.html">Ack<wbr/>Message</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.AddDataMessage.html">Add<wbr/>Data<wbr/>Message</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.AddPersistableNetworkPayloadMessage.html">Add<wbr/>Persistable<wbr/>Network<wbr/>Payload<wbr/>Message</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.AddressEntry.html">Address<wbr/>Entry</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.AddressEntryList.html">Address<wbr/>Entry<wbr/>List</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.AdvancedCashAccountPayload.html">Advanced<wbr/>Cash<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.Alert.html">Alert</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.AliPayAccountPayload.html">Ali<wbr/>Pay<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.AmazonGiftCardAccountPayload.html">Amazon<wbr/>Gift<wbr/>Card<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.ArbitrationDisputeList.html">Arbitration<wbr/>Dispute<wbr/>List</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.Arbitrator.html">Arbitrator</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.ArbitratorTrade.html">Arbitrator<wbr/>Trade</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.Attachment.html">Attachment</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.AustraliaPayidPayload.html">Australia<wbr/>Payid<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.AutoConfirmSettings.html">Auto<wbr/>Confirm<wbr/>Settings</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.BankAccountPayload.html">Bank<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.BizumAccountPayload.html">Bizum<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.BlockChainExplorer.html">Block<wbr/>Chain<wbr/>Explorer</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.BundleOfEnvelopes.html">Bundle<wbr/>Of<wbr/>Envelopes</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.BuyerAsMakerTrade.html">Buyer<wbr/>As<wbr/>Maker<wbr/>Trade</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.BuyerAsTakerTrade.html">Buyer<wbr/>As<wbr/>Taker<wbr/>Trade</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.ByteArray.html">Byte<wbr/>Array</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.CapitualAccountPayload.html">Capitual<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.CashAppAccountPayload.html">Cash<wbr/>App<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.CashAtAtmAccountPayload.html">Cash<wbr/>At<wbr/>Atm<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.CashDepositAccountPayload.html">Cash<wbr/>Deposit<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.CelPayAccountPayload.html">Cel<wbr/>Pay<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.ChaseQuickPayAccountPayload.html">Chase<wbr/>Quick<wbr/>Pay<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.ChatMessage.html">Chat<wbr/>Message</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.CloseConnectionMessage.html">Close<wbr/>Connection<wbr/>Message</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.Contract.html">Contract</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.Country.html">Country</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.CountryBasedPaymentAccountPayload.html">Country<wbr/>Based<wbr/>Payment<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.CryptoCurrency.html">Crypto<wbr/>Currency</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.CryptoCurrencyAccountPayload.html">Crypto<wbr/>Currency<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.Currency.html">Currency</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.DataAndSeqNrPair.html">Data<wbr/>And<wbr/>Seq<wbr/>Nr<wbr/>Pair</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.DecryptedMessageWithPubKey.html">Decrypted<wbr/>Message<wbr/>With<wbr/>Pub<wbr/>Key</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.DepositRequest.html">Deposit<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.DepositResponse.html">Deposit<wbr/>Response</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.DepositsConfirmedMessage.html">Deposits<wbr/>Confirmed<wbr/>Message</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.Dispute.html">Dispute</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.DisputeClosedMessage.html">Dispute<wbr/>Closed<wbr/>Message</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.DisputeOpenedMessage.html">Dispute<wbr/>Opened<wbr/>Message</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.DisputeResult.html">Dispute<wbr/>Result</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.DomesticWireTransferAccountPayload.html">Domestic<wbr/>Wire<wbr/>Transfer<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.EncryptedConnection.html">Encrypted<wbr/>Connection</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.EncryptedConnectionList.html">Encrypted<wbr/>Connection<wbr/>List</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.F2FAccountPayload.html">F2FAccount<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.FasterPaymentsAccountPayload.html">Faster<wbr/>Payments<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.FileTransferPart.html">File<wbr/>Transfer<wbr/>Part</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.Filter.html">Filter</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.GetDataResponse.html">Get<wbr/>Data<wbr/>Response</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.GetInventoryRequest.html">Get<wbr/>Inventory<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.GetInventoryResponse.html">Get<wbr/>Inventory<wbr/>Response</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.GetPeersRequest.html">Get<wbr/>Peers<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.GetPeersResponse.html">Get<wbr/>Peers<wbr/>Response</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.GetUpdatedDataRequest.html">Get<wbr/>Updated<wbr/>Data<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.HalCashAccountPayload.html">Hal<wbr/>Cash<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.IfscBasedAccountPayload.html">Ifsc<wbr/>Based<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.IgnoredMailboxMap.html">Ignored<wbr/>Mailbox<wbr/>Map</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.ImpsAccountPayload.html">Imps<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.InitMultisigRequest.html">Init<wbr/>Multisig<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.InitTradeRequest.html">Init<wbr/>Trade<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.InstantCryptoCurrencyAccountPayload.html">Instant<wbr/>Crypto<wbr/>Currency<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.InteracETransferAccountPayload.html">InteracETransfer<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.JapanBankAccountPayload.html">Japan<wbr/>Bank<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.MailboxItem.html">Mailbox<wbr/>Item</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.MailboxMessageList.html">Mailbox<wbr/>Message<wbr/>List</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.MailboxStoragePayload.html">Mailbox<wbr/>Storage<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.MapValue.html">Map<wbr/>Value</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.MarketAlertFilter.html">Market<wbr/>Alert<wbr/>Filter</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.MediatedPayoutTxPublishedMessage.html">Mediated<wbr/>Payout<wbr/>Tx<wbr/>Published<wbr/>Message</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.MediatedPayoutTxSignatureMessage.html">Mediated<wbr/>Payout<wbr/>Tx<wbr/>Signature<wbr/>Message</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.MediationDisputeList.html">Mediation<wbr/>Dispute<wbr/>List</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.Mediator.html">Mediator</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.MockMailboxPayload.html">Mock<wbr/>Mailbox<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.MockPayload.html">Mock<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.MoneseAccountPayload.html">Monese<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.MoneyBeamAccountPayload.html">Money<wbr/>Beam<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.MoneyGramAccountPayload.html">Money<wbr/>Gram<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.NationalBankAccountPayload.html">National<wbr/>Bank<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.NavigationPath.html">Navigation<wbr/>Path</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.NeftAccountPayload.html">Neft<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.NequiAccountPayload.html">Nequi<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.NetworkEnvelope.html">Network<wbr/>Envelope</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.NodeAddress.html">Node<wbr/>Address</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.OKPayAccountPayload.html">OKPay<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.Offer.html">Offer</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.OfferAvailabilityRequest.html">Offer<wbr/>Availability<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.OfferAvailabilityResponse.html">Offer<wbr/>Availability<wbr/>Response</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.OfferPayload.html">Offer<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.OpenOffer.html">Open<wbr/>Offer</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PaxumAccountPayload.html">Paxum<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PayByMailAccountPayload.html">Pay<wbr/>By<wbr/>Mail<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PayPalAccountPayload.html">Pay<wbr/>Pal<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PaymentAccount.html">Payment<wbr/>Account</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PaymentAccountFilter.html">Payment<wbr/>Account<wbr/>Filter</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PaymentAccountForm.html">Payment<wbr/>Account<wbr/>Form</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PaymentAccountFormField.html">Payment<wbr/>Account<wbr/>Form<wbr/>Field</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PaymentAccountList.html">Payment<wbr/>Account<wbr/>List</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PaymentAccountPayload.html">Payment<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PaymentMethod.html">Payment<wbr/>Method</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PaymentReceivedMessage.html">Payment<wbr/>Received<wbr/>Message</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PaymentSentMessage.html">Payment<wbr/>Sent<wbr/>Message</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PayseraAccountPayload.html">Paysera<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PaytmAccountPayload.html">Paytm<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.Peer.html">Peer</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PeerList.html">Peer<wbr/>List</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PerfectMoneyAccountPayload.html">Perfect<wbr/>Money<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PersistableEnvelope.html">Persistable<wbr/>Envelope</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PersistableNetworkPayload.html">Persistable<wbr/>Network<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.Ping.html">Ping</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PixAccountPayload.html">Pix<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.Pong.html">Pong</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PopmoneyAccountPayload.html">Popmoney<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PreferencesPayload.html">Preferences<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PrefixedSealedAndSignedMessage.html">Prefixed<wbr/>Sealed<wbr/>And<wbr/>Signed<wbr/>Message</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PreliminaryGetDataRequest.html">Preliminary<wbr/>Get<wbr/>Data<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PriceAlertFilter.html">Price<wbr/>Alert<wbr/>Filter</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PrivateNotificationMessage.html">Private<wbr/>Notification<wbr/>Message</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PrivateNotificationPayload.html">Private<wbr/>Notification<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.ProcessModel.html">Process<wbr/>Model</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PromptPayAccountPayload.html">Prompt<wbr/>Pay<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.ProtectedMailboxStorageEntry.html">Protected<wbr/>Mailbox<wbr/>Storage<wbr/>Entry</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.ProtectedStorageEntry.html">Protected<wbr/>Storage<wbr/>Entry</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.PubKeyRing.html">Pub<wbr/>Key<wbr/>Ring</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.RawTransactionInput.html">Raw<wbr/>Transaction<wbr/>Input</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.RefreshOfferMessage.html">Refresh<wbr/>Offer<wbr/>Message</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.RefundAgent.html">Refund<wbr/>Agent</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.RefundDisputeList.html">Refund<wbr/>Dispute<wbr/>List</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.Region.html">Region</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.RemoveDataMessage.html">Remove<wbr/>Data<wbr/>Message</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.RemoveMailboxDataMessage.html">Remove<wbr/>Mailbox<wbr/>Data<wbr/>Message</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.RemovedPayloadsMap.html">Removed<wbr/>Payloads<wbr/>Map</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.RevolutAccountPayload.html">Revolut<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.RtgsAccountPayload.html">Rtgs<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SameBankAccountPayload.html">Same<wbr/>Bank<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SatispayAccountPayload.html">Satispay<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SealedAndSigned.html">Sealed<wbr/>And<wbr/>Signed</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SellerAsMakerTrade.html">Seller<wbr/>As<wbr/>Maker<wbr/>Trade</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SellerAsTakerTrade.html">Seller<wbr/>As<wbr/>Taker<wbr/>Trade</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SepaAccountPayload.html">Sepa<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SepaInstantAccountPayload.html">Sepa<wbr/>Instant<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SequenceNumberEntry.html">Sequence<wbr/>Number<wbr/>Entry</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SequenceNumberMap.html">Sequence<wbr/>Number<wbr/>Map</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SignContractRequest.html">Sign<wbr/>Contract<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SignContractResponse.html">Sign<wbr/>Contract<wbr/>Response</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SignOfferRequest.html">Sign<wbr/>Offer<wbr/>Request</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SignOfferResponse.html">Sign<wbr/>Offer<wbr/>Response</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SignedOffer.html">Signed<wbr/>Offer</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SignedOfferList.html">Signed<wbr/>Offer<wbr/>List</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SignedWitness.html">Signed<wbr/>Witness</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SignedWitnessStore.html">Signed<wbr/>Witness<wbr/>Store</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SpecificBanksAccountPayload.html">Specific<wbr/>Banks<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.StorageEntryWrapper.html">Storage<wbr/>Entry<wbr/>Wrapper</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.StoragePayload.html">Storage<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.StrikeAccountPayload.html">Strike<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SwiftAccountPayload.html">Swift<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.SwishAccountPayload.html">Swish<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.TikkieAccountPayload.html">Tikkie<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.Tradable.html">Tradable</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.TradableList.html">Tradable<wbr/>List</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.Trade.html">Trade</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.TradeCurrency.html">Trade<wbr/>Currency</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.TradePeer.html">Trade<wbr/>Peer</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.TradeStatistics3.html">Trade<wbr/>Statistics3</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.TradeStatistics3Store.html">Trade<wbr/>Statistics3<wbr/>Store</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.TraditionalCurrency.html">Traditional<wbr/>Currency</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.TransferwiseAccountPayload.html">Transferwise<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.TransferwiseUsdAccountPayload.html">Transferwise<wbr/>Usd<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.USPostalMoneyOrderAccountPayload.html">USPostal<wbr/>Money<wbr/>Order<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.UpholdAccountPayload.html">Uphold<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.UpiAccountPayload.html">Upi<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.UserPayload.html">User<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.VenmoAccountPayload.html">Venmo<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.VerseAccountPayload.html">Verse<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.WeChatPayAccountPayload.html">We<wbr/>Chat<wbr/>Pay<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.WesternUnionAccountPayload.html">Western<wbr/>Union<wbr/>Account<wbr/>Payload</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.XmrAddressEntry.html">Xmr<wbr/>Address<wbr/>Entry</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.XmrAddressEntryList.html">Xmr<wbr/>Address<wbr/>Entry<wbr/>List</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.XmrNodeSettings.html">Xmr<wbr/>Node<wbr/>Settings</a></li>
<li class="tsd-kind-namespace tsd-parent-kind-module"><a href="modules/protobuf_pb_pb.ZelleAccountPayload.html">Zelle<wbr/>Account<wbr/>Payload</a></li></ul></li>
<li class="tsd-kind-module"><a href="modules/protobuf_pb_pb-1.html">protobuf/pb_<wbr/>pb</a></li>
<li class="tsd-kind-module"><a href="modules/types_HavenoError.html">types/<wbr/>Haveno<wbr/>Error</a></li>
<li class="tsd-kind-module"><a href="modules/utils_HavenoUtils.html">utils/<wbr/>Haveno<wbr/>Utils</a></li>
<li class="tsd-kind-module"><a href="modules/utils_TaskLooper.html">utils/<wbr/>Task<wbr/>Looper</a>
<ul>
<li class="tsd-kind-module tsd-parent-kind-module"><a href="modules/utils_TaskLooper._internal_.html">&lt;internal&gt;</a></li></ul></li></ul></li></ul></div></details></nav></div></div>
<div class="container tsd-generator">
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
<div class="overlay"></div><script src="assets/main.js"></script></body></html>