From 9a491a5e09c9a3c7758acbec0b12f8e3f3a9eb0b Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Wed, 3 Jul 2024 10:27:25 +0200 Subject: [PATCH 01/32] Update index.mdx PROXY_AUTH ADDED TO PARAMETER TABLE --- .../v20-dev/non_fungible_tokens/update_nft/index.mdx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/update_nft/index.mdx b/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/update_nft/index.mdx index 2157ea27..ee62a43c 100644 --- a/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/update_nft/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/update_nft/index.mdx @@ -21,11 +21,12 @@ These coins can be activated using the [enable\_eth\_with\_tokens](/komodo-defi- ### Request Parameters -| Parameter | Type | Description | -| ------------- | ------ | --------------------------------------------------------------------------------------------------- | -| chains | array | List of networks to scan for NFTs. Options are: `POLYGON`, `FANTOM`, `ETH`, `BSC`, or `AVALANCHE`. | -| url | string | URL link to the [Moralis API proxy base url](https://moralis-proxy.komodo.earth) or equivalent. | -| url\_antispam | string | URL link to the [Antispam API proxy base url](https://nft.antispam.dragonhound.info) or equivalent. | +| Parameter | Type | Description | +| ------------- | ------- | --------------------------------------------------------------------------------------------------------------- | +| chains | array | List of networks to scan for NFTs. Options are: `POLYGON`, `FANTOM`, `ETH`, `BSC`, or `AVALANCHE`. | +| url | string | URL link to the [Moralis API proxy base url](https://moralis-proxy.komodo.earth) or equivalent. | +| url\_antispam | string | URL link to the [Antispam API proxy base url](https://nft.antispam.dragonhound.info) or equivalent. | +| proxy\_auth | boolean | Indicates whether authentication is required for accessing the proxy URLs (true if necessary, false otherwise). | If there are no errors, this request will return an empty response. From 27fcf355440d716860f0ba59d9335394bb6ab62b Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Wed, 3 Jul 2024 12:00:21 +0200 Subject: [PATCH 02/32] Update index.mdx --- .../api/v20/enable_eth_with_tokens/index.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/komodo-defi-framework/api/v20/enable_eth_with_tokens/index.mdx b/src/pages/komodo-defi-framework/api/v20/enable_eth_with_tokens/index.mdx index d1fe7f85..c09f6386 100644 --- a/src/pages/komodo-defi-framework/api/v20/enable_eth_with_tokens/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20/enable_eth_with_tokens/index.mdx @@ -14,6 +14,8 @@ Additionally, it supports ERC20 tokens on the ETH chain and associated ERC20 lik | mm2 | integer | Required if not set in `coins` file. Informs the Komodo DeFi Framework API whether or not the coin is expected to function. Accepted values are `0` or `1` | | swap\_contract\_address | string | Address of etomic swap smart contract | | fallback\_swap\_contract | string | Address of backup etomic swap smart contract | +| maker\_swap\_v2\_contract | string | Backup address for the maker's swap smart contract | +| taker\_swap\_v2\_contract | string | Backup address for the taker's swap smart contract | | nodes | array of objects | A list of standard [EvmNode](/komodo-defi-framework/api/common_structures/activation/#evm-node) objects. | | erc20\_tokens\_requests | array of objects | A list of standard [TokensRequest](/komodo-defi-framework/api/common_structures/activation/#tokens-request) objects. | | gas\_station\_decimals | integer | Optional, for ETH/ERC20 and other gas model chains. Defaults to `8`. Defines the decimals used to denominate the gas station response to gwei units. For example, the ETH gas station uses 8 decimals, which means that "average": 860 is equal to 86 gwei. While the Matic gas station uses 9 decimals, so 860 would mean 860 gwei exactly. | From 2aa09b737ca4202c75fb71dea0ff9be3fd80b3bf Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Wed, 3 Jul 2024 12:11:52 +0200 Subject: [PATCH 03/32] Update index.mdx --- .../api/v20-dev/non_fungible_tokens/update_nft/index.mdx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/update_nft/index.mdx b/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/update_nft/index.mdx index ee62a43c..6db4c01f 100644 --- a/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/update_nft/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/update_nft/index.mdx @@ -38,17 +38,16 @@ These coins can be activated using the [enable\_eth\_with\_tokens](/komodo-defi- ```json { - "userpass": "RPC_UserP@SSW0RD", + "userpass": "RPC_UserP@SSWORD", "method": "update_nft", "mmrpc": "2.0", "params": { - "chains": [ - "BSC", + "chains": [ "POLYGON" ], "url": "https://moralis-proxy.komodo.earth", - "url_antispam": "https://nft.antispam.dragonhound.info" - } + "url_antispam": "https://nft.antispam.dragonhound.info", + "proxy_auth": false } ``` From 7274ed5c0de65d2922de60acbcf1f0a8da171c5f Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Wed, 3 Jul 2024 12:36:30 +0200 Subject: [PATCH 04/32] Update index.mdx --- .../api/v20-dev/non_fungible_tokens/get_nft_list/index.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/get_nft_list/index.mdx b/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/get_nft_list/index.mdx index 483be612..3f429bc9 100644 --- a/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/get_nft_list/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/get_nft_list/index.mdx @@ -27,8 +27,9 @@ Returns a list of the NFTs owned by the user, shown in descending order of the ` | Parameter | Type | Description | | --------- | --------------- | -------------------------------------------------------------------------------------------------- | | nfts | list of objects | A list of standard [NftInfo](/komodo-defi-framework/api/common_structures/nfts/#nft-info) objects. | -| total | integer | The total number of NFTs in your wallet matching the request filters. | | skipped | integer | The number of NFTs in your wallet excluded by the request filters. | +| total | integer | The total number of NFTs in your wallet matching the request filters. | + #### 📌 Example with no optional params From 2e12273181efa69096100e08cebd93fc46432604 Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Wed, 3 Jul 2024 13:22:17 +0200 Subject: [PATCH 05/32] Update index.mdx --- .../v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx b/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx index ddb7455a..12088426 100644 --- a/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx @@ -15,6 +15,7 @@ This method refreshes metadata of one NFT and metadata of related transactions w | token\_address | string | Token address. | | token\_id | string | Token ID. | | url\_antispam | string | URL link to the [Antispam API proxy base url](https://nft.antispam.dragonhound.info) or equivalent. [docs](https://nft.antispam.dragonhound.info/docs). | +| proxy\_auth | boolean | Indicates whether authentication is required for accessing the proxy URLs. Set to true if authentication is necessary, otherwise false. | If there are no errors, this request will return an empty response. From 0c4fe3d57384118a5303afb1db43d2940ab22917 Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Wed, 3 Jul 2024 13:22:58 +0200 Subject: [PATCH 06/32] Update index.mdx --- .../v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx b/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx index 12088426..70a36072 100644 --- a/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx @@ -15,7 +15,7 @@ This method refreshes metadata of one NFT and metadata of related transactions w | token\_address | string | Token address. | | token\_id | string | Token ID. | | url\_antispam | string | URL link to the [Antispam API proxy base url](https://nft.antispam.dragonhound.info) or equivalent. [docs](https://nft.antispam.dragonhound.info/docs). | -| proxy\_auth | boolean | Indicates whether authentication is required for accessing the proxy URLs. Set to true if authentication is necessary, otherwise false. | +| proxy\_auth | boolean | Indicates whether authentication is required for accessing the proxy URLs (true if authentication is necessary, otherwise false). | If there are no errors, this request will return an empty response. From 4b20f02ab7aebeebfdcec7c5e30983a81ee3be78 Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Wed, 3 Jul 2024 13:32:59 +0200 Subject: [PATCH 07/32] Update index.mdx --- .../v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx b/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx index 70a36072..649d4380 100644 --- a/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx @@ -14,8 +14,8 @@ This method refreshes metadata of one NFT and metadata of related transactions w | url | string | URL link to the Moralis API proxy base url ([https://moralis-proxy.komodo.earth](https://moralis-proxy.komodo.earth)) or equivalent. | | token\_address | string | Token address. | | token\_id | string | Token ID. | -| url\_antispam | string | URL link to the [Antispam API proxy base url](https://nft.antispam.dragonhound.info) or equivalent. [docs](https://nft.antispam.dragonhound.info/docs). | | proxy\_auth | boolean | Indicates whether authentication is required for accessing the proxy URLs (true if authentication is necessary, otherwise false). | +| url\_antispam | string | If proxy_auth is set to true, will need to provide a new Komodo Proxy URL, otherwise consists of URL link to the [Antispam API proxy base url](https://nft.antispam.dragonhound.info) or equivalent. [docs](https://nft.antispam.dragonhound.info/docs). | If there are no errors, this request will return an empty response. From ec4db6e577566df26178c7af59d4341e9ff1ee71 Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Wed, 3 Jul 2024 13:35:09 +0200 Subject: [PATCH 08/32] Update index.mdx Updated url based on addition of proxy_auth --- .../non_fungible_tokens/refresh_nft_metadata/index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx b/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx index 649d4380..b0f8f79a 100644 --- a/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/refresh_nft_metadata/index.mdx @@ -11,11 +11,11 @@ This method refreshes metadata of one NFT and metadata of related transactions w | Parameter | Type | Description | | -------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------- | | chain | string | Chains which holds the NFT you would like to updated metadata for. | -| url | string | URL link to the Moralis API proxy base url ([https://moralis-proxy.komodo.earth](https://moralis-proxy.komodo.earth)) or equivalent. | | token\_address | string | Token address. | | token\_id | string | Token ID. | | proxy\_auth | boolean | Indicates whether authentication is required for accessing the proxy URLs (true if authentication is necessary, otherwise false). | -| url\_antispam | string | If proxy_auth is set to true, will need to provide a new Komodo Proxy URL, otherwise consists of URL link to the [Antispam API proxy base url](https://nft.antispam.dragonhound.info) or equivalent. [docs](https://nft.antispam.dragonhound.info/docs). | +| url | string | URL link to the Moralis API proxy base url ([https://moralis-proxy.komodo.earth](https://moralis-proxy.komodo.earth)) or equivalent (if proxy_auth is set to true, will need to provide a new Komodo Proxy URL). | +| url\_antispam | string | URL link to the [Antispam API proxy base url](https://nft.antispam.dragonhound.info) or equivalent. [docs](https://nft.antispam.dragonhound.info/docs). | If there are no errors, this request will return an empty response. From e65425225697ded01df6dc7018ee79fe00a58b25 Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Wed, 3 Jul 2024 13:37:45 +0200 Subject: [PATCH 09/32] Update index.mdx [if proxy_auth is set to true, will need to provide a new Komodo Proxy URL] --- .../api/v20-dev/non_fungible_tokens/update_nft/index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/update_nft/index.mdx b/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/update_nft/index.mdx index 6db4c01f..f508434a 100644 --- a/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/update_nft/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/update_nft/index.mdx @@ -24,9 +24,9 @@ These coins can be activated using the [enable\_eth\_with\_tokens](/komodo-defi- | Parameter | Type | Description | | ------------- | ------- | --------------------------------------------------------------------------------------------------------------- | | chains | array | List of networks to scan for NFTs. Options are: `POLYGON`, `FANTOM`, `ETH`, `BSC`, or `AVALANCHE`. | -| url | string | URL link to the [Moralis API proxy base url](https://moralis-proxy.komodo.earth) or equivalent. | -| url\_antispam | string | URL link to the [Antispam API proxy base url](https://nft.antispam.dragonhound.info) or equivalent. | | proxy\_auth | boolean | Indicates whether authentication is required for accessing the proxy URLs (true if necessary, false otherwise). | +| url | string | URL link to the [Moralis API proxy base url](https://moralis-proxy.komodo.earth) or equivalent (if proxy_auth is set to true, will need to provide a new Komodo Proxy URL). | +| url\_antispam | string | URL link to the [Antispam API proxy base url](https://nft.antispam.dragonhound.info) or equivalent. | If there are no errors, this request will return an empty response. From 695df63f0cd459ba29d67cfa6af841ffabb6e5a6 Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Thu, 4 Jul 2024 13:02:22 +0200 Subject: [PATCH 10/32] Update index.mdx Changes in node urls for Eth coins. --- .../api/legacy/coin_activation/index.mdx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx b/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx index ab805a23..b4a2dbce 100644 --- a/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx +++ b/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx @@ -331,9 +331,9 @@ Komodo DeFi Framework is a true cross chain, cross protocol Decentralized Exchan "coin": "ETH", "method": "enable", "urls": [ - "http://eth1.cipig.net:8555", - "http://eth2.cipig.net:8555", - "http://eth3.cipig.net:8555" + "http://eth1.cipig.net:18555", + "http://eth2.cipig.net:18555", + "http://eth3.cipig.net:18555" ], "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80", "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", @@ -367,9 +367,10 @@ Komodo DeFi Framework is a true cross chain, cross protocol Decentralized Exchan "userpass": "RPC_UserP@SSW0RD", "method": "enable", "urls": [ - "http://eth1.cipig.net:8555", - "http://eth2.cipig.net:8555", - "http://eth3.cipig.net:8555" + "http://eth1.cipig.net:18555", + "http://eth2.cipig.net:18555", + "http://eth3.cipig.net:1 +8555" ], "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80", "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", From ee17d7495d80b42cf058a3c77768c0ee6bbdbcc6 Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Thu, 4 Jul 2024 13:22:11 +0200 Subject: [PATCH 11/32] Update index.mdx Updated url of bchd slp server and updated BCH electrum server node urls to updated ones from coins repo. --- .../api/v20/enable_bch_with_tokens/index.mdx | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx b/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx index d3d27f4d..7f8123cb 100644 --- a/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx @@ -48,14 +48,19 @@ The Komodo DeFi Framework supports Bitcoin Cash SLP tokens. Using this method, y "ticker": "BCH", "allow_slp_unsafe_conf": false, "bchd_urls": [ - "https://bchd.imaginary.cash:8335/" + "https://bchd.dragonhound.info" ], "mode": { "rpc": "Electrum", "rpc_data": { "servers": [ { - "url": "electrum1.cipig.net:10055" + "url": "bch.imaginary.cash:50002" + "protocol": "SSL", + }, + { + "url": "cashnode.bch.ninja:50002", + "protocol": "SSL", }, { "url": "electrum3.cipig.net:20055", @@ -139,14 +144,19 @@ The Komodo DeFi Framework supports Bitcoin Cash SLP tokens. Using this method, y "ticker": "BCH", "allow_slp_unsafe_conf": false, "bchd_urls": [ - "https://bchd.imaginary.cash:8335/" + "https://bchd.dragonhound.info" ], "mode": { "rpc": "Electrum", "rpc_data": { "servers": [ { - "url": "electrum1.cipig.net:10055" + "url": "bch.imaginary.cash:50002" + "protocol": "SSL", + }, + { + "url": "cashnode.bch.ninja:50002", + "protocol": "SSL", }, { "url": "electrum3.cipig.net:20055", From 9726773fad86d1c3b89f0c721522e217a34b6a79 Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Thu, 4 Jul 2024 13:37:12 +0200 Subject: [PATCH 12/32] Update index.mdx Updated node urls for ETH and MATIC activation request examples. --- .../api/v20/enable_eth_with_tokens/index.mdx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/pages/komodo-defi-framework/api/v20/enable_eth_with_tokens/index.mdx b/src/pages/komodo-defi-framework/api/v20/enable_eth_with_tokens/index.mdx index c09f6386..412fb921 100644 --- a/src/pages/komodo-defi-framework/api/v20/enable_eth_with_tokens/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20/enable_eth_with_tokens/index.mdx @@ -58,7 +58,7 @@ Additionally, it supports ERC20 tokens on the ETH chain and associated ERC20 lik "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "http://eth1.cipig.net:8555", + "url": "http://eth1.cipig.net:18555", "gui_auth": false }, { @@ -165,7 +165,10 @@ Additionally, it supports ERC20 tokens on the ETH chain and associated ERC20 lik "url": "https://polygon-rpc.com" }, { - "url": "https://poly-rpc.gateway.pokt.network" + "url": "https://node.komodo.earth:8080/polygon" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/matic" } ], "erc20_tokens_requests": [ From b5b06fc33f6fc11395aebf680963d033274ba14a Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Thu, 4 Jul 2024 13:50:55 +0200 Subject: [PATCH 13/32] Update index.mdx Added urls to some more nodes for ZOMBIE, also added the webSocket url for one of the request examples (was not included before). --- .../api/v20-dev/zhtlc_coins/activation/index.mdx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/pages/komodo-defi-framework/api/v20-dev/zhtlc_coins/activation/index.mdx b/src/pages/komodo-defi-framework/api/v20-dev/zhtlc_coins/activation/index.mdx index a54b4a46..73d86747 100644 --- a/src/pages/komodo-defi-framework/api/v20-dev/zhtlc_coins/activation/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20-dev/zhtlc_coins/activation/index.mdx @@ -41,6 +41,11 @@ export const description = "electrum_servers": [ { "url": "zombie.dragonhound.info:10033" + }, + { + "url": "zombie.dragonhound.info:20033", + "protocol":"SSL", + "ws_url": "zombie.dragonhound.info:30058" } ], "light_wallet_d_servers": [ @@ -112,6 +117,11 @@ The Z coin lightwallet client only supports blocks that are post-sapling. The sa "electrum_servers": [ { "url": "zombie.dragonhound.info:10033" + }, + { + "url": "zombie.dragonhound.info:20033", + "protocol":"SSL", + "ws_url": "zombie.dragonhound.info:30058" } ], "light_wallet_d_servers": [ From f868c0621a66d7bd6858dcab41e5e08aa66c6da0 Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Thu, 4 Jul 2024 16:32:56 +0200 Subject: [PATCH 14/32] Update index.mdx --- .../komodo-defi-framework/api/legacy/coin_activation/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx b/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx index b4a2dbce..20172405 100644 --- a/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx +++ b/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx @@ -66,7 +66,7 @@ Komodo DeFi Framework is a true cross chain, cross protocol Decentralized Exchan | Structure | Type | Description | | ---------------------------------------- | --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | coin | string | Ticker of coin to activate | -| servers | array of objects | List of [Electrum servers](https://github.com/KomodoPlatform/coins/tree/master/electrums) | +| servers | array of objects | List of [Electrum servers] (https://github.com/KomodoPlatform/coins/tree/master/electrums) **Check out Coins repository for full updated list of nodes/servers: https://github.com/KomodoPlatform/coins/tree/master/electrums. | | servers.url | string | Electrum server URL | | servers.protocol | string (optional, defaults to `TCP`) | Transport protocol used by Komodo DeFi Framework API to connect to the electrum server (`TCP` or `SSL`) | | servers.disable\_cert\_verification | bool (optional, defaults to `false`.) | If `true`, this disables server SSL/TLS certificate verification (e.g. to use self-signed certificate). Use at your own risk | From cba0694613a3f8ad1854cfce3b4a6ff98c0f86e7 Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Thu, 4 Jul 2024 16:34:46 +0200 Subject: [PATCH 15/32] Update index.mdx --- .../komodo-defi-framework/api/legacy/coin_activation/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx b/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx index 20172405..557dcd66 100644 --- a/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx +++ b/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx @@ -66,7 +66,7 @@ Komodo DeFi Framework is a true cross chain, cross protocol Decentralized Exchan | Structure | Type | Description | | ---------------------------------------- | --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | coin | string | Ticker of coin to activate | -| servers | array of objects | List of [Electrum servers] (https://github.com/KomodoPlatform/coins/tree/master/electrums) **Check out Coins repository for full updated list of nodes/servers: https://github.com/KomodoPlatform/coins/tree/master/electrums. | +| servers | array of objects | List of [Electrum servers] (*Check out for full and update nodes/servers list: https://github.com/KomodoPlatform/coins/tree/master/electrums) | | servers.url | string | Electrum server URL | | servers.protocol | string (optional, defaults to `TCP`) | Transport protocol used by Komodo DeFi Framework API to connect to the electrum server (`TCP` or `SSL`) | | servers.disable\_cert\_verification | bool (optional, defaults to `false`.) | If `true`, this disables server SSL/TLS certificate verification (e.g. to use self-signed certificate). Use at your own risk | From fd6fd6ea6e18165b998a157cd011658cd2303678 Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Thu, 4 Jul 2024 16:35:06 +0200 Subject: [PATCH 16/32] Update index.mdx --- .../komodo-defi-framework/api/legacy/coin_activation/index.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx b/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx index 557dcd66..1d574db2 100644 --- a/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx +++ b/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx @@ -66,7 +66,8 @@ Komodo DeFi Framework is a true cross chain, cross protocol Decentralized Exchan | Structure | Type | Description | | ---------------------------------------- | --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | coin | string | Ticker of coin to activate | -| servers | array of objects | List of [Electrum servers] (*Check out for full and update nodes/servers list: https://github.com/KomodoPlatform/coins/tree/master/electrums) | +| servers | array of objects | List of [Electrum servers] +(*Check out for full and update nodes/servers list: https://github.com/KomodoPlatform/coins/tree/master/electrums) | | servers.url | string | Electrum server URL | | servers.protocol | string (optional, defaults to `TCP`) | Transport protocol used by Komodo DeFi Framework API to connect to the electrum server (`TCP` or `SSL`) | | servers.disable\_cert\_verification | bool (optional, defaults to `false`.) | If `true`, this disables server SSL/TLS certificate verification (e.g. to use self-signed certificate). Use at your own risk | From 2a97134462aee3526a5bc3576aca395f6580d42c Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Thu, 4 Jul 2024 16:35:44 +0200 Subject: [PATCH 17/32] Update index.mdx --- .../komodo-defi-framework/api/legacy/coin_activation/index.mdx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx b/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx index 1d574db2..2789df4e 100644 --- a/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx +++ b/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx @@ -66,8 +66,7 @@ Komodo DeFi Framework is a true cross chain, cross protocol Decentralized Exchan | Structure | Type | Description | | ---------------------------------------- | --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | coin | string | Ticker of coin to activate | -| servers | array of objects | List of [Electrum servers] -(*Check out for full and update nodes/servers list: https://github.com/KomodoPlatform/coins/tree/master/electrums) | +| servers | array of objects | List of [Electrum servers] (https://github.com/KomodoPlatform/coins/tree/master/electrums) | | servers.url | string | Electrum server URL | | servers.protocol | string (optional, defaults to `TCP`) | Transport protocol used by Komodo DeFi Framework API to connect to the electrum server (`TCP` or `SSL`) | | servers.disable\_cert\_verification | bool (optional, defaults to `false`.) | If `true`, this disables server SSL/TLS certificate verification (e.g. to use self-signed certificate). Use at your own risk | From cbdb06aaf9283eeff44f41e7eb9de4272db3fac2 Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Thu, 4 Jul 2024 16:36:36 +0200 Subject: [PATCH 18/32] Update index.mdx --- .../api/v20-dev/task_enable_qtum/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/komodo-defi-framework/api/v20-dev/task_enable_qtum/index.mdx b/src/pages/komodo-defi-framework/api/v20-dev/task_enable_qtum/index.mdx index 5eec92af..9fe8f4a5 100644 --- a/src/pages/komodo-defi-framework/api/v20-dev/task_enable_qtum/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20-dev/task_enable_qtum/index.mdx @@ -23,7 +23,7 @@ QTUM coins are activated using this method. For UTXO coins, refer to [task::enab | .mode | object | An object containing RPC type and data parameters as below. | | ..rpc | string | UTXO RPC mode. Options: `{ "rpc":"Native" }` if running a native blockchain node, or `"rpc":"Electrum"` to use electrum RPCs. If using electrum, a list of electrum servers is required under `rpc_data.servers` | | ..rpc\_data | object | An object containing electrum server information. | -| ...servers | list | A list of electrum server URLs | +| ...servers | list | A list of electrum server URLs ((https://github.com/KomodoPlatform/coins/tree/master/electrums) | | ....url | object | The url and port of a coins electrum server | | ....ws\_url | object | Optional. Used to define electrum server url/port for websocket connections. | | ....protocol | object | Defines electrum server protocol as `TCP` or `SSL`. Defaults to `TCP` | From 6d7fa6916d39609a2f0b329949d4ff8d47274b9d Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Thu, 4 Jul 2024 16:37:03 +0200 Subject: [PATCH 19/32] Update index.mdx --- .../api/v20-dev/task_enable_qtum/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/komodo-defi-framework/api/v20-dev/task_enable_qtum/index.mdx b/src/pages/komodo-defi-framework/api/v20-dev/task_enable_qtum/index.mdx index 9fe8f4a5..eab45f04 100644 --- a/src/pages/komodo-defi-framework/api/v20-dev/task_enable_qtum/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20-dev/task_enable_qtum/index.mdx @@ -23,7 +23,7 @@ QTUM coins are activated using this method. For UTXO coins, refer to [task::enab | .mode | object | An object containing RPC type and data parameters as below. | | ..rpc | string | UTXO RPC mode. Options: `{ "rpc":"Native" }` if running a native blockchain node, or `"rpc":"Electrum"` to use electrum RPCs. If using electrum, a list of electrum servers is required under `rpc_data.servers` | | ..rpc\_data | object | An object containing electrum server information. | -| ...servers | list | A list of electrum server URLs ((https://github.com/KomodoPlatform/coins/tree/master/electrums) | +| ...servers | list | A list of electrum server URLs (https://github.com/KomodoPlatform/coins/tree/master/electrums) | | ....url | object | The url and port of a coins electrum server | | ....ws\_url | object | Optional. Used to define electrum server url/port for websocket connections. | | ....protocol | object | Defines electrum server protocol as `TCP` or `SSL`. Defaults to `TCP` | From 89e36c8a7a832c184c43366bf4d12115ecbb5906 Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Thu, 4 Jul 2024 16:37:38 +0200 Subject: [PATCH 20/32] Update index.mdx --- .../api/v20-dev/task_enable_utxo/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/komodo-defi-framework/api/v20-dev/task_enable_utxo/index.mdx b/src/pages/komodo-defi-framework/api/v20-dev/task_enable_utxo/index.mdx index bcf1f791..0676dec3 100644 --- a/src/pages/komodo-defi-framework/api/v20-dev/task_enable_utxo/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20-dev/task_enable_utxo/index.mdx @@ -23,7 +23,7 @@ UTXO coins are activated using this method. For QTUM coins, refer to [task::enab | .mode | object | An object containing RPC type and data parameters as below. | | ..rpc | string | UTXO RPC mode. Options: `{ "rpc":"Native" }` if running a native blockchain node, or `"rpc":"Electrum"` to use electrum RPCs. If using electrum, a list of electrum servers is required under `rpc_data.servers` | | ..rpc\_data | object | An object containing electrum server information. | -| ...servers | list | A list of electrum server URLs | +| ...servers | list | A list of electrum server URLs (https://github.com/KomodoPlatform/coins/tree/master/electrums) | | ....url | object | The url and port of a coins electrum server | | ....ws\_url | object | Optional. Used to define electrum server url/port for websocket connections. | | ....protocol | object | Defines electrum server protocol as `TCP` or `SSL`. Defaults to `TCP` | From 44e14bc956068a60e30de5c6df783cf9517dd206 Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Thu, 4 Jul 2024 16:47:31 +0200 Subject: [PATCH 21/32] Update index.mdx --- .../api/v20/enable_bch_with_tokens/index.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx b/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx index 7f8123cb..3b39f00a 100644 --- a/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx @@ -32,6 +32,7 @@ The Komodo DeFi Framework supports Bitcoin Cash SLP tokens. Using this method, y bch\_addresses\_infos and slp\_addresses\_infos are the same. This should be consolidated in the api. + Go to: https://github.com/KomodoPlatform/coins/tree/master/electrums for full list of nodes/servers. ### 📌 Examples From 7ab17f5c8443506d37a5668fefce29e95639b861 Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Thu, 4 Jul 2024 16:47:49 +0200 Subject: [PATCH 22/32] Update index.mdx From 36df2d783ffb95ec7360059d13f3e476f115155d Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Thu, 4 Jul 2024 16:48:14 +0200 Subject: [PATCH 23/32] Update index.mdx --- .../api/v20/enable_bch_with_tokens/index.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx b/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx index 3b39f00a..4c8a44de 100644 --- a/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx @@ -32,9 +32,10 @@ The Komodo DeFi Framework supports Bitcoin Cash SLP tokens. Using this method, y bch\_addresses\_infos and slp\_addresses\_infos are the same. This should be consolidated in the api. + + Go to: https://github.com/KomodoPlatform/coins/tree/master/electrums for full list of nodes/servers. - ### 📌 Examples #### Request with tx\_history, cashaddress format, and automated utxo merging. From f74e7bde2f2cc672f0f334d16d610a7569ae0e7d Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Thu, 4 Jul 2024 16:48:58 +0200 Subject: [PATCH 24/32] Update index.mdx --- .../api/v20/enable_bch_with_tokens/index.mdx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx b/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx index 4c8a44de..b6d79fcf 100644 --- a/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx @@ -21,6 +21,9 @@ The Komodo DeFi Framework supports Bitcoin Cash SLP tokens. Using this method, y | requires\_notarization | boolean | Optional, defaults to `true`. Has no effect on BCH. | | tx\_history | boolean | Optional, defaults to `true`. If `true` the Komodo DeFi Framework API will preload transaction history as a background process. Must be set to `true` to use the [my\_tx\_history](/komodo-defi-framework/api/legacy/my_tx_history/#my-tx-history) method | | utxo\_merge\_params | object | A standard [UtxoMergeParams](/komodo-defi-framework/api/common_structures/activation/#utxo-merge-params) object. Used to reduce a wallet's UTXO count in cases where it is causing significantly slower RPC responses. | + + Go to: https://github.com/KomodoPlatform/coins/tree/master/electrums for full list of nodes/servers. + ### Response Parameters @@ -33,9 +36,7 @@ The Komodo DeFi Framework supports Bitcoin Cash SLP tokens. Using this method, y bch\_addresses\_infos and slp\_addresses\_infos are the same. This should be consolidated in the api. - - Go to: https://github.com/KomodoPlatform/coins/tree/master/electrums for full list of nodes/servers. - + ### 📌 Examples #### Request with tx\_history, cashaddress format, and automated utxo merging. From 27dfdd0ed27f9f4193b2a82dbdb7f64008b15de4 Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Thu, 4 Jul 2024 16:49:23 +0200 Subject: [PATCH 25/32] Update index.mdx --- .../api/v20/enable_bch_with_tokens/index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx b/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx index b6d79fcf..669324e2 100644 --- a/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx @@ -11,7 +11,7 @@ The Komodo DeFi Framework supports Bitcoin Cash SLP tokens. Using this method, y | ------------------------ | ---------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ticker | string | Ticker of the platform protocol coin. Options: `BCH` or `tBCH` | | bchd\_urls | array of strings | A list of BCHD gRPC API server URLs, used for validation of SLP token transactions. It's recommended to add as many servers as possible. The URLs list can be found at [https://bchd.fountainhead.cash/](https://bchd.fountainhead.cash/). | -| mode | object | A standard [ActivationMode](/komodo-defi-framework/api/common_structures/activation/#activation-mode) object. | +| mode | object | A standard [ActivationMode](/komodo-defi-framework/api/common_structures/activation/#activation-mode) object.* | | tx\_history | boolean | If `true`, spawns a background loop to store the local cache of address(es) transactions. Defaults to `false`. | | slp\_tokens\_requests | array of objects | A list of standard [TokensRequest](/komodo-defi-framework/api/common_structures/activation/#tokens-request) objects. | | address\_format | object | Optional. Overwrites the address format from coins file, if set. A standard [AddressFormat](/komodo-defi-framework/api/common_structures/#address-format) object. | @@ -22,7 +22,7 @@ The Komodo DeFi Framework supports Bitcoin Cash SLP tokens. Using this method, y | tx\_history | boolean | Optional, defaults to `true`. If `true` the Komodo DeFi Framework API will preload transaction history as a background process. Must be set to `true` to use the [my\_tx\_history](/komodo-defi-framework/api/legacy/my_tx_history/#my-tx-history) method | | utxo\_merge\_params | object | A standard [UtxoMergeParams](/komodo-defi-framework/api/common_structures/activation/#utxo-merge-params) object. Used to reduce a wallet's UTXO count in cases where it is causing significantly slower RPC responses. | - Go to: https://github.com/KomodoPlatform/coins/tree/master/electrums for full list of nodes/servers. + *Go to: https://github.com/KomodoPlatform/coins/tree/master/electrums for full list of nodes/servers. ### Response Parameters From 65e41f73030e69b987d2ba66265658eebdd8215d Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Thu, 4 Jul 2024 16:52:24 +0200 Subject: [PATCH 26/32] Update index.mdx --- .../api/v20/enable_eth_with_tokens/index.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/komodo-defi-framework/api/v20/enable_eth_with_tokens/index.mdx b/src/pages/komodo-defi-framework/api/v20/enable_eth_with_tokens/index.mdx index 412fb921..7802967a 100644 --- a/src/pages/komodo-defi-framework/api/v20/enable_eth_with_tokens/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20/enable_eth_with_tokens/index.mdx @@ -16,7 +16,8 @@ Additionally, it supports ERC20 tokens on the ETH chain and associated ERC20 lik | fallback\_swap\_contract | string | Address of backup etomic swap smart contract | | maker\_swap\_v2\_contract | string | Backup address for the maker's swap smart contract | | taker\_swap\_v2\_contract | string | Backup address for the taker's swap smart contract | -| nodes | array of objects | A list of standard [EvmNode](/komodo-defi-framework/api/common_structures/activation/#evm-node) objects. | +| nodes | array of objects | A list of standard [EvmNode](/komodo-defi-framework/api/common_structures/activation/#evm-node) objects. (https://github.com/KomodoPlatform/coins/tree/master/electrums for full list of nodes/servers). + | | erc20\_tokens\_requests | array of objects | A list of standard [TokensRequest](/komodo-defi-framework/api/common_structures/activation/#tokens-request) objects. | | gas\_station\_decimals | integer | Optional, for ETH/ERC20 and other gas model chains. Defaults to `8`. Defines the decimals used to denominate the gas station response to gwei units. For example, the ETH gas station uses 8 decimals, which means that "average": 860 is equal to 86 gwei. While the Matic gas station uses 9 decimals, so 860 would mean 860 gwei exactly. | | gas\_station\_policy.policy | string | Optional, for ETH/ERC20 and other gas model chains. Defaults to `"MeanAverageFast"`. Defines the method of gas price calculation from the station response. `"MeanAverageFast"` will use the mean between average and fast fields. `"Average"` will return a simple average value. | From b993afe43deffaa4ad19abbe81d6335e3ac82bf9 Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Thu, 4 Jul 2024 16:52:40 +0200 Subject: [PATCH 27/32] Update index.mdx --- .../api/v20/enable_eth_with_tokens/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/komodo-defi-framework/api/v20/enable_eth_with_tokens/index.mdx b/src/pages/komodo-defi-framework/api/v20/enable_eth_with_tokens/index.mdx index 7802967a..4bd18f3e 100644 --- a/src/pages/komodo-defi-framework/api/v20/enable_eth_with_tokens/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20/enable_eth_with_tokens/index.mdx @@ -16,7 +16,7 @@ Additionally, it supports ERC20 tokens on the ETH chain and associated ERC20 lik | fallback\_swap\_contract | string | Address of backup etomic swap smart contract | | maker\_swap\_v2\_contract | string | Backup address for the maker's swap smart contract | | taker\_swap\_v2\_contract | string | Backup address for the taker's swap smart contract | -| nodes | array of objects | A list of standard [EvmNode](/komodo-defi-framework/api/common_structures/activation/#evm-node) objects. (https://github.com/KomodoPlatform/coins/tree/master/electrums for full list of nodes/servers). +| nodes | array of objects | A list of standard [EvmNode](/komodo-defi-framework/api/common_structures/activation/#evm-node) objects. (https://github.com/KomodoPlatform/coins/tree/master/electrums). | | erc20\_tokens\_requests | array of objects | A list of standard [TokensRequest](/komodo-defi-framework/api/common_structures/activation/#tokens-request) objects. | | gas\_station\_decimals | integer | Optional, for ETH/ERC20 and other gas model chains. Defaults to `8`. Defines the decimals used to denominate the gas station response to gwei units. For example, the ETH gas station uses 8 decimals, which means that "average": 860 is equal to 86 gwei. While the Matic gas station uses 9 decimals, so 860 would mean 860 gwei exactly. | From 1cdc920ac7843004ce6cc64eda6ec4499ff94bc6 Mon Sep 17 00:00:00 2001 From: gcharang <21151592+gcharang@users.noreply.github.com> Date: Mon, 8 Jul 2024 16:36:07 +0530 Subject: [PATCH 28/32] Update index.mdx --- .../komodo-defi-framework/api/legacy/coin_activation/index.mdx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx b/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx index 2789df4e..f4b633ab 100644 --- a/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx +++ b/src/pages/komodo-defi-framework/api/legacy/coin_activation/index.mdx @@ -369,8 +369,7 @@ Komodo DeFi Framework is a true cross chain, cross protocol Decentralized Exchan "urls": [ "http://eth1.cipig.net:18555", "http://eth2.cipig.net:18555", - "http://eth3.cipig.net:1 -8555" + "http://eth3.cipig.net:18555" ], "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80", "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", From aabea5e78b44b77b3391cd1482865439f1e66e4f Mon Sep 17 00:00:00 2001 From: gcharang <21151592+gcharang@users.noreply.github.com> Date: Mon, 8 Jul 2024 16:37:17 +0530 Subject: [PATCH 29/32] Update index.mdx --- .../api/v20-dev/non_fungible_tokens/update_nft/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/update_nft/index.mdx b/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/update_nft/index.mdx index f508434a..1071bb42 100644 --- a/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/update_nft/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20-dev/non_fungible_tokens/update_nft/index.mdx @@ -38,7 +38,7 @@ These coins can be activated using the [enable\_eth\_with\_tokens](/komodo-defi- ```json { - "userpass": "RPC_UserP@SSWORD", + "userpass": "RPC_UserP@SSW0RD", "method": "update_nft", "mmrpc": "2.0", "params": { From b0bfcd4179b41181e91f2b5441e3d4279c18e0ac Mon Sep 17 00:00:00 2001 From: gcharang <21151592+gcharang@users.noreply.github.com> Date: Mon, 8 Jul 2024 16:38:35 +0530 Subject: [PATCH 30/32] Update index.mdx --- .../api/v20/enable_bch_with_tokens/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx b/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx index 669324e2..df2d3bc4 100644 --- a/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx @@ -11,7 +11,7 @@ The Komodo DeFi Framework supports Bitcoin Cash SLP tokens. Using this method, y | ------------------------ | ---------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ticker | string | Ticker of the platform protocol coin. Options: `BCH` or `tBCH` | | bchd\_urls | array of strings | A list of BCHD gRPC API server URLs, used for validation of SLP token transactions. It's recommended to add as many servers as possible. The URLs list can be found at [https://bchd.fountainhead.cash/](https://bchd.fountainhead.cash/). | -| mode | object | A standard [ActivationMode](/komodo-defi-framework/api/common_structures/activation/#activation-mode) object.* | +| mode | object | A standard [ActivationMode](/komodo-defi-framework/api/common_structures/activation/#activation-mode) object. | | tx\_history | boolean | If `true`, spawns a background loop to store the local cache of address(es) transactions. Defaults to `false`. | | slp\_tokens\_requests | array of objects | A list of standard [TokensRequest](/komodo-defi-framework/api/common_structures/activation/#tokens-request) objects. | | address\_format | object | Optional. Overwrites the address format from coins file, if set. A standard [AddressFormat](/komodo-defi-framework/api/common_structures/#address-format) object. | From af2dc025e9177ab5d0dbc7b057f3cab1ce786a01 Mon Sep 17 00:00:00 2001 From: Hayk Arsenyan Hovhannisyan <112006229+harsenyan3@users.noreply.github.com> Date: Mon, 8 Jul 2024 13:16:07 +0200 Subject: [PATCH 31/32] Update index.mdx --- .../api/v20/enable_bch_with_tokens/index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx b/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx index df2d3bc4..09cde151 100644 --- a/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx @@ -21,9 +21,9 @@ The Komodo DeFi Framework supports Bitcoin Cash SLP tokens. Using this method, y | requires\_notarization | boolean | Optional, defaults to `true`. Has no effect on BCH. | | tx\_history | boolean | Optional, defaults to `true`. If `true` the Komodo DeFi Framework API will preload transaction history as a background process. Must be set to `true` to use the [my\_tx\_history](/komodo-defi-framework/api/legacy/my_tx_history/#my-tx-history) method | | utxo\_merge\_params | object | A standard [UtxoMergeParams](/komodo-defi-framework/api/common_structures/activation/#utxo-merge-params) object. Used to reduce a wallet's UTXO count in cases where it is causing significantly slower RPC responses. | - + *Go to: https://github.com/KomodoPlatform/coins/tree/master/electrums for full list of nodes/servers. - + ### Response Parameters From ca1eeb16807006bda011ac7f1ca3aabb781de45e Mon Sep 17 00:00:00 2001 From: gcharang <21151592+gcharang@users.noreply.github.com> Date: Mon, 8 Jul 2024 17:10:11 +0530 Subject: [PATCH 32/32] Update index.mdx --- .../api/v20/enable_bch_with_tokens/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx b/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx index 09cde151..ea58c7eb 100644 --- a/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx +++ b/src/pages/komodo-defi-framework/api/v20/enable_bch_with_tokens/index.mdx @@ -22,7 +22,7 @@ The Komodo DeFi Framework supports Bitcoin Cash SLP tokens. Using this method, y | tx\_history | boolean | Optional, defaults to `true`. If `true` the Komodo DeFi Framework API will preload transaction history as a background process. Must be set to `true` to use the [my\_tx\_history](/komodo-defi-framework/api/legacy/my_tx_history/#my-tx-history) method | | utxo\_merge\_params | object | A standard [UtxoMergeParams](/komodo-defi-framework/api/common_structures/activation/#utxo-merge-params) object. Used to reduce a wallet's UTXO count in cases where it is causing significantly slower RPC responses. | - *Go to: https://github.com/KomodoPlatform/coins/tree/master/electrums for full list of nodes/servers. + - Go to: https://github.com/KomodoPlatform/coins/tree/master/electrums for a full list of nodes/servers. ### Response Parameters