Skip to content

Commit 793607b

Browse files
committed
Merge branch 'dev' into add/kdf/mnemonics
2 parents 05f590d + d853672 commit 793607b

File tree

90 files changed

+4455
-484
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+4455
-484
lines changed

data-for-gpts/all-content.txt

+602-59
Large diffs are not rendered by default.

data-for-gpts/komodefi-api/all-api-content.txt

+541-54
Large diffs are not rendered by default.

data-for-gpts/komodefi-api/legacy-api-content.txt

+3
Original file line numberDiff line numberDiff line change
@@ -2076,6 +2076,9 @@ export const description = "The get_enabled_coins method returns data of coins t
20762076

20772077
The `get_enabled_coins` method returns data of coins that are currently enabled on the user's Komodo DeFi Framework API node.
20782078

2079+
This function has been deprecated by [get\_enabled\_coins v2.0](/komodo-defi-framework/api/v20/get_enabled_coins/). The v2 method does not return addresses, as it was designed for HD wallets, which generate addresses on the fly.
2080+
If you need to get the addresses for coins and have not set `enable_hd` in your [MM2.json file](/komodo-defi-framework/setup/configure-mm2-json/), use the v1 method.
2081+
20792082
## Arguments
20802083

20812084
| Structure | Type | Description |

data-for-gpts/komodefi-api/v20-api-content.txt

+285-35
Large diffs are not rendered by default.

data-for-gpts/komodefi-api/v20-dev-api-content.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ HD wallets offer several advantages over traditional wallets:
291291
* Privacy: HD wallets can generate new addresses for each transaction, making it more difficult for malicious parties to track a user’s transaction history.
292292
* Access Control: A user who controls the root seed can create new addresses & keypairs which can be shared with a 3rd party, providing limited or regulated access to funds held under specific pairs.
293293

294-
To use HD wallet functionality with the Komodo DeFi Framework API, you must include `"enable_hd":true` in your `MM2.json` file.
294+
To use HD wallet functionality with the Komodo DeFi Framework API, you must include `"enable_hd":true` in your [MM2.json file](/komodo-defi-framework/setup/configure-mm2-json/).
295295
Hardware wallets like [Trezor](https://trezor.io/) are always in HD mode, and this parameter **must** to be set to `true`.
296296

297297
In some cases, the methods used to interact with HD wallets are the same as those used with legacy wallets. However, there are some differences, which are detailed in the links below.

data-for-gpts/komodo-defi-framework-content.txt

+543-56
Large diffs are not rendered by default.

filepathSlugs.json

+57-3
Original file line numberDiff line numberDiff line change
@@ -2015,6 +2015,11 @@
20152015
"coin-protocol",
20162016
"coin-protocol-data",
20172017
"evm-node",
2018+
"v2-1-0-current-release",
2019+
"v2-2-0",
2020+
"tendermint-node",
2021+
"v2-1-0-current-release-2",
2022+
"v2-2-0-2",
20182023
"tokens-request",
20192024
"utxo-merge-params"
20202025
],
@@ -2148,8 +2153,12 @@
21482153
"taker-payment-wait-for-spend-failed",
21492154
"maker-payment-spend-failed",
21502155
"maker-payment-spent",
2156+
"maker-payment-spend-confirmed",
2157+
"maker-payment-spend-confirm-failed",
2158+
"maker-payment-spent-by-watcher",
21512159
"taker-payment-wait-refund-started",
21522160
"taker-payment-refund-started",
2161+
"taker-payment-refunded-by-watcher",
21532162
"taker-payment-refund-failed",
21542163
"taker-payment-refunded",
21552164
"taker-payment-refund-finished",
@@ -2158,7 +2167,8 @@
21582167
"src/pages/komodo-defi-framework/api/common_structures/wallet/index.mdx": [
21592168
"wallet-operations-structures",
21602169
"raw-tx-info",
2161-
"input-txns"
2170+
"input-txns",
2171+
"pay-for-gas"
21622172
],
21632173
"src/pages/komodo-defi-framework/api/index.mdx": [
21642174
"komodo-de-fi-framework-rpc-methods"
@@ -2801,10 +2811,12 @@
28012811
"request-parameters",
28022812
"response-parameters",
28032813
"examples",
2804-
"request-default-optional-values",
2814+
"request-using-rpc-urls-parameter-kdf-version-2-2-0",
28052815
"response",
28062816
"request-with-get-balances-set-to-false",
28072817
"response-2",
2818+
"request-using-nodes-parameter-kdf-version-2-2-0",
2819+
"response-3",
28082820
"error-types",
28092821
"platform-config-is-not-found-error",
28102822
"platform-is-already-activated-error",
@@ -2814,6 +2826,36 @@
28142826
"token-protocol-parse-error-error",
28152827
"unexpected-token-protocol-error"
28162828
],
2829+
"src/pages/komodo-defi-framework/api/v20/fee_management/get_eth_estimated_fee_per_gas/index.mdx": [
2830+
"get-eth-estimated-fee-per-gas",
2831+
"request",
2832+
"response"
2833+
],
2834+
"src/pages/komodo-defi-framework/api/v20/fee_management/get_swap_transaction_fee_policy/index.mdx": [
2835+
"get-swap-transaction-fee-policy",
2836+
"request",
2837+
"response"
2838+
],
2839+
"src/pages/komodo-defi-framework/api/v20/fee_management/index.mdx": [
2840+
"evm-network-fee-management",
2841+
"fee-management-methods",
2842+
"fee-management-configuration",
2843+
"in-the-coins-file",
2844+
"in-the-mm-2-json-file"
2845+
],
2846+
"src/pages/komodo-defi-framework/api/v20/fee_management/set_swap_transaction_fee_policy/index.mdx": [
2847+
"set-swap-transaction-fee-policy",
2848+
"request",
2849+
"response"
2850+
],
2851+
"src/pages/komodo-defi-framework/api/v20/fee_management/start_eth_fee_estimator/index.mdx": [
2852+
"start-eth-fee-estimator",
2853+
"response"
2854+
],
2855+
"src/pages/komodo-defi-framework/api/v20/fee_management/stop_eth_fee_estimator/index.mdx": [
2856+
"stop-eth-fee-estimator",
2857+
"response"
2858+
],
28172859
"src/pages/komodo-defi-framework/api/v20/get_current_mtp/index.mdx": [
28182860
"get-current-mtp",
28192861
"arguments",
@@ -2901,7 +2943,6 @@
29012943
"example-without-balances",
29022944
"balance-info",
29032945
"derivation-method",
2904-
"evm-node",
29052946
"coin-protocol",
29062947
"coin-protocol-data",
29072948
"confirmation-targets",
@@ -3140,6 +3181,7 @@
31403181
"response-success-6",
31413182
"withdraw-qrc-20-coins-with-gas-limit",
31423183
"withdraw-tendermint-coins-with-a-memo-and-custom-gas-fee",
3184+
"withdraw-tendermint-ibc-coins",
31433185
"error-responses",
31443186
"invalid-request-unknown-fee-type",
31453187
"invalid-request-wrong-parameter-type",
@@ -3658,6 +3700,7 @@
36583700
"configuration-parameters",
36593701
"example-allowing-weak-password",
36603702
"example-not-allowing-weak-password",
3703+
"example-using-gas-api",
36613704
"example-wss-with-certificates",
36623705
"example-with-wallet-name-and-wallet-password",
36633706
"example-for-hd-wallets",
@@ -3924,6 +3967,17 @@
39243967
"src/pages/komodo-wallet/desktop/view-your-wallet-address/index.mdx": [
39253968
"viewing-your-wallet-address-in-komodo-wallet-desktop"
39263969
],
3970+
"src/pages/komodo-wallet/guides/how-to-find-the-right-ibc-channel-for-transfers/index.mdx": [
3971+
"how-to-find-the-right-ibc-channel-for-transfers-on-komodo-wallet",
3972+
"understanding-ibc-channels",
3973+
"sources-to-find-the-ibc-channel-information",
3974+
"example-transferring-from-iris-to-osmosis",
3975+
"verifying-transfers",
3976+
"staying-updated"
3977+
],
3978+
"src/pages/komodo-wallet/guides/index.mdx": [
3979+
"komodo-wallet-general-guides"
3980+
],
39273981
"src/pages/komodo-wallet/index.mdx": [
39283982
"komodo-wallet-guides"
39293983
],

0 commit comments

Comments
 (0)