Skip to content

Commit

Permalink
Merge pull request #342 from KomodoPlatform/lint-fix-patches/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
gcharang authored Sep 25, 2024
2 parents 40c9068 + f7dbefd commit 68c6c9c
Show file tree
Hide file tree
Showing 54 changed files with 1,272 additions and 252,000 deletions.
806 changes: 778 additions & 28 deletions data-for-gpts/all-content.txt

Large diffs are not rendered by default.

44 changes: 44 additions & 0 deletions data-for-gpts/komodefi-api/all-api-content.txt
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,50 @@ The `WithdrawFee` object varies depending on the coin or token type. Refer to th
"amount": "0.00001"
}
```

### FilterCriteria

The `FilterCriteria` object includes different criteria to filter from the different recent swaps:

| Parameter | Type | Description |
| ---------- | ------------------------ | ---------------------------------------------------------------------- |
| status | object | Return only swaps that match the specified status (e.g., "completed"). |
| date\_from | string (ISO 8601 format) | Return only swaps that started on or after this date. |
| date\_to | string (ISO 8601 format) | Return only swaps that started before this date. |

#### Example

```json
{
"filter": {
"status": "completed",
"date_from": "2024-01-01T00:00:00Z",
"date_to": "2024-07-01T00:00:00Z"
}
}
```

### PagingOptions

The `PagingOptions` object includes options of page selection to consult when looking for recent swaps:

| Parameter | Type | Description |
| ------------ | ---------------- | ---------------------------------------------------------------------------------------------------------------------- |
| from\_uuid | string (or null) | Skips records until this UUID, excluding the record with this UUID. Convenient for infinite scrolling implementations. |
| limit | number | Limits the number of returned swaps. |
| page\_number | number | Returns limit swaps from the selected page. This parameter is ignored if from\_uuid is set. |

#### Example

```json
{
"paging_options": {
"from_uuid": null,
"limit": 10,
"page_number": 1
}
}
```
export const title = "Komodo DeFi SDK Common Structures: Lightning";
export const description = "Lightning network functionality is now available in the Komodo DeFi SDK!";

Expand Down
44 changes: 44 additions & 0 deletions data-for-gpts/komodo-defi-framework-content.txt
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,50 @@ The `WithdrawFee` object varies depending on the coin or token type. Refer to th
"amount": "0.00001"
}
```

### FilterCriteria

The `FilterCriteria` object includes different criteria to filter from the different recent swaps:

| Parameter | Type | Description |
| ---------- | ------------------------ | ---------------------------------------------------------------------- |
| status | object | Return only swaps that match the specified status (e.g., "completed"). |
| date\_from | string (ISO 8601 format) | Return only swaps that started on or after this date. |
| date\_to | string (ISO 8601 format) | Return only swaps that started before this date. |

#### Example

```json
{
"filter": {
"status": "completed",
"date_from": "2024-01-01T00:00:00Z",
"date_to": "2024-07-01T00:00:00Z"
}
}
```

### PagingOptions

The `PagingOptions` object includes options of page selection to consult when looking for recent swaps:

| Parameter | Type | Description |
| ------------ | ---------------- | ---------------------------------------------------------------------------------------------------------------------- |
| from\_uuid | string (or null) | Skips records until this UUID, excluding the record with this UUID. Convenient for infinite scrolling implementations. |
| limit | number | Limits the number of returned swaps. |
| page\_number | number | Returns limit swaps from the selected page. This parameter is ignored if from\_uuid is set. |

#### Example

```json
{
"paging_options": {
"from_uuid": null,
"limit": 10,
"page_number": 1
}
}
```
export const title = "Komodo DeFi SDK Common Structures: Lightning";
export const description = "Lightning network functionality is now available in the Komodo DeFi SDK!";

Expand Down
33 changes: 33 additions & 0 deletions data-for-gpts/smart-chains-content.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12570,6 +12570,39 @@ export const description = "Find the Changelogs of various versions of Komodo da

# Change Log

## v0.9.0

We are happy to announce the release of `0.9.0`. This release includes binaries that you can download below.

This is a **mandatory** major version that **does** include breaking changes.

This release includes the new elected notary node [pubkeys for S8](https://komodoplatform.com/en/blog/official-results-eighth-annual-notary-node-election/) (Season 8), along with other important consensus changes and improvements such as [KIP0002](https://github.com/KomodoPlatform/kips/blob/main/kips/kip-0002.mediawiki) (KMD Block Reward Reduction proposal) and [KIP0003](https://github.com/KomodoPlatform/kips/blob/main/kips/kip-0003.mediawiki) (KMD Transaction Fee Increase and Burn), both of which were [voted](https://komodoplatform.com/en/blog/2024-kip-results/) on and accepted by the Komodo community. As a result, this is a hard-forking release, making it **mandatory** for everyone.

S8 (Season 8) will commence at KMD block `4125988`, which is expected around `Fri Oct 4, 2024, 13:37:33 GMT+0000`. Nodes that are not updated in time will not follow the KMD and assetchains mainnet. Therefore, it is obligatory to update by the mentioned date.

### What's Changed

* Pass CWalletDB to OrderedTxItems() as optional param by @dimxy in [https://github.com/KomodoPlatform/komodo/pull/578](https://github.com/KomodoPlatform/komodo/pull/578)
* build: fix build on xenial (16.04) by @DeckerSU in [https://github.com/KomodoPlatform/komodo/pull/608](https://github.com/KomodoPlatform/komodo/pull/608)
* add chain supply, transparent and burned coins value pools by @DeckerSU in [https://github.com/KomodoPlatform/komodo/pull/609](https://github.com/KomodoPlatform/komodo/pull/609)
* update assetchains.\{json,old} to actual version by @DeckerSU in [https://github.com/KomodoPlatform/komodo/pull/610](https://github.com/KomodoPlatform/komodo/pull/610)
* bump version 0.8.2 \[smaug] by @DeckerSU in [https://github.com/KomodoPlatform/komodo/pull/612](https://github.com/KomodoPlatform/komodo/pull/612)
* 0.8.2 \[Smaug] by @ca333 in [https://github.com/KomodoPlatform/komodo/pull/611](https://github.com/KomodoPlatform/komodo/pull/611)
* allow -ac\_private for the ZOMBIE test chain by @DeckerSU in [https://github.com/KomodoPlatform/komodo/pull/615](https://github.com/KomodoPlatform/komodo/pull/615)
* mac build: fix boost 1.72 build error with clang 16 by @DeckerSU in [https://github.com/KomodoPlatform/komodo/pull/621](https://github.com/KomodoPlatform/komodo/pull/621)
* Remove libsnark, libgmp, mini-gmp by @DeckerSU in [https://github.com/KomodoPlatform/komodo/pull/613](https://github.com/KomodoPlatform/komodo/pull/613)
* Allow on demand publishing to dockerhub by @smk762 in [https://github.com/KomodoPlatform/komodo/pull/614](https://github.com/KomodoPlatform/komodo/pull/614)
* build: use native clang as darwin compiler by @DeckerSU in [https://github.com/KomodoPlatform/komodo/pull/618](https://github.com/KomodoPlatform/komodo/pull/618)
* fix datacarrier related command-line args by @DeckerSU in [https://github.com/KomodoPlatform/komodo/pull/619](https://github.com/KomodoPlatform/komodo/pull/619)
* Add Season 8 pubkeys and update hardfork constants by @smk762 in [https://github.com/KomodoPlatform/komodo/pull/620](https://github.com/KomodoPlatform/komodo/pull/620)
* S8 preps by @ca333 in [https://github.com/KomodoPlatform/komodo/pull/622](https://github.com/KomodoPlatform/komodo/pull/622)
* bump version \[0.9.0] by @DeckerSU in [https://github.com/KomodoPlatform/komodo/pull/624](https://github.com/KomodoPlatform/komodo/pull/624)
* fix osx-build komodod CD workflow by @DeckerSU in [https://github.com/KomodoPlatform/komodo/pull/625](https://github.com/KomodoPlatform/komodo/pull/625)
* enable KIP0003 consensus rule by @DeckerSU in [https://github.com/KomodoPlatform/komodo/pull/626](https://github.com/KomodoPlatform/komodo/pull/626)
* v0.9.0 \[Drogon] by @ca333 in [https://github.com/KomodoPlatform/komodo/pull/623](https://github.com/KomodoPlatform/komodo/pull/623)

**Full Changelog**: [https://github.com/KomodoPlatform/komodo/compare/v0.8.1...v0.9.0](https://github.com/KomodoPlatform/komodo/compare/v0.8.1...v0.9.0)

## v0.8.1 \[Falkor]

* This update is mandatory and includes several security fixes, code refactoring, optimizations, and other improvements.
Expand Down
2 changes: 2 additions & 0 deletions filepathSlugs.json
Original file line number Diff line number Diff line change
Expand Up @@ -4891,6 +4891,8 @@
],
"src/pages/smart-chains/changelog/index.mdx": [
"change-log",
"v0-9-0",
"whats-changed",
"v0-8-1-falkor",
"v0-8-0-beta1-viserion",
"v0-7-2-longpan",
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified preview-images/original/pre-komodo-wallet.jpg
Binary file modified preview-images/original/pre-smart-chains-changelog.jpg
132 changes: 114 additions & 18 deletions preview-images/previewImgTimeStamps.json
Original file line number Diff line number Diff line change
Expand Up @@ -553,9 +553,9 @@
},
"/komodo-defi-framework/api/common_structures": {
"origImgPath": "./preview-images-original/pre-komodo-defi-framework-api-common_structures.jpg",
"dateModified": "2024-09-09T02:07:57.000Z",
"optImgPath": "public/preview-images/pre-komodo-defi-framework-api-common_structures-155134463.jpg",
"optImgHash": 155134463
"dateModified": "2024-09-24T19:26:16.000Z",
"optImgPath": "public/preview-images/pre-komodo-defi-framework-api-common_structures-425093193.jpg",
"optImgHash": 425093193
},
"/komodo-defi-framework/api/common_structures/lightning": {
"origImgPath": "./preview-images-original/pre-komodo-defi-framework-api-common_structures-lightning.jpg",
Expand Down Expand Up @@ -1369,9 +1369,9 @@
},
"/komodo-wallet": {
"origImgPath": "./preview-images-original/pre-komodo-wallet.jpg",
"dateModified": "2024-04-21T19:29:47.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-1076441739.jpg",
"optImgHash": 1076441739
"dateModified": "2024-07-25T09:36:19.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-3077472652.jpg",
"optImgHash": 3077472652
},
"/komodo-wallet/mobile/add-and-activate-coins": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-mobile-add-and-activate-coins.jpg",
Expand All @@ -1381,15 +1381,15 @@
},
"/komodo-wallet/mobile/create-a-new-wallet": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-mobile-create-a-new-wallet.jpg",
"dateModified": "2024-04-03T09:17:49.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-mobile-create-a-new-wallet-1479470862.jpg",
"optImgHash": 1479470862
"dateModified": "2024-07-24T15:05:39.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-mobile-create-a-new-wallet-700438040.jpg",
"optImgHash": 700438040
},
"/komodo-wallet/mobile/delete-seed-phrase": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-mobile-delete-seed-phrase.jpg",
"dateModified": "2024-04-03T09:17:49.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-mobile-delete-seed-phrase-128008029.jpg",
"optImgHash": 128008029
"dateModified": "2024-07-24T15:10:10.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-mobile-delete-seed-phrase-1422222306.jpg",
"optImgHash": 1422222306
},
"/komodo-wallet/mobile": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-mobile.jpg",
Expand Down Expand Up @@ -1621,9 +1621,9 @@
},
"/smart-chains/changelog": {
"origImgPath": "./preview-images-original/pre-smart-chains-changelog.jpg",
"dateModified": "2024-02-09T13:52:20.000Z",
"optImgPath": "public/preview-images/pre-smart-chains-changelog-3437132146.jpg",
"optImgHash": 3437132146
"dateModified": "2024-09-25T17:16:53.000Z",
"optImgPath": "public/preview-images/pre-smart-chains-changelog-1548188314.jpg",
"optImgHash": 1548188314
},
"/smart-chains": {
"origImgPath": "./preview-images-original/pre-smart-chains.jpg",
Expand Down Expand Up @@ -1873,9 +1873,9 @@
},
"/komodo/vote-in-komodo-polls-and-elections/komodo-wallet-web": {
"origImgPath": "./preview-images-original/pre-komodo-vote-in-komodo-polls-and-elections-komodo-wallet-web.jpg",
"dateModified": "2024-04-21T19:26:02.000Z",
"optImgPath": "public/preview-images/pre-komodo-vote-in-komodo-polls-and-elections-komodo-wallet-web-2070933118.jpg",
"optImgHash": 2070933118
"dateModified": "2024-09-24T19:35:10.000Z",
"optImgPath": "public/preview-images/pre-komodo-vote-in-komodo-polls-and-elections-komodo-wallet-web-3403857499.jpg",
"optImgHash": 3403857499
},
"/komodo/vote-in-komodo-polls-and-elections/verus-desktop-wallet": {
"origImgPath": "./preview-images-original/pre-komodo-vote-in-komodo-polls-and-elections-verus-desktop-wallet.jpg",
Expand Down Expand Up @@ -1954,5 +1954,101 @@
"dateModified": "2024-09-13T08:31:57.000Z",
"optImgPath": "public/preview-images/pre-komodo-defi-framework-api-v20-my_recent_swaps-705917205.jpg",
"optImgHash": 705917205
},
"/komodo-wallet/mobile/export-swap-data-from-your-komodo-wallet-mobile-application": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-mobile-export-swap-data-from-your-komodo-wallet-mobile-application.jpg",
"dateModified": "2024-07-25T09:36:19.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-mobile-export-swap-data-from-your-komodo-wallet-mobile-application-2409928665.jpg",
"optImgHash": 2409928665
},
"/komodo-wallet/mobile/how-to-deactivate-coins-using-komodo-wallet": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-mobile-how-to-deactivate-coins-using-komodo-wallet.jpg",
"dateModified": "2024-07-25T09:36:19.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-mobile-how-to-deactivate-coins-using-komodo-wallet-3967913350.jpg",
"optImgHash": 3967913350
},
"/komodo-wallet/mobile/how-to-export-view-private-keys-or-and-seed-phrase-in-komodo-wallet-mobile": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-mobile-how-to-export-view-private-keys-or-and-seed-phrase-in-komodo-wallet-mobile.jpg",
"dateModified": "2024-07-25T09:36:19.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-mobile-how-to-export-view-private-keys-or-and-seed-phrase-in-komodo-wallet-mobile-1150380775.jpg",
"optImgHash": 1150380775
},
"/komodo-wallet/mobile/how-to-use-the-address-book-in-komodo-wallet": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-mobile-how-to-use-the-address-book-in-komodo-wallet.jpg",
"dateModified": "2024-07-25T09:36:19.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-mobile-how-to-use-the-address-book-in-komodo-wallet-1140049903.jpg",
"optImgHash": 1140049903
},
"/komodo-wallet/mobile/how-to-use-the-advanced-mode-in-komodo-wallet": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-mobile-how-to-use-the-advanced-mode-in-komodo-wallet.jpg",
"dateModified": "2024-07-25T09:36:19.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-mobile-how-to-use-the-advanced-mode-in-komodo-wallet-1357794501.jpg",
"optImgHash": 1357794501
},
"/komodo-wallet/mobile/komodo-wallet-faq": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-mobile-komodo-wallet-faq.jpg",
"dateModified": "2024-07-25T09:36:19.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-mobile-komodo-wallet-faq-263250245.jpg",
"optImgHash": 263250245
},
"/komodo-wallet/web/how-to-activate-assets-in-komodo-web-wallet": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-web-how-to-activate-assets-in-komodo-web-wallet.jpg",
"dateModified": "2024-07-25T09:36:19.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-web-how-to-activate-assets-in-komodo-web-wallet-318956313.jpg",
"optImgHash": 318956313
},
"/komodo-wallet/web/how-to-connect-trezor-in-komodo-web-wallet": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-web-how-to-connect-trezor-in-komodo-web-wallet.jpg",
"dateModified": "2024-07-25T09:36:19.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-web-how-to-connect-trezor-in-komodo-web-wallet-2190979461.jpg",
"optImgHash": 2190979461
},
"/komodo-wallet/web/how-to-create-wallet-in-komodo-web-wallet": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-web-how-to-create-wallet-in-komodo-web-wallet.jpg",
"dateModified": "2024-07-26T11:32:08.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-web-how-to-create-wallet-in-komodo-web-wallet-2292279713.jpg",
"optImgHash": 2292279713
},
"/komodo-wallet/web/how-to-deactivate-assets-in-komodo-web-wallet": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-web-how-to-deactivate-assets-in-komodo-web-wallet.jpg",
"dateModified": "2024-07-25T09:36:19.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-web-how-to-deactivate-assets-in-komodo-web-wallet-1026905661.jpg",
"optImgHash": 1026905661
},
"/komodo-wallet/web/how-to-do-a-maker-swap-in-komodo-web-wallet": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-web-how-to-do-a-maker-swap-in-komodo-web-wallet.jpg",
"dateModified": "2024-07-25T09:38:39.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-web-how-to-do-a-maker-swap-in-komodo-web-wallet-970626376.jpg",
"optImgHash": 970626376
},
"/komodo-wallet/web/how-to-do-a-taker-swap-in-komodo-web-wallet": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-web-how-to-do-a-taker-swap-in-komodo-web-wallet.jpg",
"dateModified": "2024-07-25T09:38:39.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-web-how-to-do-a-taker-swap-in-komodo-web-wallet-2483973049.jpg",
"optImgHash": 2483973049
},
"/komodo-wallet/web/how-to-import-wallet-in-komodo-web-wallet": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-web-how-to-import-wallet-in-komodo-web-wallet.jpg",
"dateModified": "2024-07-25T09:36:19.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-web-how-to-import-wallet-in-komodo-web-wallet-3210055595.jpg",
"optImgHash": 3210055595
},
"/komodo-wallet/web/how-to-receive-funds-in-komodo-web-wallet": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-web-how-to-receive-funds-in-komodo-web-wallet.jpg",
"dateModified": "2024-07-25T09:36:19.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-web-how-to-receive-funds-in-komodo-web-wallet-2196313805.jpg",
"optImgHash": 2196313805
},
"/komodo-wallet/web/how-to-withdraw-send-funds-in-komodo-web-wallet": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-web-how-to-withdraw-send-funds-in-komodo-web-wallet.jpg",
"dateModified": "2024-07-25T09:36:19.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-web-how-to-withdraw-send-funds-in-komodo-web-wallet-228861360.jpg",
"optImgHash": 228861360
},
"/komodo-wallet/web": {
"origImgPath": "./preview-images-original/pre-komodo-wallet-web.jpg",
"dateModified": "2024-07-25T09:36:19.000Z",
"optImgPath": "public/preview-images/pre-komodo-wallet-web-3258094392.jpg",
"optImgHash": 3258094392
}
}
Loading

0 comments on commit 68c6c9c

Please sign in to comment.