{"info":{"_postman_id":"ea622646-012c-422b-a7fa-e078d510d4e1","name":"API","description":"<html><head></head><body><h2 id=\"public-api-server\"><strong>Public API Server</strong></h2>\n<p>The Accumulate public API uses the OpenRPC specification for JSON-RPC 2.0 to describe its requests and responses. The server allows developers to access the Accumulate network (Mainnet, Testnet, BetaTestnet) without running a node themselves.</p>\n<h2 id=\"accumulate-api-features\">Accumulate API Features</h2>\n<p>API calls are made to a node endpoint, which is a URL. The base URL follows this format:</p>\n<p>* [node-ip] is the IP address for the node you are connecting to.<br>* [http-port] is the port to which the node you are connect is listening for HTTP calls.<br>* All API calls are made to the /v2 endpoint.</p>\n<h3 id=\"public-api-endpoints\">Public API Endpoints</h3>\n<p>The Accumulate testnet JSON-RPC API server allows developers to access the Accumulate Testnet network without running a node. It is free and available to everyone without any authentication or authorization.</p>\n<p><strong>Endpoints</strong></p>\n<p>* Stable Testnet Endpoint: <a href=\"https://testnet.accumulatenetwork.io/v2Beta\">https://testnet.accumulatenetwork.io/v2</a><br>* Mainnet Endpoint: <a href=\"https://mainnet.accumulatenetwork.io/v2\">https://mainnet.accumulatenetwork.io/v2</a></p>\n<h2 id=\"request-parameters\"><strong>Request Parameters:</strong></h2>\n<p>* <strong>Type:</strong><br>* This is the type of transaction body, eg, <code>sendTokens</code>, <code>createAdi</code>, etc.<br>* <strong>publicKey:</strong><br>* This is the public key used to verify the signed transaction<br>* <strong>Signature:</strong><br>* This is the cryptographic signature<br>* <strong>Signer:</strong><br>* This is the URL of the signing ADI or lite account<br>* <strong>signerVersion:</strong><br>* This is the version number of the signing structure<br>* <strong>timestamp:</strong><br>* This is the timestamp of the transaction used for signing the transaction<br>* <strong>transactionHash:</strong><br>* The transaction hash is the hash of the payload used for signing the transaction<br>* <strong>Principal:</strong><br>* URL of the adi or lite account paying for the transaction<br>* <strong>Origin:</strong><br>* Deprecated; use principal<br>* <strong>Initiator:</strong><br>* Account hash of the originator of the transaction<br>* <strong>keyHash:</strong><br>* Hash of the public key<br>* <strong>Nonce:</strong><br>* Deprecated; use timestamp<br>* <strong>publicKeyHash:</strong><br>* Hash of the public key used for account verification.</p>\n<p><strong>How to generate the above parameters</strong></p>\n<blockquote>\n<p>To learn more about Accumulate CLI, click this <a href=\"https://docs.accumulatenetwork.io/accumulate/cli/cli-reference#tx\">link</a></p>\n</blockquote>\n<p>You will need the request parameters above when sending a request via each Accumulate endpoint.</p>\n<p><strong>Generate a Lite account</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">./accumulate account generate -d\n\n</code></pre>\n<p>You can get your <code>key type</code> and <code>public key</code> by generating a lite account from the CLI.</p>\n<p><strong>Get Faucet</strong></p>\n<p>You can get your <code>transactionhash</code>, <code>simplehash</code>, <code>txid</code> from the <code>faucet</code> API Endpoint.</p>\n<p><strong>Get Transaction</strong></p>\n<p>You can get your <code>iniator</code>, <code>timestamp</code>, <code>signature</code>, <code>signatureversion</code>, <code>signer</code> ,<code>nonce</code>, <code>principal</code> , <code>origin</code>, from generating a transaction txid using the <code>get transaction</code> Endpoint</p>\n<h2 id=\"errors\">Errors</h2>\n<p>Accumulate uses conventional HTTP response codes to indicate the success or failure of an API request. In general: Codes in the <code>2xx</code> range indicate success. Codes in the <code>4xx</code> range indicate an error that failed given the information provided (e.g., a required parameter was omitted, a bad request, etc.). Codes in the <code>5xx</code> range indicate an error with Accumulate's servers.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200 -OK</td>\n<td>Everything worked as expected.</td>\n</tr>\n<tr>\n<td>400 - Bad Request</td>\n<td>The request was unacceptable, often due to missing a required parameter.</td>\n</tr>\n<tr>\n<td>404 - Not Found</td>\n<td>The requested resource doesn't exist.</td>\n</tr>\n<tr>\n<td>500, 502, 503, 504 - Server Errors</td>\n<td>Something went wrong on Accumulate's end</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"1835497","collectionId":"ea622646-012c-422b-a7fa-e078d510d4e1","publishedId":"UzBnrSFB","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-06-21T13:19:57.000Z"},"item":[{"name":"Authority","item":[{"name":"Add Authority","id":"2c7f039c-f8fc-4716-866c-5caa62df79a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"\",\n                    \"signature\": \"\",\n                    \"signer\": \"\",\n                    \"signerVersion\": ,\n                    \"timestamp\": ,\n                    \"transactionHash\": \"\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"\",\n                        \"origin\": \"\",\n                        \"initiator\": \"\"\n                    },\n                    \"body\": {\n                        \"type\": \"updateAccountAuth\",\n                        \"operations\": [\n                            {\n                                \"type\": \"addAuthority\",\n                                \"authority\": \"\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 1309\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n<tr>\n<td>publicKey</td>\n<td>String</td>\n<td>This is the public key used to verify the signed transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>Signature of the ADI signing the transaction</td>\n</tr>\n<tr>\n<td>signer</td>\n<td>String</td>\n<td>ADI signing this request</td>\n</tr>\n<tr>\n<td>signerVersion</td>\n<td>Int</td>\n<td>This is the version number of the signing structure</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>Int</td>\n<td>This is the timestamp of the transaction used for signing the transaction</td>\n</tr>\n<tr>\n<td>transactionHash</td>\n<td>String</td>\n<td>Transaction Hash</td>\n</tr>\n<tr>\n<td>principal</td>\n<td>String</td>\n<td>URL of the adi or lite account paying for the transaction</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>String</td>\n<td>The origin account</td>\n</tr>\n<tr>\n<td>initiator</td>\n<td>String</td>\n<td>Account hash of the originator of the transaction</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>This is the type of transaction body, eg, addAuthority, updateAccountAuth.</td>\n</tr>\n<tr>\n<td>authority</td>\n<td>String</td>\n<td>Keybook url containing an authority</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"096fcc1e255fb5e20124c4fa50b6ecbe827ac276fa415d87a382477478bb3dff\",\n                    \"signature\": \"b4802fb1036c524fe7a43965422f06a85b72e20d1e5bf96223b6449c9626e6db6702a73f1a29b8a167aedce14ee4cb44472a362cb4abe66438cf4f00d4144b02\",\n                    \"signer\": \"acc://wize.acme/book/1\",\n                    \"signerVersion\": 1,\n                    \"timestamp\": 1666354693031,\n                    \"transactionHash\": \"502f67f363d8e8a71a47a5ebff3ad9544f5a4f3861d629aa35620a9cb644a612\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"acc://wize.acme/tok\",\n                        \"initiator\": \"fa4692534e73cc9167e7c647afe188f3962263955b94ba86da56e5f4736538af\"\n                    },\n                    \"body\": {\n                        \"type\": \"updateAccountAuth\",\n                        \"operations\": [\n                            {\n                                \"type\": \"addAuthority\",\n                                \"authority\": \"acc://wize.acme/bk\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 1113\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"transactionHash\": \"502f67f363d8e8a71a47a5ebff3ad9544f5a4f3861d629aa35620a9cb644a612\",\n        \"txid\": \"acc: //502f67f363d8e8a71a47a5ebff3ad9544f5a4f3861d629aa35620a9cb644a612@wize.acme/tok\",\n        \"signatureHashes\": [\n            \"587df3508f63a9fa28515dfd91885f16f1838d5c0e90534a173a822441da0e49\"\n        ],\n        \"simpleHash\": \"8450bbe2710314fa554807f8efdb05813d1e8ebb36d9f43cff18beafac8c0dff\",\n        \"hash\": \"8450bbe2710314fa554807f8efdb05813d1e8ebb36d9f43cff18beafac8c0dff\",\n        \"result\": {\n            \"txID\": \"acc://502f67f363d8e8a71a47a5ebff3ad9544f5a4f3861d629aa35620a9cb644a612@wize.acme/tok\",\n            \"result\": null,\n            \"signers\": null\n        }\n    },\n    \"id\": 1113\n}\n\n</code></pre>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"040125ff-57ba-464d-a2ae-439a3c98e63e","id":"040125ff-57ba-464d-a2ae-439a3c98e63e","name":"Authority","type":"folder"}},"urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"2c7f039c-f8fc-4716-866c-5caa62df79a3"},{"name":"Disable Authority","id":"5adf05d8-ec03-49be-ac0e-8528b8a910c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"\",\n                    \"signature\": \"\",\n                    \"signer\": \"\",\n                    \"signerVersion\": ,\n                    \"timestamp\": ,\n                    \"transactionHash\": \"\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"\",\n                        \"origin\": \"\",\n                        \"initiator\": \"\"\n                    },\n                    \"body\": {\n                        \"type\": \"updateAccountAuth\",\n                        \"operations\": [\n                            {\n                                \"type\": \"disable\",\n                                \"authority\": \"\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 82\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n<tr>\n<td>publicKey</td>\n<td>String</td>\n<td>This is the public key used to verify the signed transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>Signature of the ADI signing the transaction</td>\n</tr>\n<tr>\n<td>signer</td>\n<td>String</td>\n<td>ADI signing this request</td>\n</tr>\n<tr>\n<td>signerVersion</td>\n<td>Int</td>\n<td>This is the version number of the signing structure</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>Int</td>\n<td>This is the timestamp of the transaction used for signing the transaction</td>\n</tr>\n<tr>\n<td>transactionHash</td>\n<td>String</td>\n<td>Transaction Hash</td>\n</tr>\n<tr>\n<td>principal</td>\n<td>String</td>\n<td>URL of the adi or lite account paying for the transaction</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>String</td>\n<td>The origin account</td>\n</tr>\n<tr>\n<td>initiator</td>\n<td>String</td>\n<td>Account hash of the originator of the transaction</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>This is the type of transaction body, eg, removeAuthority, updateAccountAuth.</td>\n</tr>\n<tr>\n<td>authority</td>\n<td>String</td>\n<td>Keybook url containing an authority</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"096fcc1e255fb5e20124c4fa50b6ecbe827ac276fa415d87a382477478bb3dff\",\n                    \"signature\": \"14ec0db115bf4397940f8087d53541c7eebd5a4fb6f48b990f800373f882b521e633560c60886aeff8bba43a9ad516f9bcbe934e86bb3c7c070a0f5d65268802\",\n                    \"signer\": \"acc://wize.acme/book/1\",\n                    \"signerVersion\": 1,\n                    \"timestamp\": 1666356773949,\n                    \"transactionHash\": \"88bdd4530070f0133648acb7eaac702b8fdd9bfbb005d0e8a8048576fc88a7c5\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"acc://wize.acme/tok\",\n                        \"initiator\": \"79f88eef1b51dd5c974b1891377f351e6321feca0fa5a7ed6148ac73e9abedc1\"\n                    },\n                    \"body\": {\n                        \"type\": \"updateAccountAuth\",\n                        \"operations\": [\n                            {\n                                \"type\": \"disable\",\n                                \"authority\": \"acc://wize.acme/book\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 1793\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"transactionHash\": \"88bdd4530070f0133648acb7eaac702b8fdd9bfbb005d0e8a8048576fc88a7c5\",\n        \"txid\": \"acc://88bdd4530070f0133648acb7eaac702b8fdd9bfbb005d0e8a8048576fc88a7c5@wize.acme/tok\",\n        \"signatureHashes\": [\n            \"51e9fa362cf4c016f8efc91a3ff4418776a53df10527da9b4ad70b9df92ccc6e\"\n        ],\n        \"simpleHash\": \"3f24ae3408ccde1b5972dec98cd519b613b8283a65e4f4647f8a80a1bec54c64\",\n        \"hash\": \"3f24ae3408ccde1b5972dec98cd519b613b8283a65e4f4647f8a80a1bec54c64\",\n        \"result\": {\n            \"txID\": \"acc://88bdd4530070f0133648acb7eaac702b8fdd9bfbb005d0e8a8048576fc88a7c5@wize.acme/tok\",\n            \"result\": null,\n            \"signers\": null\n        }\n    },\n    \"id\": 1793\n}\n\n</code></pre>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"040125ff-57ba-464d-a2ae-439a3c98e63e","id":"040125ff-57ba-464d-a2ae-439a3c98e63e","name":"Authority","type":"folder"}},"urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"5adf05d8-ec03-49be-ac0e-8528b8a910c5"},{"name":"Remove Authority","id":"523504cf-e6ac-4db1-a3f6-a9defbbd131b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"\",\n                    \"signature\": \"\",\n                    \"signer\": \"\",\n                    \"signerVersion\": ,\n                    \"timestamp\": ,\n                    \"transactionHash\": \"\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"\",\n                        \"origin\": \"\",\n                        \"initiator\": \"\"\n                    },\n                    \"body\": {\n                        \"type\": \"updateAccountAuth\",\n                        \"operations\": [\n                            {\n                                \"type\": \"removeAuthority\",\n                                \"authority\": \"\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 2600\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n<tr>\n<td>publicKey</td>\n<td>String</td>\n<td>This is the public key used to verify the signed transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>Signature of the ADI signing the transaction</td>\n</tr>\n<tr>\n<td>signer</td>\n<td>String</td>\n<td>ADI signing this request</td>\n</tr>\n<tr>\n<td>signerVersion</td>\n<td>Int</td>\n<td>This is the version number of the signing structure</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>Int</td>\n<td>This is the timestamp of the transaction used for signing the transaction</td>\n</tr>\n<tr>\n<td>transactionHash</td>\n<td>String</td>\n<td>Transaction Hash</td>\n</tr>\n<tr>\n<td>principal</td>\n<td>String</td>\n<td>URL of the adi or lite account paying for the transaction</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>String</td>\n<td>The origin account</td>\n</tr>\n<tr>\n<td>initiator</td>\n<td>String</td>\n<td>Account hash of the originator of the transaction</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>This is the type of transaction body, eg, removeAuthority, updateAccountAuth.</td>\n</tr>\n<tr>\n<td>authority</td>\n<td>String</td>\n<td>Keybook url containing an authority</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"44c76327b193ac2a955b7000acc3aa163540e66de95feba9de3ce436ebc4cc05\",\n                    \"signature\": \"0beeead150f0493e682f8f6250b8b35fe0a0329a5cf444c964a5f33828b3de3ce3f7bee816ad9bdfaed7f2dced76a800fd97e9c2a07f043596637d2ef93e6600\",\n                    \"signer\": \"acc://wize.acme/book/1\",\n                    \"signerVersion\": 2,\n                    \"timestamp\": 1657204277972772,\n                    \"transactionHash\": \"9648b81c62ae041127f57a57a4fe1d86e50760fe9692782e2117dc92bf53ff68\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"acc://wize.acme/data\",\n                        \"origin\": \"acc://wize.acme/data\",\n                        \"initiator\": \"3d9733189ea5577c1e2ecf0d1a7390b64bc52d9d33bd0e059e0a030a05c5d031\"\n                    },\n                    \"body\": {\n                        \"type\": \"updateAccountAuth\",\n                        \"operations\": [\n                            {\n                                \"type\": \"removeAuthority\",\n                                \"authority\": \"acc://wize.acme/book\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 2600\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"transactionHash\": \"0479e5dac94d9c3a89b905b073b15de21b76f91b347db34c652d381edc08bcf9\",\n        \"txid\": \"acc://0479e5dac94d9c3a89b905b073b15de21b76f91b347db34c652d381edc08bcf9@wised.acme\",\n        \"signatureHashes\": [\n            \"f794adc217db52cc50225cef133e22092c04dcc19c285e299aa56742d13b6c0f\"\n        ],\n        \"simpleHash\": \"3a9159792fd9cfd934a17cab756cd2a8e725ac1218c1d73609febc4087695ad4\",\n        \"hash\": \"3a9159792fd9cfd934a17cab756cd2a8e725ac1218c1d73609febc4087695ad4\",\n        \"result\": {\n            \"txID\": \"acc://0479e5dac94d9c3a89b905b073b15de21b76f91b347db34c652d381edc08bcf9@wised.acme\",\n            \"result\": null,\n            \"signers\": null\n        }\n    },\n    \"id\": 1273\n}\n\n</code></pre>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"040125ff-57ba-464d-a2ae-439a3c98e63e","id":"040125ff-57ba-464d-a2ae-439a3c98e63e","name":"Authority","type":"folder"}},"urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"523504cf-e6ac-4db1-a3f6-a9defbbd131b"},{"name":"Enable Authority","id":"24af4e14-7f2a-47ce-bcdb-76d0116f93ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"\",\n                    \"signature\": \"\",\n                    \"signer\": \"\",\n                    \"signerVersion\": ,\n                    \"timestamp\": ,\n                    \"transactionHash\": \"\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"\",\n                        \"origin\": \"\",\n                        \"initiator\": \"\"\n                    },\n                    \"body\": {\n                        \"type\": \"updateAccountAuth\",\n                        \"operations\": [\n                            {\n                                \"type\": \"enable\",\n                                \"authority\": \"\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 3610\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n<tr>\n<td>publicKey</td>\n<td>String</td>\n<td>This is the public key used to verify the signed transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>Signature of the ADI signing the transaction</td>\n</tr>\n<tr>\n<td>signer</td>\n<td>String</td>\n<td>ADI signing this request</td>\n</tr>\n<tr>\n<td>signerVersion</td>\n<td>Int</td>\n<td>This is the version number of the signing structure</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>Int</td>\n<td>This is the timestamp of the transaction used for signing the transaction</td>\n</tr>\n<tr>\n<td>transactionHash</td>\n<td>String</td>\n<td>Transaction Hash</td>\n</tr>\n<tr>\n<td>principal</td>\n<td>String</td>\n<td>URL of the adi or lite account paying for the transaction</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>String</td>\n<td>The origin account</td>\n</tr>\n<tr>\n<td>initiator</td>\n<td>String</td>\n<td>Account hash of the originator of the transaction</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>This is the type of transaction body, eg, updateAccountAuth, sendToken.</td>\n</tr>\n<tr>\n<td>authority</td>\n<td>String</td>\n<td>Keybook url containing an authority</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"096fcc1e255fb5e20124c4fa50b6ecbe827ac276fa415d87a382477478bb3dff\",\n                    \"signature\": \"d2ad6129bf5f372687a0c76c897576a223470ce049ae5847c0456029ce5370e5d993d366c2519e80ee1b60415564e6a1d9bb0ba23ccd9a7e0d60460f72f3a401\",\n                    \"signer\": \"acc://wize.acme/book/1\",\n                    \"signerVersion\": 1,\n                    \"timestamp\": 1666356589267,\n                    \"transactionHash\": \"21786420a243ae54776502866989fba5baccceb1b57812f13b92a002b6d12ad0\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"acc://wize.acme/tok\",\n                        \"initiator\": \"2fe306c498dc8759efd151f30ce78f5d7f4357e8414d7ea69b41d7d274a91070\"\n                    },\n                    \"body\": {\n                        \"type\": \"updateAccountAuth\",\n                        \"operations\": [\n                            {\n                                \"type\": \"enable\",\n                                \"authority\": \"acc://wize.acme/book\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 2039\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"transactionHash\": \"21786420a243ae54776502866989fba5baccceb1b57812f13b92a002b6d12ad0\",\n        \"txid\": \"acc://21786420a243ae54776502866989fba5baccceb1b57812f13b92a002b6d12ad0@wize.acme/tok\",\n        \"signatureHashes\": [\n            \"a2e5867e920d819b906b81ea7f45ebcd347fc4901ea263e74a0ca95827d3858f\"\n        ],\n        \"simpleHash\": \"0ba5f9df4dcb504aca4f4a77135edca0a5e31aadf390eec90c79513a089f8262\",\n        \"hash\": \"0ba5f9df4dcb504aca4f4a77135edca0a5e31aadf390eec90c79513a089f8262\",\n        \"result\": {\n            \"txID\": \"acc://21786420a243ae54776502866989fba5baccceb1b57812f13b92a002b6d12ad0@wize.acme/tok\",\n            \"result\": null,\n            \"signers\": null\n        }\n    },\n    \"id\": 2039\n}\n\n</code></pre>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"040125ff-57ba-464d-a2ae-439a3c98e63e","id":"040125ff-57ba-464d-a2ae-439a3c98e63e","name":"Authority","type":"folder"}},"urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"24af4e14-7f2a-47ce-bcdb-76d0116f93ce"}],"id":"040125ff-57ba-464d-a2ae-439a3c98e63e","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"a5d3883d-955d-4825-bb6c-fad5a79b5e1e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5f3628a5-ab23-4f45-880e-34ecd333966e","type":"text/javascript","exec":[""]}}],"_postman_id":"040125ff-57ba-464d-a2ae-439a3c98e63e","description":""},{"name":"Keybook","item":[{"name":"Create Key Book","id":"28e9ca1c-5819-4deb-b094-f84e0015a83c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"legacyED25519\",\n                    \"timestamp\": ,\n                    \"nonce\": ,\n                    \"publicKey\": \"\",\n                    \"signature\": \"\",\n                    \"signer\": \"\",\n                    \"signerVersion\": ,\n                    \"transactionHash\": \"\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"\",\n                        \"origin\": \"\",\n                        \"initiator\": \"\"\n                    },\n                    \"body\": {\n                        \"type\": \"createKeyBook\",\n                        \"url\": \"\",\n                        \"publicKeyHash\": \"\"\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 846\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n<tr>\n<td>publicKey</td>\n<td>String</td>\n<td>This is the public key used to verify the signed transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>Signature of the ADI signing the transaction</td>\n</tr>\n<tr>\n<td>signer</td>\n<td>String</td>\n<td>ADI signing this request</td>\n</tr>\n<tr>\n<td>signerVersion</td>\n<td>Int</td>\n<td>This is the version number of the signing structure</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>Int</td>\n<td>This is the timestamp of the transaction used for signing the transaction</td>\n</tr>\n<tr>\n<td>transactionHash</td>\n<td>String</td>\n<td>Transaction Hash</td>\n</tr>\n<tr>\n<td>principal</td>\n<td>String</td>\n<td>URL of the adi or lite account paying for the transaction</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>String</td>\n<td>The origin account</td>\n</tr>\n<tr>\n<td>initiator</td>\n<td>String</td>\n<td>Account hash of the originator of the transaction</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>String</td>\n<td>Credit amount</td>\n</tr>\n<tr>\n<td>oracle</td>\n<td>Int</td>\n<td>is the price of ACME as in $/ACME. This should mirror the market value.</td>\n</tr>\n<tr>\n<td>puclickeyhash</td>\n<td>String</td>\n<td>Hash of the public key used for account verification</td>\n</tr>\n<tr>\n<td>nouce</td>\n<td>Int</td>\n<td>Uses timestamp</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"legacyED25519\",\n                    \"timestamp\": 1654780824144379,\n                    \"nonce\": 1654780824144379,\n                    \"publicKey\": \"b2062627dd16142aa4f2e01a251650c9289f3a9c9f0efc762a614cc5750a3024\",\n                    \"signature\": \"09085f9f60cde2c761e6fbb114daec8ffd64e8c94f2237902fbf3b8ed4a3edeb5f95fc2ffe477832720c68c2d1bb66339ed96d49afae07ac1dff28595926e10f\",\n                    \"signer\": \"acc://Tesla.acme/wize/1\",\n                    \"signerVersion\": 1,\n                    \"transactionHash\": \"6543c768935a05f5412057c5dd34387f53b62ccf4d9e626564c427d6f0929db0\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"acc://Tesla.acme\",\n                        \"origin\": \"acc://Tesla.acme\",\n                        \"initiator\": \"c1abdc8e3012967b4d349e6db911e8b0a91153f3230ef5523c6a500442cdbdc4\"\n                    },\n                    \"body\": {\n                        \"type\": \"createKeyBook\",\n                        \"url\": \"acc://Tesla.acme/keybt\",\n                        \"publicKeyHash\": \"109abdc4ad32361e4b256560cb2de806d6f18459877bcc036388b12560841be7\"\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 846\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"d81d0984-488c-4f82-b7e4-630965497fa8","id":"d81d0984-488c-4f82-b7e4-630965497fa8","name":"Keybook","type":"folder"}},"urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"28e9ca1c-5819-4deb-b094-f84e0015a83c"},{"name":"Get Keybook","id":"23f859c8-96d1-42e0-bb0c-37cf281cfc07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"query\",\n    \"params\": {\n        \"url\": \"\"\n    },\n    \"id\": 3821\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>ADI url</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"query\",\n    \"params\": {\n        \"url\": \"acc://Teslazz.acme/wizet\"\n    },\n    \"id\": 3821\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"type\": \"keyBook\",\n        \"mainChain\": {\n            \"height\": 1,\n            \"count\": 1,\n            \"roots\": [\n                \"ffa8ef62764ef7ada8d99b9959b0533c06806164f21db9a04d5623abfcb089b7\"\n            ]\n        },\n        \"merkleState\": {\n            \"height\": 1,\n            \"count\": 1,\n            \"roots\": [\n                \"ffa8ef62764ef7ada8d99b9959b0533c06806164f21db9a04d5623abfcb089b7\"\n            ]\n        },\n        \"chains\": [\n            {\n                \"name\": \"main\",\n                \"type\": \"transaction\",\n                \"height\": 1,\n                \"count\": 1,\n                \"roots\": [\n                    \"ffa8ef62764ef7ada8d99b9959b0533c06806164f21db9a04d5623abfcb089b7\"\n                ]\n            },\n            {\n                \"name\": \"main-index\",\n                \"type\": \"index\",\n                \"height\": 1,\n                \"count\": 1,\n                \"roots\": [\n                    \"02dca20303bd930c200000000000000000000000000000000000000000000000\"\n                ]\n            }\n        ],\n        \"data\": {\n            \"type\": \"keyBook\",\n            \"url\": \"acc://defidevs.acme/book\",\n            \"authorities\": [\n                {\n                    \"url\": \"acc://defidevs.acme/book\"\n                }\n            ],\n            \"pageCount\": 1\n        },\n        \"chainId\": \"d03906a23ec5b4b9a39c40a2df3067b391c49603c3cd7ba2bd3cf3ad365f7a9a\"\n    },\n    \"id\": 3821\n}\n\n</code></pre>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"d81d0984-488c-4f82-b7e4-630965497fa8","id":"d81d0984-488c-4f82-b7e4-630965497fa8","name":"Keybook","type":"folder"}},"urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"23f859c8-96d1-42e0-bb0c-37cf281cfc07"}],"id":"d81d0984-488c-4f82-b7e4-630965497fa8","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"c8b5c2be-9c26-45f6-a047-91ef49d6c192","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8fea1630-757d-4354-97b4-49224778da44","type":"text/javascript","exec":[""]}}],"_postman_id":"d81d0984-488c-4f82-b7e4-630965497fa8","description":""},{"name":"Tokens","item":[{"name":"Create Token Account","id":"55f06282-1fe5-46bf-ab13-efc175fe3f89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"legacyED25519\",\n                    \"timestamp\": ,\n                    \"nonce\": ,\n                    \"publicKey\": \"\",\n                    \"signature\": \"\",\n                    \"signer\": \"\",\n                    \"signerVersion\": ,\n                    \"transactionHash\": \"\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"\",\n                        \"origin\": \"\",\n                        \"initiator\": \"\"\n                    },\n                    \"body\": {\n                        \"type\": \"createTokenAccount\",\n                        \"url\": \"\",\n                        \"tokenUrl\": \"\"\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 195\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p>Create an Accumulate token account</p>\n<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n<tr>\n<td>publicKey</td>\n<td>String</td>\n<td>This is the public key used to verify the signed transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>Signature of the ADI signing the transaction</td>\n</tr>\n<tr>\n<td>signer</td>\n<td>String</td>\n<td>ADI signing this request</td>\n</tr>\n<tr>\n<td>signerVersion</td>\n<td>Int</td>\n<td>This is the version number of the signing structure</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>Int</td>\n<td>This is the timestamp of the transaction used for signing the transaction</td>\n</tr>\n<tr>\n<td>transactionHash</td>\n<td>String</td>\n<td>Transaction Hash</td>\n</tr>\n<tr>\n<td>principal</td>\n<td>String</td>\n<td>URL of the adi or lite account paying for the transaction</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>String</td>\n<td>The origin account</td>\n</tr>\n<tr>\n<td>initiator</td>\n<td>String</td>\n<td>Account hash of the originator of the transaction</td>\n</tr>\n<tr>\n<td>tokenUrl</td>\n<td>String</td>\n<td>The token url</td>\n</tr>\n<tr>\n<td>nouce</td>\n<td>Int</td>\n<td>Uses timestamp</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"e9b288de4f55dc3c2e3403589c6aca9781af89d77ea584cc6a349797d5b3be73\",\n                    \"signature\": \"4e78af7c494afbcd3f17a90c8e612ccf72b86b4a371fc01b499209e59195fa9f71e249d6275b61549ebc65eaf65a68d534d7c279f0584edf795f5ed2a2277100\",\n                    \"signer\": \"acc://wised.acme/book/1\",\n                    \"signerVersion\": 1,\n                    \"timestamp\": 1666104690897,\n                    \"transactionHash\": \"77fcb95380e8d9147cad64afd556e21e1cca9ead7690543f236e281805016e14\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"acc://wised.acme\",\n                        \"initiator\": \"2e90cd1e3e2146c1849f9f8fc5ff021584d97173f92b7df5ed41031cb13819fb\"\n                    },\n                    \"body\": {\n                        \"type\": \"createTokenAccount\",\n                        \"url\": \"acc://wised.acme/tokens\",\n                        \"tokenUrl\": \"acc://ACME\"\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 1830\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"transactionHash\": \"500caf04f60888c88c3b1dd9f0d02e5b6f2d1d8b1e1b02a7af76d84be0ec9824\",\n        \"txid\": \"acc://500caf04f60888c88c3b1dd9f0d02e5b6f2d1d8b1e1b02a7af76d84be0ec9824@wised.acme\",\n        \"signatureHashes\": [\n            \"97bfd395ea1e6fae1c166d44cac16899738d4a3e15f9a9205ea12214231f5c67\"\n        ],\n        \"simpleHash\": \"93c1fa35c6361a6e1f701063212690ddb205d8e635972baa4247c8c5797217b7\",\n        \"hash\": \"93c1fa35c6361a6e1f701063212690ddb205d8e635972baa4247c8c5797217b7\",\n        \"result\": {\n            \"txID\": \"acc://500caf04f60888c88c3b1dd9f0d02e5b6f2d1d8b1e1b02a7af76d84be0ec9824@wised.acme\",\n            \"result\": null,\n            \"signers\": null\n        }\n    },\n    \"id\": 1359\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"55f06282-1fe5-46bf-ab13-efc175fe3f89"},{"name":"Burn Tokens","id":"fd83bb0d-d93c-409f-a197-82d1b7e513b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"\",\n                    \"signature\": \"\",\n                    \"signer\": \"\",\n                    \"signerVersion\": ,\n                    \"timestamp\": ,\n                    \"transactionHash\": \"\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"\",\n                        \"origin\": \"\",\n                        \"initiator\": \"\"\n                    },\n                    \"body\": {\n                        \"type\": \"burnTokens\",\n                        \"amount\": \"\"\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 1488\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n<tr>\n<td>publicKey</td>\n<td>String</td>\n<td>This is the public key used to verify the signed transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>Signature of the ADI signing the transaction</td>\n</tr>\n<tr>\n<td>signer</td>\n<td>String</td>\n<td>ADI signing this request</td>\n</tr>\n<tr>\n<td>signerVersion</td>\n<td>Int</td>\n<td>This is the version number of the signing structure</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>Int</td>\n<td>This is the timestamp of the transaction used for signing the transaction</td>\n</tr>\n<tr>\n<td>transactionHash</td>\n<td>String</td>\n<td>Transaction Hash</td>\n</tr>\n<tr>\n<td>principal</td>\n<td>String</td>\n<td>URL of the adi or lite account paying for the transaction</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>String</td>\n<td>The origin account</td>\n</tr>\n<tr>\n<td>initiator</td>\n<td>String</td>\n<td>Account hash of the originator of the transaction</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>String</td>\n<td>token amount</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"b9b9d7c3dd4eaeb3048b9afc81524992b6c547dfb2363de2634e4b05de5048ac\",\n                    \"signature\": \"295cca94c95e776b79aa189f342dfa8ab620ff59f79f19fb288ba889bcc8ce5bf7976aad8f4366f42395dea8e80cdb2dcb9a1b27ea424fc691aae3a4ed2b9103\",\n                    \"signer\": \"acc://eab99c8ce17a8104afa8ee6055b6bbc4d5021c7a1c85271c\",\n                    \"signerVersion\": 1,\n                    \"timestamp\": 1666359333793,\n                    \"transactionHash\": \"b7e0ee03b0b28ddc98b089495bd36fd3d0e81dbaa550631fbf2925515e50045c\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"acc://eab99c8ce17a8104afa8ee6055b6bbc4d5021c7a1c85271c/ACME\",\n                        \"initiator\": \"39803e2636b37be69fb7783a755997e479e3dca0fadd778a0e90bdb862a4d72d\"\n                    },\n                    \"body\": {\n                        \"type\": \"burnTokens\",\n                        \"amount\": \"1000000000\"\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 3896\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"transactionHash\": \"b7e0ee03b0b28ddc98b089495bd36fd3d0e81dbaa550631fbf2925515e50045c\",\n        \"txid\": \"acc://b7e0ee03b0b28ddc98b089495bd36fd3d0e81dbaa550631fbf2925515e50045c@eab99c8ce17a8104afa8ee6055b6bbc4d5021c7a1c85271c/ACME\",\n        \"signatureHashes\": [\n            \"1c80c1ae8d74371fc106a8340fbd2d40ffdef9f0901ff1c64e0f5bdd0ad0c873\"\n        ],\n        \"simpleHash\": \"4d56a1f9c16bc8a56a1b2d91c938b5d222b6ea089b0876472065f9c46b865ea1\",\n        \"hash\": \"4d56a1f9c16bc8a56a1b2d91c938b5d222b6ea089b0876472065f9c46b865ea1\",\n        \"result\": {\n            \"txID\": \"acc://b7e0ee03b0b28ddc98b089495bd36fd3d0e81dbaa550631fbf2925515e50045c@eab99c8ce17a8104afa8ee6055b6bbc4d5021c7a1c85271c/ACME\",\n            \"result\": null,\n            \"signers\": null\n        }\n    },\n    \"id\": 3896\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd83bb0d-d93c-409f-a197-82d1b7e513b5"},{"name":"Get Tokens","id":"29b29432-354f-4e8d-9c3f-c3d484511892","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"query\",\n    \"params\": {\n        \"url\": \"\"\n    },\n    \"id\": 1087\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Token url</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"query\",\n    \"params\": {\n        \"url\": \"acc://wize.acme/tok\"\n    },\n    \"id\": 1087\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"type\": \"tokenAccount\",\n        \"mainChain\": {\n            \"height\": 3,\n            \"count\": 3,\n            \"roots\": [\n                \"88bdd4530070f0133648acb7eaac702b8fdd9bfbb005d0e8a8048576fc88a7c5\",\n                \"b75460b04ca568830b0181ff521b7f800b0d0aa07ee31c1b26d71fb7841e6853\"\n            ]\n        },\n        \"merkleState\": {\n            \"height\": 3,\n            \"count\": 3,\n            \"roots\": [\n                \"88bdd4530070f0133648acb7eaac702b8fdd9bfbb005d0e8a8048576fc88a7c5\",\n                \"b75460b04ca568830b0181ff521b7f800b0d0aa07ee31c1b26d71fb7841e6853\"\n            ]\n        },\n        \"chains\": [\n            {\n                \"name\": \"main\",\n                \"type\": \"transaction\",\n                \"height\": 3,\n                \"count\": 3,\n                \"roots\": [\n                    \"88bdd4530070f0133648acb7eaac702b8fdd9bfbb005d0e8a8048576fc88a7c5\",\n                    \"b75460b04ca568830b0181ff521b7f800b0d0aa07ee31c1b26d71fb7841e6853\"\n                ]\n            },\n            {\n                \"name\": \"main-index\",\n                \"type\": \"index\",\n                \"height\": 3,\n                \"count\": 3,\n                \"roots\": [\n                    \"010202a3ec0303949a4720000000000000000000000000000000000000000000\",\n                    \"e2d0e1c324ff3bb97cc645b76d944116166895767286c07847b7bdcc572cfcb0\"\n                ]\n            },\n            {\n                \"name\": \"signature\",\n                \"type\": \"transaction\",\n                \"height\": 3,\n                \"count\": 3,\n                \"roots\": [\n                    \"51e9fa362cf4c016f8efc91a3ff4418776a53df10527da9b4ad70b9df92ccc6e\",\n                    \"776dfac337a428123a9e6915a3f39fa230673e7ec80f9919df62f234b011c89a\"\n                ]\n            }\n        ],\n        \"data\": {\n            \"type\": \"tokenAccount\",\n            \"url\": \"acc://wize.acme/tok\",\n            \"authorities\": [\n                {\n                    \"url\": \"acc://wize.acme/book\",\n                    \"disabled\": true\n                }\n            ],\n            \"tokenUrl\": \"acc://ACME\",\n            \"balance\": \"0\"\n        },\n        \"chainId\": \"086bf3eb97e702b7637964c733ea34e7047a425f286de7ecc6a2e12cd19edbff\"\n    },\n    \"id\": 1087\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"29b29432-354f-4e8d-9c3f-c3d484511892"},{"name":"Create Token","id":"a7371dff-a48e-4233-9359-c6ba44d41fc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"legacyED25519\",\n                    \"timestamp\": ,\n                    \"nonce\": ,\n                    \"publicKey\": \"\",\n                    \"signature\": \"\",\n                    \"signer\": \"\",\n                    \"signerVersion\": ,\n                    \"transactionHash\": \"\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"\",\n                        \"origin\": \"\",\n                        \"initiator\": \"\"\n                    },\n                    \"body\": {\n                        \"type\": \"createToken\",\n                        \"url\": \"\",\n                        \"symbol\": \"\",\n                        \"precision\": \n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 4880\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n<tr>\n<td>publicKey</td>\n<td>String</td>\n<td>This is the public key used to verify the signed transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>Signature of the ADI signing the transaction</td>\n</tr>\n<tr>\n<td>signer</td>\n<td>String</td>\n<td>ADI signing this request</td>\n</tr>\n<tr>\n<td>nonce</td>\n<td>Int</td>\n<td>Uses timestamp</td>\n</tr>\n<tr>\n<td>signerVersion</td>\n<td>Int</td>\n<td>This is the version number of the signing structure</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>Int</td>\n<td>This is the timestamp of the transaction used for signing the transaction</td>\n</tr>\n<tr>\n<td>transactionHash</td>\n<td>String</td>\n<td>Transaction Hash</td>\n</tr>\n<tr>\n<td>principal</td>\n<td>String</td>\n<td>URL of the adi or lite account paying for the transaction</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>String</td>\n<td>The origin account</td>\n</tr>\n<tr>\n<td>initiator</td>\n<td>String</td>\n<td>Account hash of the originator of the transaction</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>This is the type of transaction body, eg, createToken</td>\n</tr>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>ADI url</td>\n</tr>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Token url</td>\n</tr>\n<tr>\n<td>symbol</td>\n<td>String</td>\n<td>Token symbol</td>\n</tr>\n<tr>\n<td>precision</td>\n<td>Int</td>\n<td>Precision is the number of digits past the decimal place for a token balance. For example, the precision of ACME is 8, so you can have increments as small as 0.00000001 but no smaller than that.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"ec33bb2db0ff9f3c602f809fd4424fa87b9d93d961633da0c43935d7c18ed995\",\n                    \"signature\": \"5da6f819bddbadadfc225d76dccc96be197a569878a5f8e5c9f84aabf2d690e1a67ab55956723c6f0a618b28c592732f100f052824fc5212344d7e754e839f06\",\n                    \"signer\": \"acc://wizes.acme/book/1\",\n                    \"signerVersion\": 1,\n                    \"timestamp\": 1666359145015,\n                    \"transactionHash\": \"f91a28fc87cd05cef75fb5690361d6b7822cc89ef1837b34890a91e1fb6320c3\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"acc://wizes.acme\",\n                        \"initiator\": \"d78ed4c257c3c78413ce8f47fa755922c908f6383b679f92ab29488f9e36f768\"\n                    },\n                    \"body\": {\n                        \"type\": \"createTokenAccount\",\n                        \"url\": \"acc://wizes.acme/tok3\",\n                        \"tokenUrl\": \"acc://ACME\"\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 1382\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"transactionHash\": \"f91a28fc87cd05cef75fb5690361d6b7822cc89ef1837b34890a91e1fb6320c3\",\n        \"txid\": \"acc://f91a28fc87cd05cef75fb5690361d6b7822cc89ef1837b34890a91e1fb6320c3@wizes.acme\",\n        \"signatureHashes\": [\n            \"73e93efc89c53b159d4eec21fee2ac8d82ec684237c2377093439ef0328607b4\"\n        ],\n        \"simpleHash\": \"d84d0a81b7614ad67e9e0238521a3a7dc97ce633ef9f5ccb57767707de1ba9e5\",\n        \"hash\": \"d84d0a81b7614ad67e9e0238521a3a7dc97ce633ef9f5ccb57767707de1ba9e5\",\n        \"result\": {\n            \"txID\": \"acc://f91a28fc87cd05cef75fb5690361d6b7822cc89ef1837b34890a91e1fb6320c3@wizes.acme\",\n            \"result\": null,\n            \"signers\": null\n        }\n    },\n    \"id\": 1382\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"a7371dff-a48e-4233-9359-c6ba44d41fc7"},{"name":"Send Token","id":"681afbe9-6507-4d2e-90eb-822abc9381d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"\",\n                    \"signature\": \"\",\n                    \"signer\": \"\",\n                    \"signerVersion\": ,\n                    \"timestamp\": ,\n                    \"transactionHash\": \"\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"\",\n                        \"origin\": \"\",\n                        \"initiator\": \"\"\n                    },\n                    \"body\": {\n                        \"type\": \"sendTokens\",\n                        \"hash\": \"\",\n                        \"to\": [\n                            {\n                                \"url\": \"\",\n                                \"amount\": \"\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 436\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n<tr>\n<td>publicKey</td>\n<td>String</td>\n<td>This is the public key used to verify the signed transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>Signature of the ADI signing the transaction</td>\n</tr>\n<tr>\n<td>signer</td>\n<td>String</td>\n<td>ADI signing this request</td>\n</tr>\n<tr>\n<td>signerVersion</td>\n<td>Int</td>\n<td>This is the version number of the signing structure</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>Int</td>\n<td>This is the timestamp of the transaction used for signing the transaction</td>\n</tr>\n<tr>\n<td>transactionHash</td>\n<td>String</td>\n<td>Transaction Hash</td>\n</tr>\n<tr>\n<td>principal</td>\n<td>String</td>\n<td>URL of the adi or lite account paying for the transaction</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>String</td>\n<td>The origin account</td>\n</tr>\n<tr>\n<td>initiator</td>\n<td>String</td>\n<td>Account hash of the originator of the transaction</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>This is the type of transaction body, eg, createToken, sendToken.</td>\n</tr>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Token url</td>\n</tr>\n<tr>\n<td>symbol</td>\n<td>String</td>\n<td>Token symbol</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Int</td>\n<td>Token amount</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"44915cdf9c299c8dbaef2e44e371be4b862f984258666a26db88f4b3fde62ff7\",\n                    \"signature\": \"3f8ff9453ca3bf81a7945ed830c3e53e458b138a9a2223302bb16103c76992885b3a12a8b917b81c20524b68d545d77183d26f6cce7ef593b1f1b87699958401\",\n                    \"signer\": \"acc://e9a8fb30ab448a5c3fb9b67ec8c1d155b04db3eb144568bd\",\n                    \"signerVersion\": 1,\n                    \"timestamp\": 1666272972387,\n                    \"transactionHash\": \"0bb36366fa59959fdb299f8ed5853c868e8f34fbf4686540c7a73c982a715268\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"acc://e9a8fb30ab448a5c3fb9b67ec8c1d155b04db3eb144568bd/ACME\",\n                        \"initiator\": \"a98d18c1e999076abaffcd2907ab0fc0608604d19279984f651e8d953282d594\"\n                    },\n                    \"body\": {\n                        \"type\": \"sendTokens\",\n                        \"hash\": \"0000000000000000000000000000000000000000000000000000000000000000\",\n                        \"to\": [\n                            {\n                                \"url\": \"acc://e9a8fb30ab448a5c3fb9b67ec8c1d155b04db3eb144568bd/ACME\",\n                                \"amount\": \"1000000000\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 4269\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"transactionHash\": \"0bb36366fa59959fdb299f8ed5853c868e8f34fbf4686540c7a73c982a715268\",\n        \"txid\": \"acc://0bb36366fa59959fdb299f8ed5853c868e8f34fbf4686540c7a73c982a715268@e9a8fb30ab448a5c3fb9b67ec8c1d155b04db3eb144568bd/ACME\",\n        \"signatureHashes\": [\n            \"325f2eb4b00d9fc4e6be33fb24aba99719c1281c32629d647bbc6f9e06238c24\"\n        ],\n        \"simpleHash\": \"1eff51c84929a4a4d049da98f9728514e85d98585f3beefa2f903f490ea50e74\",\n        \"hash\": \"1eff51c84929a4a4d049da98f9728514e85d98585f3beefa2f903f490ea50e74\",\n        \"result\": {\n            \"txID\": \"acc://0bb36366fa59959fdb299f8ed5853c868e8f34fbf4686540c7a73c982a715268@e9a8fb30ab448a5c3fb9b67ec8c1d155b04db3eb144568bd/ACME\",\n            \"result\": null,\n            \"signers\": null\n        }\n    },\n    \"id\": 4269\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"681afbe9-6507-4d2e-90eb-822abc9381d7"},{"name":"Token Issuer","id":"366921e5-ec1c-4ff2-b2bc-f6d72f97e88d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"\",\n                    \"signature\": \"\",\n                    \"signer\": \"\",\n                    \"signerVersion\": ,\n                    \"timestamp\": ,\n                    \"transactionHash\": \"\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"\",\n                        \"origin\": \"\",\n                        \"initiator\": \"\"\n                    },\n                    \"body\": {\n                        \"type\": \"createToken\",\n                        \"url\": \"\",\n                        \"symbol\": \"\",\n                        \"precision\": ,\n                        \"supplyLimit\": \"\"\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 2116\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n<tr>\n<td>publicKey</td>\n<td>String</td>\n<td>This is the public key used to verify the signed transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>Signature of the ADI signing the transaction</td>\n</tr>\n<tr>\n<td>signer</td>\n<td>String</td>\n<td>ADI signing this request</td>\n</tr>\n<tr>\n<td>signerVersion</td>\n<td>Int</td>\n<td>This is the version number of the signing structure</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>Int</td>\n<td>This is the timestamp of the transaction used for signing the transaction</td>\n</tr>\n<tr>\n<td>transactionHash</td>\n<td>String</td>\n<td>Transaction Hash</td>\n</tr>\n<tr>\n<td>principal</td>\n<td>String</td>\n<td>URL of the adi or lite account paying for the transaction</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>String</td>\n<td>The origin account</td>\n</tr>\n<tr>\n<td>initiator</td>\n<td>String</td>\n<td>Account hash of the originator of the transaction</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>This is the type of transaction body, eg, createToken, sendToken.</td>\n</tr>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Token issuer url</td>\n</tr>\n<tr>\n<td>symbol</td>\n<td>String</td>\n<td>Token issuer symbol</td>\n</tr>\n<tr>\n<td>precision</td>\n<td>Int</td>\n<td>Precision is the number of digits past the decimal place for a token balance. For example, the precision of ACME is 8, so you can have increments as small as 0.00000001 but no smaller than that.</td>\n</tr>\n<tr>\n<td>supplyLimit</td>\n<td>String</td>\n<td>The maximum amount token to be issued.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"e9b288de4f55dc3c2e3403589c6aca9781af89d77ea584cc6a349797d5b3be73\",\n                    \"signature\": \"9feaa5b7eeec2d3c0ce613e6a1463ef2bf59c6090bd0227f531bdf4b80fe4974655033395d3ac58e7ed926e1f01dcf314b1866bc506af98f126e916c24042100\",\n                    \"signer\": \"acc://wised.acme/book/1\",\n                    \"signerVersion\": 1,\n                    \"timestamp\": 1666192209869,\n                    \"transactionHash\": \"0479e5dac94d9c3a89b905b073b15de21b76f91b347db34c652d381edc08bcf9\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"acc://wised.acme\",\n                        \"initiator\": \"ce472fc0227cfbb295cbf4063ce02a051fba95dd78bae4c14fda361b2e2ed84b\"\n                    },\n                    \"body\": {\n                        \"type\": \"createToken\",\n                        \"url\": \"acc://wised.acme/ai\",\n                        \"symbol\": \"ai\",\n                        \"precision\": 1,\n                        \"supplyLimit\": \"100000\"\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 1273\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"transactionHash\": \"0479e5dac94d9c3a89b905b073b15de21b76f91b347db34c652d381edc08bcf9\",\n        \"txid\": \"acc://0479e5dac94d9c3a89b905b073b15de21b76f91b347db34c652d381edc08bcf9@wised.acme\",\n        \"signatureHashes\": [\n            \"f794adc217db52cc50225cef133e22092c04dcc19c285e299aa56742d13b6c0f\"\n        ],\n        \"simpleHash\": \"3a9159792fd9cfd934a17cab756cd2a8e725ac1218c1d73609febc4087695ad4\",\n        \"hash\": \"3a9159792fd9cfd934a17cab756cd2a8e725ac1218c1d73609febc4087695ad4\",\n        \"result\": {\n            \"txID\": \"acc://0479e5dac94d9c3a89b905b073b15de21b76f91b347db34c652d381edc08bcf9@wised.acme\",\n            \"result\": null,\n            \"signers\": null\n        }\n    },\n    \"id\": 1273\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"366921e5-ec1c-4ff2-b2bc-f6d72f97e88d"},{"name":"Issue Tokens","id":"401f9438-a55c-4158-81f7-1ca41f89042d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"\",\n                    \"signature\": \"\",\n                    \"signer\": \"\",\n                    \"signerVersion\": ,\n                    \"timestamp\": ,\n                    \"transactionHash\": \"\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"\",\n                        \"origin\": \"\",\n                        \"initiator\": \"\"\n                    },\n                    \"body\": {\n                        \"type\": \"issueTokens\",\n                        \"recipient\": \"\",\n                        \"amount\": \"\"\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 2116\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n<tr>\n<td>publicKey</td>\n<td>String</td>\n<td>This is the public key used to verify the signed transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>Signature of the ADI signing the transaction</td>\n</tr>\n<tr>\n<td>signer</td>\n<td>String</td>\n<td>ADI signing this request</td>\n</tr>\n<tr>\n<td>signerVersion</td>\n<td>Int</td>\n<td>This is the version number of the signing structure</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>Int</td>\n<td>This is the timestamp of the transaction used for signing the transaction</td>\n</tr>\n<tr>\n<td>transactionHash</td>\n<td>String</td>\n<td>Transaction Hash</td>\n</tr>\n<tr>\n<td>principal</td>\n<td>String</td>\n<td>URL of the adi or lite account paying for the transaction</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>String</td>\n<td>The origin account</td>\n</tr>\n<tr>\n<td>initiator</td>\n<td>String</td>\n<td>Account hash of the originator of the transaction</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>This is the type of transaction body, eg, createToken, sendToken.</td>\n</tr>\n<tr>\n<td>recipient</td>\n<td>String</td>\n<td>Token url</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>String</td>\n<td>Token amount</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"096fcc1e255fb5e20124c4fa50b6ecbe827ac276fa415d87a382477478bb3dff\",\n                    \"signature\": \"f5912ba9ea61317422f95937b0c152e3e34f1aa40bb4f1b2b4c9833f8e68a24b152b7bff9bb9b6c2afb8d403f9f729fd2a52454646da2f3bd565a77d5970e70f\",\n                    \"signer\": \"acc://wize.acme/book/1\",\n                    \"signerVersion\": 1,\n                    \"timestamp\": 1666615994371,\n                    \"transactionHash\": \"175144f7f048119c1fea84a1cc87fd55e3ff1bc62f6cc966b5c6d182031cfc33\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"acc://wize.acme/AIZ\",\n                        \"initiator\": \"76a2657f90b12f8aae8b13e9f90c25ab39cfeb351a10c90d8a017fac57695e76\"\n                    },\n                    \"body\": {\n                        \"type\": \"issueTokens\",\n                        \"recipient\": \"acc://wize.acme/AIZ\",\n                        \"amount\": \"50\"\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 194\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"transactionHash\": \"175144f7f048119c1fea84a1cc87fd55e3ff1bc62f6cc966b5c6d182031cfc33\",\n        \"txid\": \"acc://175144f7f048119c1fea84a1cc87fd55e3ff1bc62f6cc966b5c6d182031cfc33@wize.acme/AIZ\",\n        \"signatureHashes\": [\n            \"271fe3cab4c2b2141dc0d4375ed8537a0d140c8b1cabac78fe2df937be8453f9\"\n        ],\n        \"simpleHash\": \"bdf57f0ec3937a4d49574ef39ab10d91810d47902a842dd92082d2cb1409f123\",\n        \"hash\": \"bdf57f0ec3937a4d49574ef39ab10d91810d47902a842dd92082d2cb1409f123\",\n        \"result\": {\n            \"txID\": \"acc://175144f7f048119c1fea84a1cc87fd55e3ff1bc62f6cc966b5c6d182031cfc33@wize.acme/AIZ\",\n            \"result\": null,\n            \"signers\": null\n        }\n    },\n    \"id\": 194\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"401f9438-a55c-4158-81f7-1ca41f89042d"}],"id":"ac77ae39-1a68-4393-b093-862b2ac4671c","_postman_id":"ac77ae39-1a68-4393-b093-862b2ac4671c","description":""},{"name":"ADI","item":[{"name":"Get ADI directory","id":"dd9cf3a2-54bc-4278-a984-6b9e639c3ec1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"query-directory\",\n    \"params\": {\n        \"url\": \"\",\n        \"start\": ,\n        \"count\": ,\n        \"expand\": ,\n        \"expandChains\": \n    },\n    \"id\": 4309\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>ADI url</td>\n</tr>\n<tr>\n<td>start</td>\n<td>Int</td>\n<td></td>\n</tr>\n<tr>\n<td>count</td>\n<td>Int</td>\n<td></td>\n</tr>\n<tr>\n<td>expand</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>expandChains</td>\n<td>boolean</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"query-directory\",\n    \"params\": {\n        \"url\": \"acc://DefiDevs.acme\",\n        \"start\": 1,\n        \"count\": 20,\n        \"expand\": true,\n        \"expandChains\": true\n    },\n    \"id\": 4309\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"type\": \"directory\",\n        \"items\": [\n            \"acc://defidevs.acme/rewards\"\n        ],\n        \"start\": 1,\n        \"count\": 20,\n        \"total\": 2,\n        \"otherItems\": [\n            {\n                \"type\": \"tokenAccount\",\n                \"data\": {\n                    \"type\": \"tokenAccount\",\n                    \"url\": \"acc://defidevs.acme/rewards\",\n                    \"authorities\": [\n                        {\n                            \"url\": \"acc://defidevs.acme/book\"\n                        }\n                    ],\n                    \"tokenUrl\": \"acc://ACME\",\n                    \"balance\": \"0\"\n                },\n                \"chainId\": \"8ae06348744ba6e8b14ea44804db9d5b01460fd13c723e92c9ac449249d34508\"\n            }\n        ]\n    },\n    \"id\": 4309\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"dd9cf3a2-54bc-4278-a984-6b9e639c3ec1"},{"name":"Create ADI from lite account","id":"3c3771ba-0bb4-4db3-95e8-2364c452809a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"d03c683332ed36add8d0eeb9eee9e2669b5565decec03acc43d762f3f79f49c2\",\n                    \"signature\": \"5d284ee37fd5f998a576216e7daeb974ec7f44e21e7a362172d07b02993e1247db81736b834c556ad03683099a5a42cb50e6ab6bb142089e88530cf9df720509\",\n                    \"signer\": \"acc://7117c50f04f1254d56b704dc05298912deeb25dbc1d26ef6\",\n                    \"signerVersion\": 1,\n                    \"timestamp\": 1661512242371861361,\n                    \"transactionHash\": \"9ef74964c62f6adc8a05599c7628ba735f250cd02255c3da8f49886485bc75ca\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"acc://7117c50f04f1254d56b704dc05298912deeb25dbc1d26ef6/ACME\",\n                        \"origin\": \"acc://7117c50f04f1254d56b704dc05298912deeb25dbc1d26ef6/ACME\",\n                        \"initiator\": \"7d20f8ac307f03dc5b096c4700466d296ff42a4aad0971be25b34e5047f18e5b\"\n                    },\n                    \"body\": {\n                        \"type\": \"createIdentity\",\n                        \"url\": \"acc://c919b88657932724a037c1ae227bdc493249477901dba032/ACME\",\n                        \"keyHash\": \"\",\n                        \"keyBookUrl\": \"\"\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 3326\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p>Create a new ADI (Accumulate Digital Identity)</p>\n<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n<tr>\n<td>publicKey</td>\n<td>String</td>\n<td>This is the public key used to verify the signed transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>Signature of the ADI signing the transaction</td>\n</tr>\n<tr>\n<td>signer</td>\n<td>String</td>\n<td>ADI signing this request</td>\n</tr>\n<tr>\n<td>signerVersion</td>\n<td>Int</td>\n<td>This is the version number of the signing structure</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>Int</td>\n<td>This is the timestamp of the transaction used for signing the transaction</td>\n</tr>\n<tr>\n<td>transactionHash</td>\n<td>String</td>\n<td>Transaction Hash</td>\n</tr>\n<tr>\n<td>principal</td>\n<td>String</td>\n<td>URL of the adi or lite account paying for the transaction</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>String</td>\n<td>The origin account</td>\n</tr>\n<tr>\n<td>initiator</td>\n<td>String</td>\n<td>Account hash of the originator of the transaction</td>\n</tr>\n<tr>\n<td>keyhash</td>\n<td>String</td>\n<td>Hash of the key used for account verification</td>\n</tr>\n<tr>\n<td>keyBookUrl</td>\n<td>String</td>\n<td>Uses timestamp</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"7abd943bacf33397d2c63a92e6bbb6f5bcaf46469dfec5e2020b535be2abe227\",\n                    \"signature\": \"fa8ca11d298fe21f5c4dd3067ed05934a9b12e12d0ff41724c215611c7b89f20e3efb741e56fba1f3baf4bf0ace800668467499efa5bce005d7f186cbca9cb01\",\n                    \"signer\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b\",\n                    \"signerVersion\": 1,\n                    \"timestamp\": 1665673236882,\n                    \"transactionHash\": \"736c65fcec59eb59b4d78f1ccce076d1294bbe4ca1951751ef03b22b05e86bae\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n                        \"initiator\": \"2b2e43c7feac2a90a030d1fbdbf3fe9a2783bd9478bf58e8ca9d1e965d784cb1\"\n                    },\n                    \"body\": {\n                        \"type\": \"createIdentity\",\n                        \"url\": \"acc://DefiDevs.acme\",\n                        \"keyHash\": \"c51973741b7e3590de3373e7854ad2369143d7743803e206c8e08f5876222d30\",\n                        \"keyBookUrl\": \"acc://DefiDevs.acme/book\"\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 1163\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"transactionHash\": \"736c65fcec59eb59b4d78f1ccce076d1294bbe4ca1951751ef03b22b05e86bae\",\n        \"txid\": \"acc://736c65fcec59eb59b4d78f1ccce076d1294bbe4ca1951751ef03b22b05e86bae@a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n        \"signatureHashes\": [\n            \"840e8f7bec1c08bc2bfb35e47aedaa140b38f6d7b9cecea701aaa2ac210f48ec\"\n        ],\n        \"simpleHash\": \"735c8fa3500250f2d0c26ec335b31653d3b72b2525b3fc608c47914d9ebf002e\",\n        \"hash\": \"735c8fa3500250f2d0c26ec335b31653d3b72b2525b3fc608c47914d9ebf002e\",\n        \"result\": {\n            \"txID\": \"acc://736c65fcec59eb59b4d78f1ccce076d1294bbe4ca1951751ef03b22b05e86bae@a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n            \"result\": null,\n            \"signers\": null\n        }\n    },\n    \"id\": 1163\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"3c3771ba-0bb4-4db3-95e8-2364c452809a"},{"name":"Get ADI","id":"29411c9d-a54b-4993-b7cb-b5c4bdc61c07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 0,\n    \"method\": \"query\",\n    \"params\": {\n        \"url\": \"\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>ADI url</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 0,\n  \"method\": \"query\",\n  \"params\": {\n    \"url\": \"acc://DefiDevs.acme\"\n  }\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"chainId\": \"163f357261d805f1578c4eb582a103c4d2e39dd82509aebf9622b4e6ef4a72fe\",\n        \"chains\": [\n            {\n                \"count\": 6,\n                \"height\": 6,\n                \"name\": \"main\",\n                \"roots\": [\n                    null,\n                    \"fa2caa25c34e4a4c24b83ed59ce0c36fb1bbfc36fa3f482e299c44f61399dba6\",\n                    \"42e4413e9d2b23c0b7ff113a4156cc37cc39bca0aba5689061f55f01a1915a79\"\n                ],\n                \"type\": \"transaction\"\n            },\n            {\n                \"count\": 5,\n                \"height\": 5,\n                \"name\": \"main-index\",\n                \"roots\": [\n                    \"010502faa4030393980c20000000000000000000000000000000000000000000\",\n                    null,\n                    \"21e5677e24d35fdc2d1b57fc2817d84d8fd7fb4a67898c665c79cc81accae941\"\n                ],\n                \"type\": \"index\"\n            },\n            {\n                \"count\": 4,\n                \"height\": 4,\n                \"name\": \"signature\",\n                \"roots\": [\n                    null,\n                    null,\n                    \"2e81dde95bedf6252d1a0d232feeb3c614f17eb79d491ec240effb2326fd02e2\"\n                ],\n                \"type\": \"transaction\"\n            }\n        ],\n        \"data\": {\n            \"authorities\": [\n                {\n                    \"url\": \"acc://defidevs.acme/book\"\n                }\n            ],\n            \"type\": \"identity\",\n            \"url\": \"acc://defidevs.acme\"\n        },\n        \"mainChain\": {\n            \"count\": 6,\n            \"height\": 6,\n            \"roots\": [\n                null,\n                \"fa2caa25c34e4a4c24b83ed59ce0c36fb1bbfc36fa3f482e299c44f61399dba6\",\n                \"42e4413e9d2b23c0b7ff113a4156cc37cc39bca0aba5689061f55f01a1915a79\"\n            ]\n        },\n        \"merkleState\": {\n            \"count\": 6,\n            \"height\": 6,\n            \"roots\": [\n                null,\n                \"fa2caa25c34e4a4c24b83ed59ce0c36fb1bbfc36fa3f482e299c44f61399dba6\",\n                \"42e4413e9d2b23c0b7ff113a4156cc37cc39bca0aba5689061f55f01a1915a79\"\n            ]\n        },\n        \"type\": \"identity\"\n    },\n    \"id\": 0\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"29411c9d-a54b-4993-b7cb-b5c4bdc61c07"}],"id":"8490aa18-d114-40fe-b3de-22f9ef85ce4a","_postman_id":"8490aa18-d114-40fe-b3de-22f9ef85ce4a","description":""},{"name":"Credits","item":[{"name":"Add Credits","id":"796d9e10-bdae-4877-8702-e563f6b350d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"\",\n                    \"signature\": \"\",\n                    \"signer\": \"\",\n                    \"signerVersion\": ,\n                    \"timestamp\": ,\n                    \"transactionHash\": \"\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"\",\n                        \"origin\": \"\",\n                        \"initiator\": \"\"\n                    },\n                    \"body\": {\n                        \"type\": \"addCredits\",\n                        \"oracle\": ,\n                        \"amount\": \"\",\n                        \"recipient\": \"\"\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 3154\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n<tr>\n<td>publicKey</td>\n<td>String</td>\n<td>This is the public key used to verify the signed transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>Signature of the ADI signing the transaction</td>\n</tr>\n<tr>\n<td>signer</td>\n<td>String</td>\n<td>ADI signing this request</td>\n</tr>\n<tr>\n<td>signerVersion</td>\n<td>Int</td>\n<td>This is the version number of the signing structure</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>Int</td>\n<td>This is the timestamp of the transaction used for signing the transaction</td>\n</tr>\n<tr>\n<td>transactionHash</td>\n<td>String</td>\n<td>Transaction Hash</td>\n</tr>\n<tr>\n<td>principal</td>\n<td>String</td>\n<td>URL of the adi or lite account paying for the transaction</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>String</td>\n<td>The origin account</td>\n</tr>\n<tr>\n<td>initiator</td>\n<td>String</td>\n<td>Account hash of the originator of the transaction</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>String</td>\n<td>Credit amount</td>\n</tr>\n<tr>\n<td>oracle</td>\n<td>Int</td>\n<td>is the price of ACME as in $/ACME. This should mirror the market value.</td>\n</tr>\n<tr>\n<td>recipient</td>\n<td>String</td>\n<td>for send or issue tokens is the account that will be receiving tokens</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"7abd943bacf33397d2c63a92e6bbb6f5bcaf46469dfec5e2020b535be2abe227\",\n                    \"signature\": \"e5ce76d88af4f1b13469c48f9d5b15df886266a42e73ed5eed5738153cb5caf1261b26bf666c26fc76d5444b030ad54f9d783af8ff94784068957d1b8079cc09\",\n                    \"signer\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b\",\n                    \"signerVersion\": 1,\n                    \"timestamp\": 1665672488285,\n                    \"transactionHash\": \"d38693d8425f602f5978d8b5af61226789d9bc4b32b729d2dd9a428b4c3ea9c4\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n                        \"initiator\": \"7afdc7bb86dc3d9aa116112434bd324f463af4d10d14a1d08d2fe7fb8aedb9a3\"\n                    },\n                    \"body\": {\n                        \"type\": \"addCredits\",\n                        \"recipient\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n                        \"amount\": \"200000\",\n                        \"oracle\": 50000000\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 456\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"transactionHash\": \"d38693d8425f602f5978d8b5af61226789d9bc4b32b729d2dd9a428b4c3ea9c4\",\n        \"txid\": \"acc://d38693d8425f602f5978d8b5af61226789d9bc4b32b729d2dd9a428b4c3ea9c4@a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n        \"signatureHashes\": [\n            \"f7230b2a63ca6790b2eb48d92fe8529441bbc4cc1b1725174686ea4cc4f8ad24\"\n        ],\n        \"simpleHash\": \"2f251e19528a6a86a1b0ae0ee5767da3e76d744c28c1d1cd24dd2ac4872212e3\",\n        \"hash\": \"2f251e19528a6a86a1b0ae0ee5767da3e76d744c28c1d1cd24dd2ac4872212e3\",\n        \"result\": {\n            \"txID\": \"acc://d38693d8425f602f5978d8b5af61226789d9bc4b32b729d2dd9a428b4c3ea9c4@a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n            \"result\": {\n                \"type\": \"addCredits\",\n                \"amount\": \"200000\",\n                \"credits\": 100000,\n                \"oracle\": 50000000\n            },\n            \"signers\": null\n        }\n    },\n    \"id\": 456\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"796d9e10-bdae-4877-8702-e563f6b350d5"}],"id":"37dfa9b5-627c-46f5-8ee9-f14e673c5e6d","_postman_id":"37dfa9b5-627c-46f5-8ee9-f14e673c5e6d","description":""},{"name":"Data","item":[{"name":"Get Data","id":"f2a9a3d2-8b4c-4c21-95a7-870500acdbc5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 0,\n    \"method\": \"query-data\",\n    \"params\": {\n        \"url\": \"\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Data url</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 0,\n  \"method\": \"query-data\",\n  \"params\": {\n    \"url\": \"acc://521ac121c7d307a3e280dd223927af0778db6094202868ea8474cf22ff442e83\"\n  }\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"chainId\": \"0b42db2d9ce09cc3654eacc31b0b0e5e7e290d4940983881b8fe680f36dd2f8d\",\n        \"chains\": [\n            {\n                \"count\": 1,\n                \"height\": 1,\n                \"name\": \"main\",\n                \"roots\": [\n                    \"bf241ef9a5f308f899d1fb5e0d213f3033ddacdfdda3cc8025f90ede301123e5\"\n                ],\n                \"type\": \"transaction\"\n            },\n            {\n                \"count\": 1,\n                \"height\": 1,\n                \"name\": \"main-index\",\n                \"roots\": [\n                    \"02aeec0303f49d47200000000000000000000000000000000000000000000000\"\n                ],\n                \"type\": \"index\"\n            }\n        ],\n        \"data\": {\n            \"entry\": {\n                \"data\": [\n                    null,\n                    \"6a6f686e\"\n                ],\n                \"type\": \"accumulate\"\n            },\n            \"entryHash\": \"4f46f4747d146753e3932995c50763fef0a80446757b97cfd9de532f9581a5eb\"\n        },\n        \"mainChain\": {\n            \"count\": 1,\n            \"height\": 1,\n            \"roots\": [\n                \"bf241ef9a5f308f899d1fb5e0d213f3033ddacdfdda3cc8025f90ede301123e5\"\n            ]\n        },\n        \"merkleState\": {\n            \"count\": 1,\n            \"height\": 1,\n            \"roots\": [\n                \"bf241ef9a5f308f899d1fb5e0d213f3033ddacdfdda3cc8025f90ede301123e5\"\n            ]\n        },\n        \"type\": \"dataEntry\"\n    },\n    \"id\": 0\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"f2a9a3d2-8b4c-4c21-95a7-870500acdbc5"},{"name":"Get Data Set","id":"ca06cf62-18f0-4ce4-88b9-9374676f823c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 0,\n    \"method\": \"query-data-set\",\n    \"params\": {\n        \"url\": \"\",\n        \"count\":\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>ADI url</td>\n</tr>\n<tr>\n<td>count</td>\n<td>Int</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 0,\n    \"method\": \"query-data-set\",\n    \"params\": {\n        \"url\": \"acc://521ac121c7d307a3e280dd223927af0778db6094202868ea8474cf22ff442e83\",\n        \"count\":1\n    }\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"type\": \"dataSet\",\n        \"items\": [\n            {\n                \"entryHash\": \"4f46f4747d146753e3932995c50763fef0a80446757b97cfd9de532f9581a5eb\",\n                \"entry\": null\n            }\n        ],\n        \"start\": 0,\n        \"count\": 1,\n        \"total\": 1\n    },\n    \"id\": 0\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"ca06cf62-18f0-4ce4-88b9-9374676f823c"},{"name":"Create Data Account","id":"448d4bb7-1253-4889-8e6a-e1261f45ebe4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"\",\n                    \"signature\": \"\",\n                    \"signer\": \"\",\n                    \"signerVersion\": ,\n                    \"timestamp\": ,\n                    \"transactionHash\": \"\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"\",\n                        \"origin\": \"\",\n                        \"initiator\": \"\"\n                    },\n                    \"body\": {\n                        \"type\": \"writeDataTo\",\n                        \"recipient\": \"\",\n                        \"entry\": {\n                            \"type\": \"accumulate\",\n                            \"data\": [\n                                \"\",\n                                \"\"\n                            ]\n                        }\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 1382\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n<tr>\n<td>publicKey</td>\n<td>String</td>\n<td>This is the public key used to verify the signed transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>Signature of the ADI signing the transaction</td>\n</tr>\n<tr>\n<td>signer</td>\n<td>String</td>\n<td>ADI signing this request</td>\n</tr>\n<tr>\n<td>signerVersion</td>\n<td>Int</td>\n<td>This is the version number of the signing structure</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>Int</td>\n<td>This is the timestamp of the transaction used for signing the transaction</td>\n</tr>\n<tr>\n<td>transactionHash</td>\n<td>String</td>\n<td>Transaction Hash</td>\n</tr>\n<tr>\n<td>principal</td>\n<td>String</td>\n<td>URL of the adi or lite account paying for the transaction</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>String</td>\n<td>The origin account</td>\n</tr>\n<tr>\n<td>initiator</td>\n<td>String</td>\n<td>Account hash of the originator of the transaction</td>\n</tr>\n<tr>\n<td>recipient</td>\n<td>String</td>\n<td>for send or issue tokens is the account that will be receiving tokens</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>This is the type of transaction body eg, writetoData</td>\n</tr>\n<tr>\n<td>data</td>\n<td>Array</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"096fcc1e255fb5e20124c4fa50b6ecbe827ac276fa415d87a382477478bb3dff\",\n                    \"signature\": \"1c61f3dab33b1347decde6a4c03d6ed554e331e794316814db7401d18670ac9753157b97fb228453eb8522a7f848bb58c427c4167a1ef919a99fb941599b3709\",\n                    \"signer\": \"acc://wize.acme/book/1\",\n                    \"signerVersion\": 1,\n                    \"timestamp\": 1666357258815,\n                    \"transactionHash\": \"f0c91417a529da52b4f9784a97a3c36dc2bb38f52a03f56d2f793d25ec0301cf\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"acc://wize.acme\",\n                        \"initiator\": \"3ae7d4468e298138906e3c6100da52acc2c89faf3351e665358f6f79b3f3197d\"\n                    },\n                    \"body\": {\n                        \"type\": \"writeDataTo\",\n                        \"recipient\": \"acc://521ac121c7d307a3e280dd223927af0778db6094202868ea8474cf22ff442e83\",\n                        \"entry\": {\n                            \"type\": \"accumulate\",\n                            \"data\": [\n                                \"\",\n                                \"6a6f686e\"\n                            ]\n                        }\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 3563\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"transactionHash\": \"f0c91417a529da52b4f9784a97a3c36dc2bb38f52a03f56d2f793d25ec0301cf\",\n        \"txid\": \"acc://f0c91417a529da52b4f9784a97a3c36dc2bb38f52a03f56d2f793d25ec0301cf@wize.acme\",\n        \"signatureHashes\": [\n            \"2660237658d58cbd3a6448f2a05814b5c69e4b784feff84f97a7b4d63d4add64\"\n        ],\n        \"simpleHash\": \"42a18f0bb21878f06abb16ed98f8c4ae06e2ce84de77e07107a0db764ab0cf8b\",\n        \"hash\": \"42a18f0bb21878f06abb16ed98f8c4ae06e2ce84de77e07107a0db764ab0cf8b\",\n        \"result\": {\n            \"txID\": \"acc://f0c91417a529da52b4f9784a97a3c36dc2bb38f52a03f56d2f793d25ec0301cf@wize.acme\",\n            \"result\": null,\n            \"signers\": null\n        }\n    },\n    \"id\": 3563\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"448d4bb7-1253-4889-8e6a-e1261f45ebe4"},{"name":"Write Data","id":"46f297f8-02a3-4023-8d8d-fed383461be7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"\",\n                    \"signature\": \"\",\n                    \"signer\": \"\",\n                    \"signerVersion\": ,\n                    \"timestamp\": ,\n                    \"transactionHash\": \"\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"\",\n                        \"origin\": \"\",\n                        \"initiator\": \"\"\n                    },\n                    \"body\": {\n                        \"type\": \"writeData\",\n                        \"recipient\": \"\",\n                        \"entry\": {\n                            \"type\": \"doubleHash\",\n                            \"data\": [\n                                \"\",\n                                \"\"\n                            ]\n                        }\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 1382\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n<tr>\n<td>publicKey</td>\n<td>String</td>\n<td>This is the public key used to verify the signed transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>Signature of the ADI signing the transaction</td>\n</tr>\n<tr>\n<td>signer</td>\n<td>String</td>\n<td>ADI signing this request</td>\n</tr>\n<tr>\n<td>signerVersion</td>\n<td>Int</td>\n<td>This is the version number of the signing structure</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>Int</td>\n<td>This is the timestamp of the transaction used for signing the transaction</td>\n</tr>\n<tr>\n<td>transactionHash</td>\n<td>String</td>\n<td>Transaction Hash</td>\n</tr>\n<tr>\n<td>principal</td>\n<td>String</td>\n<td>URL of the adi or lite account paying for the transaction</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>String</td>\n<td>The origin account</td>\n</tr>\n<tr>\n<td>initiator</td>\n<td>String</td>\n<td>Account hash of the originator of the transaction</td>\n</tr>\n<tr>\n<td>recipient</td>\n<td>String</td>\n<td>for send or issue tokens is the account that will be receiving tokens</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>This is the type of transaction body eg, writetoData</td>\n</tr>\n<tr>\n<td>data</td>\n<td>Array</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"50eba5fcb30b545f0181153fd8a8b08dd43e272a8adaf0a7081c740dccf23e3f\",\n                    \"signature\": \"ef70b6f0bd656beca5b63147defd4e61b1289cf294c3c1ad681c64b8493548c75e0022111c8577a383649801aaf8219eb2d6869ba966551f3f72f7ed57fca204\",\n                    \"signer\": \"acc://ethan.acme/book/1\",\n                    \"signerVersion\": 1,\n                    \"timestamp\": 1686154609467,\n                    \"transactionHash\": \"f0c38a2b52a7cdca6f17d9c29c65033a028931816fd21db0e806db50b8e6d319\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"acc://ethan.acme/data\",\n                        \"initiator\": \"1e0ea1031cec9ac138cf2f2d49db084fcc31eaf426f66a25ed64b90c2dd94e72\"\n                    },\n                    \"body\": {\n                        \"type\": \"writeData\",\n                        \"entry\": {\n                            \"type\": \"doubleHash\",\n                            \"data\": [\n                                \"666f6f\",\n                                \"626172\"\n                            ]\n                        }\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 4879\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"transactionHash\": \"f0c38a2b52a7cdca6f17d9c29c65033a028931816fd21db0e806db50b8e6d319\",\n        \"txid\": \"acc://f0c38a2b52a7cdca6f17d9c29c65033a028931816fd21db0e806db50b8e6d319@ethan.acme/data\",\n        \"simpleHash\": \"b7721cb9d38f7e1c9d1f92eca43704b6784c316bb4177179e88b3379e7140bb6\",\n        \"hash\": \"b7721cb9d38f7e1c9d1f92eca43704b6784c316bb4177179e88b3379e7140bb6\",\n        \"result\": {\n            \"txID\": \"acc://f0c38a2b52a7cdca6f17d9c29c65033a028931816fd21db0e806db50b8e6d319@ethan.acme/data\",\n            \"result\": {\n                \"type\": \"writeData\",\n                \"entryHash\": \"06a4153bfe4e25a13aa95c27de8dc117c5d64384a355fe7e5a22dc1b0ffe43d3\",\n                \"accountUrl\": \"acc://ethan.acme/data\",\n                \"accountID\": \"7d4fb20cccd61384e34ee073a950f1db82dd4d61bb1b690b06851143b1cb5104\"\n            }\n        }\n    },\n    \"id\": 4879\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"46f297f8-02a3-4023-8d8d-fed383461be7"}],"id":"87bd9713-13d9-4d80-9292-6294fb8ae829","_postman_id":"87bd9713-13d9-4d80-9292-6294fb8ae829","description":""},{"name":"Lite Account","item":[{"name":"Get Lite Account","id":"02373612-fbda-4220-9cd2-eb43764c737f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"query\",\n    \"params\": {\n        \"url\": \"\"\n    },\n    \"id\": 1829\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"jsonrpc\": \"2.0\",\n  \"method\": \"query\",\n  \"params\": {\n    \"url\": \"acc://fb6311a13d8bf3a8c33804cfef0d2d80b9459840322abe56/ACME\"\n  },\n  \"id\": 1829\n}j\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"type\": \"liteTokenAccount\",\n        \"mainChain\": {\n            \"height\": 1,\n            \"count\": 1,\n            \"roots\": [\n                \"57e85c956468049f3eaada7885d0ed106b195ef4a0f4a1a1687d56a6cc714cde\"\n            ]\n        },\n        \"merkleState\": {\n            \"height\": 1,\n            \"count\": 1,\n            \"roots\": [\n                \"57e85c956468049f3eaada7885d0ed106b195ef4a0f4a1a1687d56a6cc714cde\"\n            ]\n        },\n        \"chains\": [\n            {\n                \"name\": \"main\",\n                \"type\": \"transaction\",\n                \"height\": 1,\n                \"count\": 1,\n                \"roots\": [\n                    \"57e85c956468049f3eaada7885d0ed106b195ef4a0f4a1a1687d56a6cc714cde\"\n                ]\n            },\n            {\n                \"name\": \"main-index\",\n                \"type\": \"index\",\n                \"height\": 1,\n                \"count\": 1,\n                \"roots\": [\n                    \"02bfab0120000000000000000000000000000000000000000000000000000000\"\n                ]\n            }\n        ],\n        \"data\": {\n            \"type\": \"liteTokenAccount\",\n            \"url\": \"acc://0143b52490530b90eef9b1a2405e322c6badc1e90e200c56/ACME\",\n            \"tokenUrl\": \"acc://ACME\",\n            \"balance\": \"200000000000000\"\n        },\n        \"chainId\": \"d76aff2166264ffe1ac0085bfae65f0aae4dbe868d94cab2f6e937f46b973d01\"\n    },\n    \"id\": 1829\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"02373612-fbda-4220-9cd2-eb43764c737f"}],"id":"b5f3f8b2-131c-4eae-9418-fdb90619503e","_postman_id":"b5f3f8b2-131c-4eae-9418-fdb90619503e","description":""},{"name":"Keypage","item":[{"name":"Create Keypage","id":"75e8d823-9390-45aa-96d8-4d001c4443d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 0,\n    \"method\": \"create-key-page\",\n    \"params\": {\n        \"origin\":\"acc://pun123\",\n        \"sponsor\":\"acc://pun123\",\n        \"signer\":{\n            \"publicKey\":\"31c52df25166098c9f227e5bd4d39e1ef5c0ab9a6c4fcc327f27e3e38eab44b6\",\n            \"nonce\":1642419400242766\n        },\"signature\":\"215ecd3c35da005687fa8eb54139067c9f5bbfe5e200a5a5b54e0f43492cbbd0dba47ab8814a21124f264fd85a6e9d54688275550d3adc45a5bdd3c4c82f1508\",\n        \"keyPage\":{\"height\":1},\n        \"payload\":{\n            \"url\":\"acc://pun123/pg123\",\n            \"keys\":[{\"publicKey\":\"31c52df25166098c9f227e5bd4d39e1ef5c0ab9a6c4fcc327f27e3e38eab44b6\"}]\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://testnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n<tr>\n<td>publicKey</td>\n<td>String</td>\n<td>This is the public key used to verify the signed transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>Signature of the ADI signing the transaction</td>\n</tr>\n<tr>\n<td>signer</td>\n<td>String</td>\n<td>ADI signing this request</td>\n</tr>\n<tr>\n<td>height</td>\n<td>Int</td>\n<td></td>\n</tr>\n<tr>\n<td>sponsor</td>\n<td>String</td>\n<td>Transaction Hash</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>String</td>\n<td>The origin account</td>\n</tr>\n<tr>\n<td>nouce</td>\n<td>Int</td>\n<td>Uses timestamp</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Example</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 0,\n    \"method\": \"create-key-page\",\n    \"params\": {\n        \"origin\":\"acc://pun123\",\n        \"sponsor\":\"acc://pun123\",\n        \"signer\":{\n            \"publicKey\":\"31c52df25166098c9f227e5bd4d39e1ef5c0ab9a6c4fcc327f27e3e38eab44b6\",\n            \"nonce\":1642419400242766\n        },\"signature\":\"215ecd3c35da005687fa8eb54139067c9f5bbfe5e200a5a5b54e0f43492cbbd0dba47ab8814a21124f264fd85a6e9d54688275550d3adc45a5bdd3c4c82f1508\",\n        \"keyPage\":{\"height\":1},\n        \"payload\":{\n            \"url\":\"acc://pun123/pg123\",\n            \"keys\":[{\"publicKey\":\"31c52df25166098c9f227e5bd4d39e1ef5c0ab9a6c4fcc327f27e3e38eab44b6\"}]\n        }\n    }\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["testnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"75e8d823-9390-45aa-96d8-4d001c4443d9"}],"id":"4488bb3c-139e-4a7c-bc9a-dad5766b8388","_postman_id":"4488bb3c-139e-4a7c-bc9a-dad5766b8388","description":""},{"name":"Testnet Only","item":[{"name":"Faucet","item":[{"name":"Faucet","id":"277ebdfe-54b2-45ce-8c56-a8c1e1f5b6ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 0,\n    \"method\": \"faucet\",\n    \"params\": {\n        \"url\": \"\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://testnet.accumulatenetwork.io/v2","description":"<p>Get free ACME tokens for testnet and devnet only</p>\n<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 0,\n  \"method\": \"faucet\",\n  \"params\": {\n    \"url\": \"acc://94267661e2bf1ee0d5fd84c92d30605d41faaeaa55439511/ACME\"\n  }\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"transactionHash\": \"fc080eb2cff2d4249caa3b9e4c6fa9e0847cb2c4974383e36d09a8461c0e403a\",\n        \"txid\": \"acc://fc080eb2cff2d4249caa3b9e4c6fa9e0847cb2c4974383e36d09a8461c0e403a@7117c50f04f1254d56b704dc05298912deeb25dbc1d26ef6/ACME\",\n        \"signatureHashes\": [\n            \"ee3bc7bfdb31240b9025adae7e3c909ccc953ad2474edf28de45d5cfedbbef52\"\n        ],\n        \"simpleHash\": \"f4359aed23d5cad3a74dc2a5e64258e8250445884d229fb23ad5b74c9a4fb155\",\n        \"hash\": \"f4359aed23d5cad3a74dc2a5e64258e8250445884d229fb23ad5b74c9a4fb155\",\n        \"result\": {\n            \"txID\": \"acc://fc080eb2cff2d4249caa3b9e4c6fa9e0847cb2c4974383e36d09a8461c0e403a@7117c50f04f1254d56b704dc05298912deeb25dbc1d26ef6/ACME\",\n            \"result\": null,\n            \"signers\": null\n        }\n    },\n    \"id\": 4022\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["testnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"277ebdfe-54b2-45ce-8c56-a8c1e1f5b6ae"}],"id":"62997a14-6cb3-46d5-b5dd-12f505cf93ca","_postman_id":"62997a14-6cb3-46d5-b5dd-12f505cf93ca","description":""}],"id":"47eb2608-2da3-4070-970b-8f2d144f1d59","_postman_id":"47eb2608-2da3-4070-970b-8f2d144f1d59","description":""},{"name":"Describe","id":"d36d1a65-c357-4d42-b64c-fa11111ef111","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"describe\",\n    \"params\": {},\n    \"id\": 3990\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"d36d1a65-c357-4d42-b64c-fa11111ef111"},{"name":"Query","id":"5853fe5e-2f13-4018-bb34-8ef8cbfbe14e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 0,\n    \"method\": \"query\",\n    \"params\": {\n        \"url\": \"\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 0,\n  \"method\": \"query\",\n  \"params\": {\n    \"url\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\"\n  }\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"type\": \"liteTokenAccount\",\n        \"mainChain\": {\n            \"height\": 5,\n            \"count\": 5,\n            \"roots\": [\n                \"736c65fcec59eb59b4d78f1ccce076d1294bbe4ca1951751ef03b22b05e86bae\",\n                null,\n                \"660222c3f97abf8cad17071c779cbb37a193a48b07da9f968fb191a686d89265\"\n            ]\n        },\n        \"merkleState\": {\n            \"height\": 5,\n            \"count\": 5,\n            \"roots\": [\n                \"736c65fcec59eb59b4d78f1ccce076d1294bbe4ca1951751ef03b22b05e86bae\",\n                null,\n                \"660222c3f97abf8cad17071c779cbb37a193a48b07da9f968fb191a686d89265\"\n            ]\n        },\n        \"chains\": [\n            {\n                \"name\": \"main\",\n                \"type\": \"transaction\",\n                \"height\": 5,\n                \"count\": 5,\n                \"roots\": [\n                    \"736c65fcec59eb59b4d78f1ccce076d1294bbe4ca1951751ef03b22b05e86bae\",\n                    null,\n                    \"660222c3f97abf8cad17071c779cbb37a193a48b07da9f968fb191a686d89265\"\n                ]\n            },\n            {\n                \"name\": \"main-index\",\n                \"type\": \"index\",\n                \"height\": 5,\n                \"count\": 5,\n                \"roots\": [\n                    \"010402edeb0103f29f2320000000000000000000000000000000000000000000\",\n                    null,\n                    \"c5f89f8ee5fee6c8347976a6cfcb51f44ba8657e9d9150c852507bc76a1fc2ff\"\n                ]\n            },\n            {\n                \"name\": \"signature\",\n                \"type\": \"transaction\",\n                \"height\": 4,\n                \"count\": 4,\n                \"roots\": [\n                    null,\n                    null,\n                    \"d30cd8e3ee3a30472909087188525341d16296d65ded26efa8bd8af3c6334174\"\n                ]\n            }\n        ],\n        \"data\": {\n            \"type\": \"liteTokenAccount\",\n            \"url\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n            \"tokenUrl\": \"acc://ACME\",\n            \"balance\": \"986600000\"\n        },\n        \"chainId\": \"807bc19207eb442ff488b1fd99cd9c69586d03a8f1afec1c38ba624471a9ea77\"\n    },\n    \"id\": 0\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"5853fe5e-2f13-4018-bb34-8ef8cbfbe14e"},{"name":"Get History","id":"8628e886-f529-472f-ae2e-b4219eebffc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 0,\n    \"method\": \"query-tx-history\",\n    \"params\": {\n        \"url\": \"\",\n        \"count\": \n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 0,\n  \"method\": \"query-tx-history\",\n  \"params\": {\n    \"url\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n    \"count\": 2\n  }\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"type\": \"txHistory\",\n        \"items\": [\n            {\n                \"type\": \"syntheticDepositTokens\",\n                \"data\": {\n                    \"type\": \"syntheticDepositTokens\",\n                    \"cause\": \"acc://d50750b33416cadae0c98196001ac8f8625645407c972fa21ae2bc053b9bc733@7117c50f04f1254d56b704dc05298912deeb25dbc1d26ef6/ACME\",\n                    \"source\": \"acc://7117c50f04f1254d56b704dc05298912deeb25dbc1d26ef6/ACME\",\n                    \"initiator\": \"acc://7117c50f04f1254d56b704dc05298912deeb25dbc1d26ef6\",\n                    \"token\": \"acc://ACME\",\n                    \"amount\": \"1000000000\"\n                },\n                \"origin\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n                \"sponsor\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n                \"transactionHash\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\",\n                \"txid\": \"acc://6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887@a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n                \"transaction\": {\n                    \"header\": {\n                        \"principal\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n                        \"initiator\": \"12acbe1a4016f01249982db6b04becec8be0b9bbb7ae0f3b3962476095fb2339\"\n                    },\n                    \"body\": {\n                        \"type\": \"syntheticDepositTokens\",\n                        \"cause\": \"acc://d50750b33416cadae0c98196001ac8f8625645407c972fa21ae2bc053b9bc733@7117c50f04f1254d56b704dc05298912deeb25dbc1d26ef6/ACME\",\n                        \"source\": \"acc://7117c50f04f1254d56b704dc05298912deeb25dbc1d26ef6/ACME\",\n                        \"initiator\": \"acc://7117c50f04f1254d56b704dc05298912deeb25dbc1d26ef6\",\n                        \"token\": \"acc://ACME\",\n                        \"amount\": \"1000000000\"\n                    }\n                },\n                \"signatures\": [\n                    {\n                        \"type\": \"receipt\",\n                        \"sourceNetwork\": \"acc://bvn-BVN0.acme\",\n                        \"proof\": {\n                            \"start\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\",\n                            \"startIndex\": 1963,\n                            \"end\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\",\n                            \"endIndex\": 1963,\n                            \"anchor\": \"8536240d99608b5097ec6fb8da5cd86b9557790df67ae08cc348d059f464c786\",\n                            \"entries\": [\n                                {\n                                    \"hash\": \"6656fa493f8aa477cc633996bf2ce82d15a757118996dd9146d8f260d74ffa56\"\n                                },\n                                {\n                                    \"hash\": \"db05967a978e25740303b1bc3d40a9751f04f6e7474e8866cd6922aa720e38e7\"\n                                },\n                                {\n                                    \"hash\": \"807ae12d434f5ceb8bf0190ee4fdcfd7821ae8903dbed4ec2190e07b7657bd2c\"\n                                },\n                                {\n                                    \"hash\": \"15859f2127b9c701a440d5c25485ff3bfbec4451a8ac4b2ad1ac4b0a662206b6\"\n                                },\n                                {\n                                    \"hash\": \"f18e980826d9418f2f1422af21c2c6cc28191e8e24443117e3d753cdfdc37025\"\n                                },\n                                {\n                                    \"hash\": \"599b4aea3b6ebe856fc26ac8830e959c985b30a62f3cbab08b4d291361036246\"\n                                },\n                                {\n                                    \"hash\": \"6926a23d58c2c2c5ae8e1e9b12618649baebc13020376f8faba410e9c263f748\"\n                                },\n                                {\n                                    \"hash\": \"a42d9c0a2b45a6a89316d932470e5eeb79a27c22267cb66dee8cd7c825d5f2ff\"\n                                },\n                                {\n                                    \"hash\": \"d8fe6d821b6ad489fcf3b2a593b08ea9318c47d17e720ec04745137fe23da2ab\"\n                                },\n                                {\n                                    \"hash\": \"ec2795e6c021d1e6749b34b76edd7eca3e4e7f3ba8575f649feed1101a52c7e8\"\n                                },\n                                {\n                                    \"hash\": \"5cd6c0e0fcb24ed36f44dfdeb7e251e348bb116f5fc433961a9ccb4dcad9cc72\"\n                                },\n                                {\n                                    \"hash\": \"3cae050c3bc03beaa0fba8f6f123d8195437c1e5916cdf0f210bbd39e1d575d1\"\n                                },\n                                {\n                                    \"hash\": \"6f73db845b49a0e0dc3eab7dd0abc64fb3052659610b5db550891a7a47dfb0fd\"\n                                },\n                                {\n                                    \"hash\": \"8393adba5b3547db88813ac53691f9e36f2a7b36a88d2d43f1def4d53126716f\"\n                                },\n                                {\n                                    \"hash\": \"01321e4083ee675e4a9e002d44ca4737bddf20bbd7f26b453cffa57938f6ce66\"\n                                },\n                                {\n                                    \"hash\": \"ad468c6b73861d3da71e8bfcbc9b494f561ebc29d089f88485586f1528490bdf\"\n                                },\n                                {\n                                    \"hash\": \"56d92a76520babcf49038db8bcd69b87644761925d7af9e4cc00f7fc3bdcc881\"\n                                },\n                                {\n                                    \"hash\": \"394bc8f111d17c4624faf0824a44da269d649a3da3e65c1f0c8a62438744e24c\"\n                                },\n                                {\n                                    \"hash\": \"01b6d2c1d0c4150ffe2984496e848b88c7eae20820aaa7be2576704579cad600\"\n                                }\n                            ]\n                        },\n                        \"transactionHash\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\"\n                    },\n                    {\n                        \"type\": \"partition\",\n                        \"sourceNetwork\": \"acc://bvn-BVN0.acme\",\n                        \"destinationNetwork\": \"acc://bvn-BVN1.acme\",\n                        \"sequenceNumber\": 439,\n                        \"transactionHash\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\"\n                    },\n                    {\n                        \"type\": \"receipt\",\n                        \"sourceNetwork\": \"acc://dn.acme\",\n                        \"proof\": {\n                            \"start\": \"8536240d99608b5097ec6fb8da5cd86b9557790df67ae08cc348d059f464c786\",\n                            \"startIndex\": 1785,\n                            \"end\": \"8536240d99608b5097ec6fb8da5cd86b9557790df67ae08cc348d059f464c786\",\n                            \"endIndex\": 1785,\n                            \"anchor\": \"1b161ed1820975dea9f61c5bd5ec17b0e1e82eee15554600d26fb2e76dc36156\",\n                            \"entries\": [\n                                {\n                                    \"hash\": \"243307cc21dd76a8c89eb19f050b3a0b315387ebcb5b83bd96b5e046f5dc3086\"\n                                },\n                                {\n                                    \"hash\": \"a277a1b293c84c60a7a075d997e432620d62b78ea91c8106a64f2e014877b35b\"\n                                },\n                                {\n                                    \"hash\": \"a0dabf030627377b8ae3f960e5af377899529b98b7b7997a2f15296424d33a97\"\n                                },\n                                {\n                                    \"hash\": \"1430e9898be5fe063211209cecff7bf80f30cfcd28365eff9d222f60568887ca\"\n                                },\n                                {\n                                    \"hash\": \"26c878764d18032dd497c99c501f0eaeb50810f6d9b7616653a5bad2f5ba0a71\"\n                                },\n                                {\n                                    \"hash\": \"44e3b49d585bd034b409c98421bf78f5ac9ee4e172c4ed4551bf356e5192d54c\"\n                                },\n                                {\n                                    \"hash\": \"ae19a2cc338d8af5bd7e3d8e8d46ba96abdd9042b04f03d0a4ea0d70ca9e5192\"\n                                },\n                                {\n                                    \"hash\": \"0beccfe1a4860f5d827611b2ff976951c427cdf70bfa415040e435230be536c6\"\n                                },\n                                {\n                                    \"right\": true,\n                                    \"hash\": \"5287d52423c525e662468a5cfee97d5380962988f33331725a9f65e6f0631147\"\n                                },\n                                {\n                                    \"right\": true,\n                                    \"hash\": \"af479a4f885f9fbfe1d7ec50d3dfe61e1f0144a2f6c2f7c714855f813af70640\"\n                                },\n                                {\n                                    \"hash\": \"83e16ea50298a37d0c4287fca0f647b478b74058176abf224d3f5ec632ef8192\"\n                                },\n                                {\n                                    \"hash\": \"346998056025612c29650184097d735d132f074b1bbf11c69dee038a2ff01ac7\"\n                                },\n                                {\n                                    \"hash\": \"a86194ed004b56b09168f8830d78ff99b4eea6c34844481693d35e0c23095f6b\"\n                                },\n                                {\n                                    \"hash\": \"3fbbc1595556a4d330ef9820b5668436ce58c23653913509d21936a5ee111315\"\n                                },\n                                {\n                                    \"hash\": \"555deccc0dd8b73acdfc2c444c00933e1b520aa2c2ad61479aee9d0e18508068\"\n                                },\n                                {\n                                    \"hash\": \"960d762556dc586c6ada6e704d4455094979a016e5f656f889b0fa14bdb92eeb\"\n                                },\n                                {\n                                    \"hash\": \"cd053ce78293403bbba99ac9035ff885b943bffee640fad944092ff1c12d4690\"\n                                },\n                                {\n                                    \"hash\": \"fd01302d6da56b10823e6eb7b20dc52961b465ff3a2015010e82a5845ee19fea\"\n                                },\n                                {\n                                    \"hash\": \"e2bb0450685b2d7aab637e2d44cb0ca6b024df61f69a2399366a232f9760df35\"\n                                }\n                            ]\n                        },\n                        \"transactionHash\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\"\n                    },\n                    {\n                        \"type\": \"ed25519\",\n                        \"publicKey\": \"5cbaaff2b20040cb9742ff8777d1b929cee266c50aa48a5b0a16e8661c5d9e2d\",\n                        \"signature\": \"c0ff33bd084dcdffd22724161bb1686b991a87406f0a108bbb47ba33fe141773dc8a4572f8b51760fa987c940370db793583969b246151f6726aa3c4108b500c\",\n                        \"signer\": \"acc://dn.acme/network\",\n                        \"signerVersion\": 42,\n                        \"timestamp\": 1,\n                        \"transactionHash\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\"\n                    }\n                ],\n                \"status\": {\n                    \"txID\": \"acc://6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887@a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n                    \"code\": \"delivered\",\n                    \"delivered\": true,\n                    \"codeNum\": 201,\n                    \"result\": {\n                        \"type\": \"unknown\"\n                    },\n                    \"received\": 576986,\n                    \"initiator\": \"acc://dn.acme/network\",\n                    \"signers\": [\n                        {\n                            \"type\": \"unknownSigner\",\n                            \"url\": \"acc://dn.acme/network\",\n                            \"version\": 42\n                        }\n                    ],\n                    \"sourceNetwork\": \"acc://bvn-BVN0.acme\",\n                    \"destinationNetwork\": \"acc://bvn-BVN1.acme\",\n                    \"sequenceNumber\": 439,\n                    \"gotDirectoryReceipt\": true,\n                    \"proof\": {\n                        \"start\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\",\n                        \"startIndex\": 1963,\n                        \"end\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\",\n                        \"endIndex\": 1963,\n                        \"anchor\": \"1b161ed1820975dea9f61c5bd5ec17b0e1e82eee15554600d26fb2e76dc36156\",\n                        \"entries\": [\n                            {\n                                \"hash\": \"6656fa493f8aa477cc633996bf2ce82d15a757118996dd9146d8f260d74ffa56\"\n                            },\n                            {\n                                \"hash\": \"db05967a978e25740303b1bc3d40a9751f04f6e7474e8866cd6922aa720e38e7\"\n                            },\n                            {\n                                \"hash\": \"807ae12d434f5ceb8bf0190ee4fdcfd7821ae8903dbed4ec2190e07b7657bd2c\"\n                            },\n                            {\n                                \"hash\": \"15859f2127b9c701a440d5c25485ff3bfbec4451a8ac4b2ad1ac4b0a662206b6\"\n                            },\n                            {\n                                \"hash\": \"f18e980826d9418f2f1422af21c2c6cc28191e8e24443117e3d753cdfdc37025\"\n                            },\n                            {\n                                \"hash\": \"599b4aea3b6ebe856fc26ac8830e959c985b30a62f3cbab08b4d291361036246\"\n                            },\n                            {\n                                \"hash\": \"6926a23d58c2c2c5ae8e1e9b12618649baebc13020376f8faba410e9c263f748\"\n                            },\n                            {\n                                \"hash\": \"a42d9c0a2b45a6a89316d932470e5eeb79a27c22267cb66dee8cd7c825d5f2ff\"\n                            },\n                            {\n                                \"hash\": \"d8fe6d821b6ad489fcf3b2a593b08ea9318c47d17e720ec04745137fe23da2ab\"\n                            },\n                            {\n                                \"hash\": \"ec2795e6c021d1e6749b34b76edd7eca3e4e7f3ba8575f649feed1101a52c7e8\"\n                            },\n                            {\n                                \"hash\": \"5cd6c0e0fcb24ed36f44dfdeb7e251e348bb116f5fc433961a9ccb4dcad9cc72\"\n                            },\n                            {\n                                \"hash\": \"3cae050c3bc03beaa0fba8f6f123d8195437c1e5916cdf0f210bbd39e1d575d1\"\n                            },\n                            {\n                                \"hash\": \"6f73db845b49a0e0dc3eab7dd0abc64fb3052659610b5db550891a7a47dfb0fd\"\n                            },\n                            {\n                                \"hash\": \"8393adba5b3547db88813ac53691f9e36f2a7b36a88d2d43f1def4d53126716f\"\n                            },\n                            {\n                                \"hash\": \"01321e4083ee675e4a9e002d44ca4737bddf20bbd7f26b453cffa57938f6ce66\"\n                            },\n                            {\n                                \"hash\": \"ad468c6b73861d3da71e8bfcbc9b494f561ebc29d089f88485586f1528490bdf\"\n                            },\n                            {\n                                \"hash\": \"56d92a76520babcf49038db8bcd69b87644761925d7af9e4cc00f7fc3bdcc881\"\n                            },\n                            {\n                                \"hash\": \"394bc8f111d17c4624faf0824a44da269d649a3da3e65c1f0c8a62438744e24c\"\n                            },\n                            {\n                                \"hash\": \"01b6d2c1d0c4150ffe2984496e848b88c7eae20820aaa7be2576704579cad600\"\n                            },\n                            {\n                                \"hash\": \"243307cc21dd76a8c89eb19f050b3a0b315387ebcb5b83bd96b5e046f5dc3086\"\n                            },\n                            {\n                                \"hash\": \"a277a1b293c84c60a7a075d997e432620d62b78ea91c8106a64f2e014877b35b\"\n                            },\n                            {\n                                \"hash\": \"a0dabf030627377b8ae3f960e5af377899529b98b7b7997a2f15296424d33a97\"\n                            },\n                            {\n                                \"hash\": \"1430e9898be5fe063211209cecff7bf80f30cfcd28365eff9d222f60568887ca\"\n                            },\n                            {\n                                \"hash\": \"26c878764d18032dd497c99c501f0eaeb50810f6d9b7616653a5bad2f5ba0a71\"\n                            },\n                            {\n                                \"hash\": \"44e3b49d585bd034b409c98421bf78f5ac9ee4e172c4ed4551bf356e5192d54c\"\n                            },\n                            {\n                                \"hash\": \"ae19a2cc338d8af5bd7e3d8e8d46ba96abdd9042b04f03d0a4ea0d70ca9e5192\"\n                            },\n                            {\n                                \"hash\": \"0beccfe1a4860f5d827611b2ff976951c427cdf70bfa415040e435230be536c6\"\n                            },\n                            {\n                                \"right\": true,\n                                \"hash\": \"5287d52423c525e662468a5cfee97d5380962988f33331725a9f65e6f0631147\"\n                            },\n                            {\n                                \"right\": true,\n                                \"hash\": \"af479a4f885f9fbfe1d7ec50d3dfe61e1f0144a2f6c2f7c714855f813af70640\"\n                            },\n                            {\n                                \"hash\": \"83e16ea50298a37d0c4287fca0f647b478b74058176abf224d3f5ec632ef8192\"\n                            },\n                            {\n                                \"hash\": \"346998056025612c29650184097d735d132f074b1bbf11c69dee038a2ff01ac7\"\n                            },\n                            {\n                                \"hash\": \"a86194ed004b56b09168f8830d78ff99b4eea6c34844481693d35e0c23095f6b\"\n                            },\n                            {\n                                \"hash\": \"3fbbc1595556a4d330ef9820b5668436ce58c23653913509d21936a5ee111315\"\n                            },\n                            {\n                                \"hash\": \"555deccc0dd8b73acdfc2c444c00933e1b520aa2c2ad61479aee9d0e18508068\"\n                            },\n                            {\n                                \"hash\": \"960d762556dc586c6ada6e704d4455094979a016e5f656f889b0fa14bdb92eeb\"\n                            },\n                            {\n                                \"hash\": \"cd053ce78293403bbba99ac9035ff885b943bffee640fad944092ff1c12d4690\"\n                            },\n                            {\n                                \"hash\": \"fd01302d6da56b10823e6eb7b20dc52961b465ff3a2015010e82a5845ee19fea\"\n                            },\n                            {\n                                \"hash\": \"e2bb0450685b2d7aab637e2d44cb0ca6b024df61f69a2399366a232f9760df35\"\n                            }\n                        ]\n                    }\n                },\n                \"signatureBooks\": [\n                    {\n                        \"authority\": \"acc://dn.acme/network\",\n                        \"pages\": [\n                            {\n                                \"signer\": {\n                                    \"type\": \"unknownSigner\",\n                                    \"url\": \"acc://dn.acme/network\"\n                                },\n                                \"signatures\": [\n                                    {\n                                        \"type\": \"receipt\",\n                                        \"sourceNetwork\": \"acc://bvn-BVN0.acme\",\n                                        \"proof\": {\n                                            \"start\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\",\n                                            \"startIndex\": 1963,\n                                            \"end\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\",\n                                            \"endIndex\": 1963,\n                                            \"anchor\": \"8536240d99608b5097ec6fb8da5cd86b9557790df67ae08cc348d059f464c786\",\n                                            \"entries\": [\n                                                {\n                                                    \"hash\": \"6656fa493f8aa477cc633996bf2ce82d15a757118996dd9146d8f260d74ffa56\"\n                                                },\n                                                {\n                                                    \"hash\": \"db05967a978e25740303b1bc3d40a9751f04f6e7474e8866cd6922aa720e38e7\"\n                                                },\n                                                {\n                                                    \"hash\": \"807ae12d434f5ceb8bf0190ee4fdcfd7821ae8903dbed4ec2190e07b7657bd2c\"\n                                                },\n                                                {\n                                                    \"hash\": \"15859f2127b9c701a440d5c25485ff3bfbec4451a8ac4b2ad1ac4b0a662206b6\"\n                                                },\n                                                {\n                                                    \"hash\": \"f18e980826d9418f2f1422af21c2c6cc28191e8e24443117e3d753cdfdc37025\"\n                                                },\n                                                {\n                                                    \"hash\": \"599b4aea3b6ebe856fc26ac8830e959c985b30a62f3cbab08b4d291361036246\"\n                                                },\n                                                {\n                                                    \"hash\": \"6926a23d58c2c2c5ae8e1e9b12618649baebc13020376f8faba410e9c263f748\"\n                                                },\n                                                {\n                                                    \"hash\": \"a42d9c0a2b45a6a89316d932470e5eeb79a27c22267cb66dee8cd7c825d5f2ff\"\n                                                },\n                                                {\n                                                    \"hash\": \"d8fe6d821b6ad489fcf3b2a593b08ea9318c47d17e720ec04745137fe23da2ab\"\n                                                },\n                                                {\n                                                    \"hash\": \"ec2795e6c021d1e6749b34b76edd7eca3e4e7f3ba8575f649feed1101a52c7e8\"\n                                                },\n                                                {\n                                                    \"hash\": \"5cd6c0e0fcb24ed36f44dfdeb7e251e348bb116f5fc433961a9ccb4dcad9cc72\"\n                                                },\n                                                {\n                                                    \"hash\": \"3cae050c3bc03beaa0fba8f6f123d8195437c1e5916cdf0f210bbd39e1d575d1\"\n                                                },\n                                                {\n                                                    \"hash\": \"6f73db845b49a0e0dc3eab7dd0abc64fb3052659610b5db550891a7a47dfb0fd\"\n                                                },\n                                                {\n                                                    \"hash\": \"8393adba5b3547db88813ac53691f9e36f2a7b36a88d2d43f1def4d53126716f\"\n                                                },\n                                                {\n                                                    \"hash\": \"01321e4083ee675e4a9e002d44ca4737bddf20bbd7f26b453cffa57938f6ce66\"\n                                                },\n                                                {\n                                                    \"hash\": \"ad468c6b73861d3da71e8bfcbc9b494f561ebc29d089f88485586f1528490bdf\"\n                                                },\n                                                {\n                                                    \"hash\": \"56d92a76520babcf49038db8bcd69b87644761925d7af9e4cc00f7fc3bdcc881\"\n                                                },\n                                                {\n                                                    \"hash\": \"394bc8f111d17c4624faf0824a44da269d649a3da3e65c1f0c8a62438744e24c\"\n                                                },\n                                                {\n                                                    \"hash\": \"01b6d2c1d0c4150ffe2984496e848b88c7eae20820aaa7be2576704579cad600\"\n                                                }\n                                            ]\n                                        },\n                                        \"transactionHash\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\"\n                                    },\n                                    {\n                                        \"type\": \"partition\",\n                                        \"sourceNetwork\": \"acc://bvn-BVN0.acme\",\n                                        \"destinationNetwork\": \"acc://bvn-BVN1.acme\",\n                                        \"sequenceNumber\": 439,\n                                        \"transactionHash\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\"\n                                    },\n                                    {\n                                        \"type\": \"receipt\",\n                                        \"sourceNetwork\": \"acc://dn.acme\",\n                                        \"proof\": {\n                                            \"start\": \"8536240d99608b5097ec6fb8da5cd86b9557790df67ae08cc348d059f464c786\",\n                                            \"startIndex\": 1785,\n                                            \"end\": \"8536240d99608b5097ec6fb8da5cd86b9557790df67ae08cc348d059f464c786\",\n                                            \"endIndex\": 1785,\n                                            \"anchor\": \"1b161ed1820975dea9f61c5bd5ec17b0e1e82eee15554600d26fb2e76dc36156\",\n                                            \"entries\": [\n                                                {\n                                                    \"hash\": \"243307cc21dd76a8c89eb19f050b3a0b315387ebcb5b83bd96b5e046f5dc3086\"\n                                                },\n                                                {\n                                                    \"hash\": \"a277a1b293c84c60a7a075d997e432620d62b78ea91c8106a64f2e014877b35b\"\n                                                },\n                                                {\n                                                    \"hash\": \"a0dabf030627377b8ae3f960e5af377899529b98b7b7997a2f15296424d33a97\"\n                                                },\n                                                {\n                                                    \"hash\": \"1430e9898be5fe063211209cecff7bf80f30cfcd28365eff9d222f60568887ca\"\n                                                },\n                                                {\n                                                    \"hash\": \"26c878764d18032dd497c99c501f0eaeb50810f6d9b7616653a5bad2f5ba0a71\"\n                                                },\n                                                {\n                                                    \"hash\": \"44e3b49d585bd034b409c98421bf78f5ac9ee4e172c4ed4551bf356e5192d54c\"\n                                                },\n                                                {\n                                                    \"hash\": \"ae19a2cc338d8af5bd7e3d8e8d46ba96abdd9042b04f03d0a4ea0d70ca9e5192\"\n                                                },\n                                                {\n                                                    \"hash\": \"0beccfe1a4860f5d827611b2ff976951c427cdf70bfa415040e435230be536c6\"\n                                                },\n                                                {\n                                                    \"right\": true,\n                                                    \"hash\": \"5287d52423c525e662468a5cfee97d5380962988f33331725a9f65e6f0631147\"\n                                                },\n                                                {\n                                                    \"right\": true,\n                                                    \"hash\": \"af479a4f885f9fbfe1d7ec50d3dfe61e1f0144a2f6c2f7c714855f813af70640\"\n                                                },\n                                                {\n                                                    \"hash\": \"83e16ea50298a37d0c4287fca0f647b478b74058176abf224d3f5ec632ef8192\"\n                                                },\n                                                {\n                                                    \"hash\": \"346998056025612c29650184097d735d132f074b1bbf11c69dee038a2ff01ac7\"\n                                                },\n                                                {\n                                                    \"hash\": \"a86194ed004b56b09168f8830d78ff99b4eea6c34844481693d35e0c23095f6b\"\n                                                },\n                                                {\n                                                    \"hash\": \"3fbbc1595556a4d330ef9820b5668436ce58c23653913509d21936a5ee111315\"\n                                                },\n                                                {\n                                                    \"hash\": \"555deccc0dd8b73acdfc2c444c00933e1b520aa2c2ad61479aee9d0e18508068\"\n                                                },\n                                                {\n                                                    \"hash\": \"960d762556dc586c6ada6e704d4455094979a016e5f656f889b0fa14bdb92eeb\"\n                                                },\n                                                {\n                                                    \"hash\": \"cd053ce78293403bbba99ac9035ff885b943bffee640fad944092ff1c12d4690\"\n                                                },\n                                                {\n                                                    \"hash\": \"fd01302d6da56b10823e6eb7b20dc52961b465ff3a2015010e82a5845ee19fea\"\n                                                },\n                                                {\n                                                    \"hash\": \"e2bb0450685b2d7aab637e2d44cb0ca6b024df61f69a2399366a232f9760df35\"\n                                                }\n                                            ]\n                                        },\n                                        \"transactionHash\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\"\n                                    },\n                                    {\n                                        \"type\": \"ed25519\",\n                                        \"publicKey\": \"5cbaaff2b20040cb9742ff8777d1b929cee266c50aa48a5b0a16e8661c5d9e2d\",\n                                        \"signature\": \"c0ff33bd084dcdffd22724161bb1686b991a87406f0a108bbb47ba33fe141773dc8a4572f8b51760fa987c940370db793583969b246151f6726aa3c4108b500c\",\n                                        \"signer\": \"acc://dn.acme/network\",\n                                        \"signerVersion\": 42,\n                                        \"timestamp\": 1,\n                                        \"transactionHash\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\"\n                                    }\n                                ]\n                            }\n                        ]\n                    }\n                ]\n            },\n            {\n                \"type\": \"addCredits\",\n                \"data\": {\n                    \"type\": \"addCredits\",\n                    \"recipient\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n                    \"amount\": \"200000\",\n                    \"oracle\": 50000000\n                },\n                \"origin\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n                \"sponsor\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n                \"transactionHash\": \"d38693d8425f602f5978d8b5af61226789d9bc4b32b729d2dd9a428b4c3ea9c4\",\n                \"txid\": \"acc://d38693d8425f602f5978d8b5af61226789d9bc4b32b729d2dd9a428b4c3ea9c4@a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n                \"transaction\": {\n                    \"header\": {\n                        \"principal\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n                        \"initiator\": \"7afdc7bb86dc3d9aa116112434bd324f463af4d10d14a1d08d2fe7fb8aedb9a3\"\n                    },\n                    \"body\": {\n                        \"type\": \"addCredits\",\n                        \"recipient\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n                        \"amount\": \"200000\",\n                        \"oracle\": 50000000\n                    }\n                },\n                \"signatures\": [\n                    {\n                        \"type\": \"ed25519\",\n                        \"publicKey\": \"7abd943bacf33397d2c63a92e6bbb6f5bcaf46469dfec5e2020b535be2abe227\",\n                        \"signature\": \"e5ce76d88af4f1b13469c48f9d5b15df886266a42e73ed5eed5738153cb5caf1261b26bf666c26fc76d5444b030ad54f9d783af8ff94784068957d1b8079cc09\",\n                        \"signer\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b\",\n                        \"signerVersion\": 1,\n                        \"timestamp\": 1665672488285,\n                        \"transactionHash\": \"d38693d8425f602f5978d8b5af61226789d9bc4b32b729d2dd9a428b4c3ea9c4\"\n                    }\n                ],\n                \"status\": {\n                    \"txID\": \"acc://d38693d8425f602f5978d8b5af61226789d9bc4b32b729d2dd9a428b4c3ea9c4@a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n                    \"code\": \"delivered\",\n                    \"delivered\": true,\n                    \"codeNum\": 201,\n                    \"result\": {\n                        \"type\": \"addCredits\",\n                        \"amount\": \"200000\",\n                        \"credits\": 100000,\n                        \"oracle\": 50000000\n                    },\n                    \"received\": 577038,\n                    \"initiator\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b\",\n                    \"signers\": [\n                        {\n                            \"type\": \"liteIdentity\",\n                            \"url\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b\",\n                            \"lastUsedOn\": 1665672488285\n                        }\n                    ]\n                },\n                \"produced\": [\n                    \"acc://0b0c0a9340c3260ae101b43f61913d7ad6eb14c40d0669ea79fbd9a2cf82b115@a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b\"\n                ],\n                \"syntheticTxids\": [\n                    \"acc://0b0c0a9340c3260ae101b43f61913d7ad6eb14c40d0669ea79fbd9a2cf82b115@a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b\"\n                ],\n                \"signatureBooks\": [\n                    {\n                        \"authority\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b\",\n                        \"pages\": [\n                            {\n                                \"signer\": {\n                                    \"type\": \"liteIdentity\",\n                                    \"url\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b\"\n                                },\n                                \"signatures\": [\n                                    {\n                                        \"type\": \"ed25519\",\n                                        \"publicKey\": \"7abd943bacf33397d2c63a92e6bbb6f5bcaf46469dfec5e2020b535be2abe227\",\n                                        \"signature\": \"e5ce76d88af4f1b13469c48f9d5b15df886266a42e73ed5eed5738153cb5caf1261b26bf666c26fc76d5444b030ad54f9d783af8ff94784068957d1b8079cc09\",\n                                        \"signer\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b\",\n                                        \"signerVersion\": 1,\n                                        \"timestamp\": 1665672488285,\n                                        \"transactionHash\": \"d38693d8425f602f5978d8b5af61226789d9bc4b32b729d2dd9a428b4c3ea9c4\"\n                                    }\n                                ]\n                            }\n                        ]\n                    }\n                ]\n            }\n        ],\n        \"start\": 0,\n        \"count\": 2,\n        \"total\": 5\n    },\n    \"id\": 0\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"8628e886-f529-472f-ae2e-b4219eebffc3"},{"name":"Get Transaction","id":"6eb554d6-d8ed-412c-8aa2-d0e6508e3706","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 0,\n    \"method\": \"query-tx\",\n    \"params\": {\n        \"txid\": \"\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>txid</td>\n<td>String</td>\n<td>Transaction id</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 0,\n  \"method\": \"query-tx\",\n  \"params\": {\n    \"txid\": \"321ca61d60ef927bba1471be2cad06b2d04b0deb79174f8e68f135e84670dc9f\"\n  }\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"type\": \"syntheticDepositTokens\",\n        \"data\": {\n            \"amount\": \"1000000000\",\n            \"cause\": \"acc://d50750b33416cadae0c98196001ac8f8625645407c972fa21ae2bc053b9bc733@7117c50f04f1254d56b704dc05298912deeb25dbc1d26ef6/ACME\",\n            \"initiator\": \"acc://7117c50f04f1254d56b704dc05298912deeb25dbc1d26ef6\",\n            \"source\": \"acc://7117c50f04f1254d56b704dc05298912deeb25dbc1d26ef6/ACME\",\n            \"token\": \"acc://ACME\",\n            \"type\": \"syntheticDepositTokens\"\n        },\n        \"origin\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n        \"sponsor\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n        \"transactionHash\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\",\n        \"txid\": \"acc://6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887@a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n        \"transaction\": {\n            \"header\": {\n                \"principal\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n                \"initiator\": \"12acbe1a4016f01249982db6b04becec8be0b9bbb7ae0f3b3962476095fb2339\"\n            },\n            \"body\": {\n                \"type\": \"syntheticDepositTokens\",\n                \"cause\": \"acc://d50750b33416cadae0c98196001ac8f8625645407c972fa21ae2bc053b9bc733@7117c50f04f1254d56b704dc05298912deeb25dbc1d26ef6/ACME\",\n                \"source\": \"acc://7117c50f04f1254d56b704dc05298912deeb25dbc1d26ef6/ACME\",\n                \"initiator\": \"acc://7117c50f04f1254d56b704dc05298912deeb25dbc1d26ef6\",\n                \"token\": \"acc://ACME\",\n                \"amount\": \"1000000000\"\n            }\n        },\n        \"signatures\": [\n            {\n                \"type\": \"receipt\",\n                \"sourceNetwork\": \"acc://bvn-BVN0.acme\",\n                \"proof\": {\n                    \"start\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\",\n                    \"startIndex\": 1963,\n                    \"end\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\",\n                    \"endIndex\": 1963,\n                    \"anchor\": \"8536240d99608b5097ec6fb8da5cd86b9557790df67ae08cc348d059f464c786\",\n                    \"entries\": [\n                        {\n                            \"hash\": \"6656fa493f8aa477cc633996bf2ce82d15a757118996dd9146d8f260d74ffa56\"\n                        },\n                        {\n                            \"hash\": \"db05967a978e25740303b1bc3d40a9751f04f6e7474e8866cd6922aa720e38e7\"\n                        },\n                        {\n                            \"hash\": \"807ae12d434f5ceb8bf0190ee4fdcfd7821ae8903dbed4ec2190e07b7657bd2c\"\n                        },\n                        {\n                            \"hash\": \"15859f2127b9c701a440d5c25485ff3bfbec4451a8ac4b2ad1ac4b0a662206b6\"\n                        },\n                        {\n                            \"hash\": \"f18e980826d9418f2f1422af21c2c6cc28191e8e24443117e3d753cdfdc37025\"\n                        },\n                        {\n                            \"hash\": \"599b4aea3b6ebe856fc26ac8830e959c985b30a62f3cbab08b4d291361036246\"\n                        },\n                        {\n                            \"hash\": \"6926a23d58c2c2c5ae8e1e9b12618649baebc13020376f8faba410e9c263f748\"\n                        },\n                        {\n                            \"hash\": \"a42d9c0a2b45a6a89316d932470e5eeb79a27c22267cb66dee8cd7c825d5f2ff\"\n                        },\n                        {\n                            \"hash\": \"d8fe6d821b6ad489fcf3b2a593b08ea9318c47d17e720ec04745137fe23da2ab\"\n                        },\n                        {\n                            \"hash\": \"ec2795e6c021d1e6749b34b76edd7eca3e4e7f3ba8575f649feed1101a52c7e8\"\n                        },\n                        {\n                            \"hash\": \"5cd6c0e0fcb24ed36f44dfdeb7e251e348bb116f5fc433961a9ccb4dcad9cc72\"\n                        },\n                        {\n                            \"hash\": \"3cae050c3bc03beaa0fba8f6f123d8195437c1e5916cdf0f210bbd39e1d575d1\"\n                        },\n                        {\n                            \"hash\": \"6f73db845b49a0e0dc3eab7dd0abc64fb3052659610b5db550891a7a47dfb0fd\"\n                        },\n                        {\n                            \"hash\": \"8393adba5b3547db88813ac53691f9e36f2a7b36a88d2d43f1def4d53126716f\"\n                        },\n                        {\n                            \"hash\": \"01321e4083ee675e4a9e002d44ca4737bddf20bbd7f26b453cffa57938f6ce66\"\n                        },\n                        {\n                            \"hash\": \"ad468c6b73861d3da71e8bfcbc9b494f561ebc29d089f88485586f1528490bdf\"\n                        },\n                        {\n                            \"hash\": \"56d92a76520babcf49038db8bcd69b87644761925d7af9e4cc00f7fc3bdcc881\"\n                        },\n                        {\n                            \"hash\": \"394bc8f111d17c4624faf0824a44da269d649a3da3e65c1f0c8a62438744e24c\"\n                        },\n                        {\n                            \"hash\": \"01b6d2c1d0c4150ffe2984496e848b88c7eae20820aaa7be2576704579cad600\"\n                        }\n                    ]\n                },\n                \"transactionHash\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\"\n            },\n            {\n                \"type\": \"partition\",\n                \"sourceNetwork\": \"acc://bvn-BVN0.acme\",\n                \"destinationNetwork\": \"acc://bvn-BVN1.acme\",\n                \"sequenceNumber\": 439,\n                \"transactionHash\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\"\n            },\n            {\n                \"type\": \"receipt\",\n                \"sourceNetwork\": \"acc://dn.acme\",\n                \"proof\": {\n                    \"start\": \"8536240d99608b5097ec6fb8da5cd86b9557790df67ae08cc348d059f464c786\",\n                    \"startIndex\": 1785,\n                    \"end\": \"8536240d99608b5097ec6fb8da5cd86b9557790df67ae08cc348d059f464c786\",\n                    \"endIndex\": 1785,\n                    \"anchor\": \"1b161ed1820975dea9f61c5bd5ec17b0e1e82eee15554600d26fb2e76dc36156\",\n                    \"entries\": [\n                        {\n                            \"hash\": \"243307cc21dd76a8c89eb19f050b3a0b315387ebcb5b83bd96b5e046f5dc3086\"\n                        },\n                        {\n                            \"hash\": \"a277a1b293c84c60a7a075d997e432620d62b78ea91c8106a64f2e014877b35b\"\n                        },\n                        {\n                            \"hash\": \"a0dabf030627377b8ae3f960e5af377899529b98b7b7997a2f15296424d33a97\"\n                        },\n                        {\n                            \"hash\": \"1430e9898be5fe063211209cecff7bf80f30cfcd28365eff9d222f60568887ca\"\n                        },\n                        {\n                            \"hash\": \"26c878764d18032dd497c99c501f0eaeb50810f6d9b7616653a5bad2f5ba0a71\"\n                        },\n                        {\n                            \"hash\": \"44e3b49d585bd034b409c98421bf78f5ac9ee4e172c4ed4551bf356e5192d54c\"\n                        },\n                        {\n                            \"hash\": \"ae19a2cc338d8af5bd7e3d8e8d46ba96abdd9042b04f03d0a4ea0d70ca9e5192\"\n                        },\n                        {\n                            \"hash\": \"0beccfe1a4860f5d827611b2ff976951c427cdf70bfa415040e435230be536c6\"\n                        },\n                        {\n                            \"right\": true,\n                            \"hash\": \"5287d52423c525e662468a5cfee97d5380962988f33331725a9f65e6f0631147\"\n                        },\n                        {\n                            \"right\": true,\n                            \"hash\": \"af479a4f885f9fbfe1d7ec50d3dfe61e1f0144a2f6c2f7c714855f813af70640\"\n                        },\n                        {\n                            \"hash\": \"83e16ea50298a37d0c4287fca0f647b478b74058176abf224d3f5ec632ef8192\"\n                        },\n                        {\n                            \"hash\": \"346998056025612c29650184097d735d132f074b1bbf11c69dee038a2ff01ac7\"\n                        },\n                        {\n                            \"hash\": \"a86194ed004b56b09168f8830d78ff99b4eea6c34844481693d35e0c23095f6b\"\n                        },\n                        {\n                            \"hash\": \"3fbbc1595556a4d330ef9820b5668436ce58c23653913509d21936a5ee111315\"\n                        },\n                        {\n                            \"hash\": \"555deccc0dd8b73acdfc2c444c00933e1b520aa2c2ad61479aee9d0e18508068\"\n                        },\n                        {\n                            \"hash\": \"960d762556dc586c6ada6e704d4455094979a016e5f656f889b0fa14bdb92eeb\"\n                        },\n                        {\n                            \"hash\": \"cd053ce78293403bbba99ac9035ff885b943bffee640fad944092ff1c12d4690\"\n                        },\n                        {\n                            \"hash\": \"fd01302d6da56b10823e6eb7b20dc52961b465ff3a2015010e82a5845ee19fea\"\n                        },\n                        {\n                            \"hash\": \"e2bb0450685b2d7aab637e2d44cb0ca6b024df61f69a2399366a232f9760df35\"\n                        }\n                    ]\n                },\n                \"transactionHash\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\"\n            },\n            {\n                \"type\": \"ed25519\",\n                \"publicKey\": \"5cbaaff2b20040cb9742ff8777d1b929cee266c50aa48a5b0a16e8661c5d9e2d\",\n                \"signature\": \"c0ff33bd084dcdffd22724161bb1686b991a87406f0a108bbb47ba33fe141773dc8a4572f8b51760fa987c940370db793583969b246151f6726aa3c4108b500c\",\n                \"signer\": \"acc://dn.acme/network\",\n                \"signerVersion\": 42,\n                \"timestamp\": 1,\n                \"transactionHash\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\"\n            }\n        ],\n        \"status\": {\n            \"txID\": \"acc://6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887@a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\",\n            \"code\": \"delivered\",\n            \"delivered\": true,\n            \"codeNum\": 201,\n            \"result\": {\n                \"type\": \"unknown\"\n            },\n            \"received\": 576986,\n            \"initiator\": \"acc://dn.acme/network\",\n            \"signers\": [\n                {\n                    \"type\": \"unknownSigner\",\n                    \"url\": \"acc://dn.acme/network\",\n                    \"version\": 42\n                }\n            ],\n            \"sourceNetwork\": \"acc://bvn-BVN0.acme\",\n            \"destinationNetwork\": \"acc://bvn-BVN1.acme\",\n            \"sequenceNumber\": 439,\n            \"gotDirectoryReceipt\": true,\n            \"proof\": {\n                \"start\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\",\n                \"startIndex\": 1963,\n                \"end\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\",\n                \"endIndex\": 1963,\n                \"anchor\": \"1b161ed1820975dea9f61c5bd5ec17b0e1e82eee15554600d26fb2e76dc36156\",\n                \"entries\": [\n                    {\n                        \"hash\": \"6656fa493f8aa477cc633996bf2ce82d15a757118996dd9146d8f260d74ffa56\"\n                    },\n                    {\n                        \"hash\": \"db05967a978e25740303b1bc3d40a9751f04f6e7474e8866cd6922aa720e38e7\"\n                    },\n                    {\n                        \"hash\": \"807ae12d434f5ceb8bf0190ee4fdcfd7821ae8903dbed4ec2190e07b7657bd2c\"\n                    },\n                    {\n                        \"hash\": \"15859f2127b9c701a440d5c25485ff3bfbec4451a8ac4b2ad1ac4b0a662206b6\"\n                    },\n                    {\n                        \"hash\": \"f18e980826d9418f2f1422af21c2c6cc28191e8e24443117e3d753cdfdc37025\"\n                    },\n                    {\n                        \"hash\": \"599b4aea3b6ebe856fc26ac8830e959c985b30a62f3cbab08b4d291361036246\"\n                    },\n                    {\n                        \"hash\": \"6926a23d58c2c2c5ae8e1e9b12618649baebc13020376f8faba410e9c263f748\"\n                    },\n                    {\n                        \"hash\": \"a42d9c0a2b45a6a89316d932470e5eeb79a27c22267cb66dee8cd7c825d5f2ff\"\n                    },\n                    {\n                        \"hash\": \"d8fe6d821b6ad489fcf3b2a593b08ea9318c47d17e720ec04745137fe23da2ab\"\n                    },\n                    {\n                        \"hash\": \"ec2795e6c021d1e6749b34b76edd7eca3e4e7f3ba8575f649feed1101a52c7e8\"\n                    },\n                    {\n                        \"hash\": \"5cd6c0e0fcb24ed36f44dfdeb7e251e348bb116f5fc433961a9ccb4dcad9cc72\"\n                    },\n                    {\n                        \"hash\": \"3cae050c3bc03beaa0fba8f6f123d8195437c1e5916cdf0f210bbd39e1d575d1\"\n                    },\n                    {\n                        \"hash\": \"6f73db845b49a0e0dc3eab7dd0abc64fb3052659610b5db550891a7a47dfb0fd\"\n                    },\n                    {\n                        \"hash\": \"8393adba5b3547db88813ac53691f9e36f2a7b36a88d2d43f1def4d53126716f\"\n                    },\n                    {\n                        \"hash\": \"01321e4083ee675e4a9e002d44ca4737bddf20bbd7f26b453cffa57938f6ce66\"\n                    },\n                    {\n                        \"hash\": \"ad468c6b73861d3da71e8bfcbc9b494f561ebc29d089f88485586f1528490bdf\"\n                    },\n                    {\n                        \"hash\": \"56d92a76520babcf49038db8bcd69b87644761925d7af9e4cc00f7fc3bdcc881\"\n                    },\n                    {\n                        \"hash\": \"394bc8f111d17c4624faf0824a44da269d649a3da3e65c1f0c8a62438744e24c\"\n                    },\n                    {\n                        \"hash\": \"01b6d2c1d0c4150ffe2984496e848b88c7eae20820aaa7be2576704579cad600\"\n                    },\n                    {\n                        \"hash\": \"243307cc21dd76a8c89eb19f050b3a0b315387ebcb5b83bd96b5e046f5dc3086\"\n                    },\n                    {\n                        \"hash\": \"a277a1b293c84c60a7a075d997e432620d62b78ea91c8106a64f2e014877b35b\"\n                    },\n                    {\n                        \"hash\": \"a0dabf030627377b8ae3f960e5af377899529b98b7b7997a2f15296424d33a97\"\n                    },\n                    {\n                        \"hash\": \"1430e9898be5fe063211209cecff7bf80f30cfcd28365eff9d222f60568887ca\"\n                    },\n                    {\n                        \"hash\": \"26c878764d18032dd497c99c501f0eaeb50810f6d9b7616653a5bad2f5ba0a71\"\n                    },\n                    {\n                        \"hash\": \"44e3b49d585bd034b409c98421bf78f5ac9ee4e172c4ed4551bf356e5192d54c\"\n                    },\n                    {\n                        \"hash\": \"ae19a2cc338d8af5bd7e3d8e8d46ba96abdd9042b04f03d0a4ea0d70ca9e5192\"\n                    },\n                    {\n                        \"hash\": \"0beccfe1a4860f5d827611b2ff976951c427cdf70bfa415040e435230be536c6\"\n                    },\n                    {\n                        \"right\": true,\n                        \"hash\": \"5287d52423c525e662468a5cfee97d5380962988f33331725a9f65e6f0631147\"\n                    },\n                    {\n                        \"right\": true,\n                        \"hash\": \"af479a4f885f9fbfe1d7ec50d3dfe61e1f0144a2f6c2f7c714855f813af70640\"\n                    },\n                    {\n                        \"hash\": \"83e16ea50298a37d0c4287fca0f647b478b74058176abf224d3f5ec632ef8192\"\n                    },\n                    {\n                        \"hash\": \"346998056025612c29650184097d735d132f074b1bbf11c69dee038a2ff01ac7\"\n                    },\n                    {\n                        \"hash\": \"a86194ed004b56b09168f8830d78ff99b4eea6c34844481693d35e0c23095f6b\"\n                    },\n                    {\n                        \"hash\": \"3fbbc1595556a4d330ef9820b5668436ce58c23653913509d21936a5ee111315\"\n                    },\n                    {\n                        \"hash\": \"555deccc0dd8b73acdfc2c444c00933e1b520aa2c2ad61479aee9d0e18508068\"\n                    },\n                    {\n                        \"hash\": \"960d762556dc586c6ada6e704d4455094979a016e5f656f889b0fa14bdb92eeb\"\n                    },\n                    {\n                        \"hash\": \"cd053ce78293403bbba99ac9035ff885b943bffee640fad944092ff1c12d4690\"\n                    },\n                    {\n                        \"hash\": \"fd01302d6da56b10823e6eb7b20dc52961b465ff3a2015010e82a5845ee19fea\"\n                    },\n                    {\n                        \"hash\": \"e2bb0450685b2d7aab637e2d44cb0ca6b024df61f69a2399366a232f9760df35\"\n                    }\n                ]\n            }\n        },\n        \"signatureBooks\": [\n            {\n                \"authority\": \"acc://dn.acme/network\",\n                \"pages\": [\n                    {\n                        \"signer\": {\n                            \"type\": \"unknownSigner\",\n                            \"url\": \"acc://dn.acme/network\"\n                        },\n                        \"signatures\": [\n                            {\n                                \"type\": \"receipt\",\n                                \"sourceNetwork\": \"acc://bvn-BVN0.acme\",\n                                \"proof\": {\n                                    \"start\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\",\n                                    \"startIndex\": 1963,\n                                    \"end\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\",\n                                    \"endIndex\": 1963,\n                                    \"anchor\": \"8536240d99608b5097ec6fb8da5cd86b9557790df67ae08cc348d059f464c786\",\n                                    \"entries\": [\n                                        {\n                                            \"hash\": \"6656fa493f8aa477cc633996bf2ce82d15a757118996dd9146d8f260d74ffa56\"\n                                        },\n                                        {\n                                            \"hash\": \"db05967a978e25740303b1bc3d40a9751f04f6e7474e8866cd6922aa720e38e7\"\n                                        },\n                                        {\n                                            \"hash\": \"807ae12d434f5ceb8bf0190ee4fdcfd7821ae8903dbed4ec2190e07b7657bd2c\"\n                                        },\n                                        {\n                                            \"hash\": \"15859f2127b9c701a440d5c25485ff3bfbec4451a8ac4b2ad1ac4b0a662206b6\"\n                                        },\n                                        {\n                                            \"hash\": \"f18e980826d9418f2f1422af21c2c6cc28191e8e24443117e3d753cdfdc37025\"\n                                        },\n                                        {\n                                            \"hash\": \"599b4aea3b6ebe856fc26ac8830e959c985b30a62f3cbab08b4d291361036246\"\n                                        },\n                                        {\n                                            \"hash\": \"6926a23d58c2c2c5ae8e1e9b12618649baebc13020376f8faba410e9c263f748\"\n                                        },\n                                        {\n                                            \"hash\": \"a42d9c0a2b45a6a89316d932470e5eeb79a27c22267cb66dee8cd7c825d5f2ff\"\n                                        },\n                                        {\n                                            \"hash\": \"d8fe6d821b6ad489fcf3b2a593b08ea9318c47d17e720ec04745137fe23da2ab\"\n                                        },\n                                        {\n                                            \"hash\": \"ec2795e6c021d1e6749b34b76edd7eca3e4e7f3ba8575f649feed1101a52c7e8\"\n                                        },\n                                        {\n                                            \"hash\": \"5cd6c0e0fcb24ed36f44dfdeb7e251e348bb116f5fc433961a9ccb4dcad9cc72\"\n                                        },\n                                        {\n                                            \"hash\": \"3cae050c3bc03beaa0fba8f6f123d8195437c1e5916cdf0f210bbd39e1d575d1\"\n                                        },\n                                        {\n                                            \"hash\": \"6f73db845b49a0e0dc3eab7dd0abc64fb3052659610b5db550891a7a47dfb0fd\"\n                                        },\n                                        {\n                                            \"hash\": \"8393adba5b3547db88813ac53691f9e36f2a7b36a88d2d43f1def4d53126716f\"\n                                        },\n                                        {\n                                            \"hash\": \"01321e4083ee675e4a9e002d44ca4737bddf20bbd7f26b453cffa57938f6ce66\"\n                                        },\n                                        {\n                                            \"hash\": \"ad468c6b73861d3da71e8bfcbc9b494f561ebc29d089f88485586f1528490bdf\"\n                                        },\n                                        {\n                                            \"hash\": \"56d92a76520babcf49038db8bcd69b87644761925d7af9e4cc00f7fc3bdcc881\"\n                                        },\n                                        {\n                                            \"hash\": \"394bc8f111d17c4624faf0824a44da269d649a3da3e65c1f0c8a62438744e24c\"\n                                        },\n                                        {\n                                            \"hash\": \"01b6d2c1d0c4150ffe2984496e848b88c7eae20820aaa7be2576704579cad600\"\n                                        }\n                                    ]\n                                },\n                                \"transactionHash\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\"\n                            },\n                            {\n                                \"type\": \"partition\",\n                                \"sourceNetwork\": \"acc://bvn-BVN0.acme\",\n                                \"destinationNetwork\": \"acc://bvn-BVN1.acme\",\n                                \"sequenceNumber\": 439,\n                                \"transactionHash\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\"\n                            },\n                            {\n                                \"type\": \"receipt\",\n                                \"sourceNetwork\": \"acc://dn.acme\",\n                                \"proof\": {\n                                    \"start\": \"8536240d99608b5097ec6fb8da5cd86b9557790df67ae08cc348d059f464c786\",\n                                    \"startIndex\": 1785,\n                                    \"end\": \"8536240d99608b5097ec6fb8da5cd86b9557790df67ae08cc348d059f464c786\",\n                                    \"endIndex\": 1785,\n                                    \"anchor\": \"1b161ed1820975dea9f61c5bd5ec17b0e1e82eee15554600d26fb2e76dc36156\",\n                                    \"entries\": [\n                                        {\n                                            \"hash\": \"243307cc21dd76a8c89eb19f050b3a0b315387ebcb5b83bd96b5e046f5dc3086\"\n                                        },\n                                        {\n                                            \"hash\": \"a277a1b293c84c60a7a075d997e432620d62b78ea91c8106a64f2e014877b35b\"\n                                        },\n                                        {\n                                            \"hash\": \"a0dabf030627377b8ae3f960e5af377899529b98b7b7997a2f15296424d33a97\"\n                                        },\n                                        {\n                                            \"hash\": \"1430e9898be5fe063211209cecff7bf80f30cfcd28365eff9d222f60568887ca\"\n                                        },\n                                        {\n                                            \"hash\": \"26c878764d18032dd497c99c501f0eaeb50810f6d9b7616653a5bad2f5ba0a71\"\n                                        },\n                                        {\n                                            \"hash\": \"44e3b49d585bd034b409c98421bf78f5ac9ee4e172c4ed4551bf356e5192d54c\"\n                                        },\n                                        {\n                                            \"hash\": \"ae19a2cc338d8af5bd7e3d8e8d46ba96abdd9042b04f03d0a4ea0d70ca9e5192\"\n                                        },\n                                        {\n                                            \"hash\": \"0beccfe1a4860f5d827611b2ff976951c427cdf70bfa415040e435230be536c6\"\n                                        },\n                                        {\n                                            \"right\": true,\n                                            \"hash\": \"5287d52423c525e662468a5cfee97d5380962988f33331725a9f65e6f0631147\"\n                                        },\n                                        {\n                                            \"right\": true,\n                                            \"hash\": \"af479a4f885f9fbfe1d7ec50d3dfe61e1f0144a2f6c2f7c714855f813af70640\"\n                                        },\n                                        {\n                                            \"hash\": \"83e16ea50298a37d0c4287fca0f647b478b74058176abf224d3f5ec632ef8192\"\n                                        },\n                                        {\n                                            \"hash\": \"346998056025612c29650184097d735d132f074b1bbf11c69dee038a2ff01ac7\"\n                                        },\n                                        {\n                                            \"hash\": \"a86194ed004b56b09168f8830d78ff99b4eea6c34844481693d35e0c23095f6b\"\n                                        },\n                                        {\n                                            \"hash\": \"3fbbc1595556a4d330ef9820b5668436ce58c23653913509d21936a5ee111315\"\n                                        },\n                                        {\n                                            \"hash\": \"555deccc0dd8b73acdfc2c444c00933e1b520aa2c2ad61479aee9d0e18508068\"\n                                        },\n                                        {\n                                            \"hash\": \"960d762556dc586c6ada6e704d4455094979a016e5f656f889b0fa14bdb92eeb\"\n                                        },\n                                        {\n                                            \"hash\": \"cd053ce78293403bbba99ac9035ff885b943bffee640fad944092ff1c12d4690\"\n                                        },\n                                        {\n                                            \"hash\": \"fd01302d6da56b10823e6eb7b20dc52961b465ff3a2015010e82a5845ee19fea\"\n                                        },\n                                        {\n                                            \"hash\": \"e2bb0450685b2d7aab637e2d44cb0ca6b024df61f69a2399366a232f9760df35\"\n                                        }\n                                    ]\n                                },\n                                \"transactionHash\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\"\n                            },\n                            {\n                                \"type\": \"ed25519\",\n                                \"publicKey\": \"5cbaaff2b20040cb9742ff8777d1b929cee266c50aa48a5b0a16e8661c5d9e2d\",\n                                \"signature\": \"c0ff33bd084dcdffd22724161bb1686b991a87406f0a108bbb47ba33fe141773dc8a4572f8b51760fa987c940370db793583969b246151f6726aa3c4108b500c\",\n                                \"signer\": \"acc://dn.acme/network\",\n                                \"signerVersion\": 42,\n                                \"timestamp\": 1,\n                                \"transactionHash\": \"6c3fecb1f34532cc4a3795419e27dc9bf62139a9c12b3d140e540145c5bb3887\"\n                            }\n                        ]\n                    }\n                ]\n            }\n        ]\n    },\n    \"id\": 0\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"6eb554d6-d8ed-412c-8aa2-d0e6508e3706"},{"name":"Get Chain","id":"b08f583f-54dc-410c-97e9-e8eeb317e29b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 0,\n    \"method\": \"query-chain\",\n    \"params\": {\n        \"chainId\": \"\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>chainId</td>\n<td>String</td>\n<td>ChainId</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Example</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 0,\n  \"method\": \"query-chain\",\n  \"params\": {\n    \"chainId\": \"12e2d2d82f7b65752b3fd8d37d195f6d87f6cb24b83c4ae70f4571ea1007e741\"\n  }\n}\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"b08f583f-54dc-410c-97e9-e8eeb317e29b"},{"name":"Get Key Index","id":"d256c2a8-7649-4d9b-be89-79ed93aa8273","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 0,\n    \"method\": \"query-key-index\",\n    \"params\": {\n        \"url\": \"\",\n        \"key\": \"\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>ADI url</td>\n</tr>\n<tr>\n<td>key</td>\n<td>String</td>\n<td>Public key</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 0,\n    \"method\": \"query-key-index\",\n    \"params\": {\n        \"url\": \"acc://wize.acme\",\n        \"key\": \"096fcc1e255fb5e20124c4fa50b6ecbe827ac276fa415d87a382477478bb3dff\"\n    }\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"type\": \"key-page-index\",\n        \"data\": {\n            \"authority\": \"acc://wize.acme/book\",\n            \"keyBook\": \"acc://wize.acme/book\",\n            \"signer\": \"acc://wize.acme/book/1\",\n            \"keyPage\": \"acc://wize.acme/book/1\",\n            \"index\": 0\n        }\n    },\n    \"id\": 0\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"d256c2a8-7649-4d9b-be89-79ed93aa8273"},{"name":"Get Minor Blocks","id":"c6a2a66c-0450-4a11-b1ea-20c56505cbf7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"query-minor-blocks\",\n    \"params\": {\n        \"url\": \"\",\n        \"count\": \n    },\n    \"id\": 1822\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>ADI url</td>\n</tr>\n<tr>\n<td>count</td>\n<td>Int</td>\n<td>Number of minor blocks</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Example</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"query-minor-blocks\",\n    \"params\": {\n        \"url\": \"acc://bvn-bvn0\",\n        \"count\": 2\n    },\n    \"id\": 1822\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"c6a2a66c-0450-4a11-b1ea-20c56505cbf7"},{"name":"Get Balance","id":"df2b2031-123d-4da2-8f5a-ece22eb3b938","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"query\",\n    \"params\": {\n        \"url\": \"\"\n    },\n    \"id\": 1059\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"query\",\n    \"params\": {\n        \"url\": \"acc://f327de65ed0a1bcde589d31ef0058a49d0636b5fb619f1d7/ACME\"\n    },\n    \"id\": 1059\n}\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"result\": {\n        \"chainId\": \"807bc19207eb442ff488b1fd99cd9c69586d03a8f1afec1c38ba624471a9ea77\",\n        \"chains\": [\n            {\n                \"count\": 5,\n                \"height\": 5,\n                \"name\": \"main\",\n                \"roots\": [\n                    \"736c65fcec59eb59b4d78f1ccce076d1294bbe4ca1951751ef03b22b05e86bae\",\n                    null,\n                    \"660222c3f97abf8cad17071c779cbb37a193a48b07da9f968fb191a686d89265\"\n                ],\n                \"type\": \"transaction\"\n            },\n            {\n                \"count\": 5,\n                \"height\": 5,\n                \"name\": \"main-index\",\n                \"roots\": [\n                    \"010402edeb0103f29f2320000000000000000000000000000000000000000000\",\n                    null,\n                    \"c5f89f8ee5fee6c8347976a6cfcb51f44ba8657e9d9150c852507bc76a1fc2ff\"\n                ],\n                \"type\": \"index\"\n            },\n            {\n                \"count\": 4,\n                \"height\": 4,\n                \"name\": \"signature\",\n                \"roots\": [\n                    null,\n                    null,\n                    \"d30cd8e3ee3a30472909087188525341d16296d65ded26efa8bd8af3c6334174\"\n                ],\n                \"type\": \"transaction\"\n            }\n        ],\n        \"data\": {\n            \"balance\": \"986600000\",\n            \"tokenUrl\": \"acc://ACME\",\n            \"type\": \"liteTokenAccount\",\n            \"url\": \"acc://a7ea6fb829b21262e7b1256823e71452a685fc6d14764c5b/ACME\"\n        },\n        \"mainChain\": {\n            \"count\": 5,\n            \"height\": 5,\n            \"roots\": [\n                \"736c65fcec59eb59b4d78f1ccce076d1294bbe4ca1951751ef03b22b05e86bae\",\n                null,\n                \"660222c3f97abf8cad17071c779cbb37a193a48b07da9f968fb191a686d89265\"\n            ]\n        },\n        \"merkleState\": {\n            \"count\": 5,\n            \"height\": 5,\n            \"roots\": [\n                \"736c65fcec59eb59b4d78f1ccce076d1294bbe4ca1951751ef03b22b05e86bae\",\n                null,\n                \"660222c3f97abf8cad17071c779cbb37a193a48b07da9f968fb191a686d89265\"\n            ]\n        },\n        \"type\": \"liteTokenAccount\"\n    },\n    \"id\": 1059\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"df2b2031-123d-4da2-8f5a-ece22eb3b938"},{"name":"Sign KeyBook Authority","id":"affcc21e-0bc6-4a18-aea3-cdd5f1994108","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"\",\n                    \"signature\": \"\",\n                    \"signer\": \"\",\n                    \"signerVersion\": ,\n                    \"timestamp\": ,\n                    \"transactionHash\": \"\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"\",\n                        \"origin\": \"\",\n                        \"initiator\": \"\"\n                    },\n                    \"body\": {\n                        \"type\": \"remote\",\n                        \"hash\": \"\"\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 1542\n}","options":{"raw":{"language":"json"}}},"url":"https://mainnet.accumulatenetwork.io/v2","description":"<p><strong>Request Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>Account url</td>\n</tr>\n<tr>\n<td>publicKey</td>\n<td>String</td>\n<td>This is the public key used to verify the signed transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>Signature of the ADI signing the transaction</td>\n</tr>\n<tr>\n<td>signer</td>\n<td>String</td>\n<td>ADI signing this request</td>\n</tr>\n<tr>\n<td>signerVersion</td>\n<td>Int</td>\n<td>This is the version number of the signing structure</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>Int</td>\n<td>This is the timestamp of the transaction used for signing the transaction</td>\n</tr>\n<tr>\n<td>transactionHash</td>\n<td>String</td>\n<td>Transaction Hash</td>\n</tr>\n<tr>\n<td>principal</td>\n<td>String</td>\n<td>URL of the adi or lite account paying for the transaction</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>String</td>\n<td>The origin account</td>\n</tr>\n<tr>\n<td>initiator</td>\n<td>String</td>\n<td>Account hash of the originator of the transaction</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>This is the type of transaction body, eg, remote.</td>\n</tr>\n<tr>\n<td>hash</td>\n<td>String</td>\n<td>This is the SHA-256 hash of the transaction.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Example</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"execute-direct\",\n    \"params\": {\n        \"envelope\": {\n            \"signatures\": [\n                {\n                    \"type\": \"ed25519\",\n                    \"publicKey\": \"44c76327b193ac2a955b7000acc3aa163540e66de95feba9de3ce436ebc4cc05\",\n                    \"signature\": \"0c4640ac4935de67a6452cfc9f2ac646e901695158957480f19147d7047b38dc457342575082a1b22424588d3cc926b88c1051d5cdcb999e2e337d53569fb90e\",\n                    \"signer\": \"acc://example01.acme/keybook2/1\",\n                    \"signerVersion\": 1,\n                    \"timestamp\": 1657203441523817,\n                    \"transactionHash\": \"a0613d2633dd4468bcefa556e2643a34a78947ee1ebb432e7bfbed5170b24ddf\"\n                }\n            ],\n            \"transaction\": [\n                {\n                    \"header\": {\n                        \"principal\": \"acc://example01.acme/keybook2\",\n                        \"origin\": \"acc://example01.acme/keybook2\",\n                        \"initiator\": \"f31cda5b0f0e2de838336e4e26fdd9786902d97dc3da41a2271f6981b58899a3\"\n                    },\n                    \"body\": {\n                        \"type\": \"remote\",\n                        \"hash\": \"a0613d2633dd4468bcefa556e2643a34a78947ee1ebb432e7bfbed5170b24ddf\"\n                    }\n                }\n            ]\n        }\n    },\n    \"id\": 1542\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v2"],"host":["mainnet","accumulatenetwork","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"affcc21e-0bc6-4a18-aea3-cdd5f1994108"}]}