Skip to content

Commit

Permalink
gui_auth -> komodo_auth
Browse files Browse the repository at this point in the history
  • Loading branch information
smk762 committed Oct 30, 2024
1 parent 96a77d7 commit fbc6a19
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,21 +147,21 @@ The `EvmNode` object includes the following items for a given coin or token:
| Parameter | Type | Description |
| --------- | ------- | ------------------------------------------------------------------------------------------------------------------- |
| url | string | URL of an RPC node |
| gui\_auth | boolean | Optional, defaults to `false`. Must be set to `true` to access RPC nodes run officially by the Komodo Platform team |
| komodo\_auth | boolean | Optional, defaults to `false`. Must be set to `true` to access RPC nodes run officially by the Komodo Platform team |

#### v2.1.0 (current release)

<CollapsibleSection expandedText="Hide Example" collapsedText="Show Example">
```json
{
"url": "http://eth1.cipig.net:8555",
"gui_auth": false
"komodo_auth": false
}
```
</CollapsibleSection>

<Note>
The `gui_auth` field will be replaced with the `komodo_auth` field in the v2.2.0 release.
Prior to the v2.2.0 release, the `gui_auth` field was used to access RPC nodes run officially by the Komodo Platform team. This field was replaced with the `komodo_auth` field in the v2.2.0 release.
</Note>

#### v2.2.0+
Expand All @@ -179,24 +179,24 @@ The `EvmNode` object includes the following items for a given coin or token:

The `TendermintNode` object includes the following items for a given coin or token:

| Parameter | Type | Description |
| --------- | ------- | ------------------------------------------------------------------------------------------------------------------- |
| url | string | URL of an RPC node |
| gui\_auth | boolean | Optional, defaults to `false`. Must be set to `true` to access RPC nodes run officially by the Komodo Platform team |
| Parameter | Type | Description |
| ------------ | ------- | ------------------------------------------------------------------------------------------------------------------- |
| url | string | URL of an RPC node |
| komodo\_auth | boolean | Optional, defaults to `false`. Must be set to `true` to access RPC nodes run officially by the Komodo Platform team |

#### v2.1.0 (current release)

<CollapsibleSection expandedText="Hide Example" collapsedText="Show Example">
```json
{
"url": "http://eth1.cipig.net:8555",
"gui_auth": false
"komodo_auth": false
}
```
</CollapsibleSection>

<Note>
The `gui_auth` field will be replaced with the `komodo_auth` field in the v2.2.0 release.
Prior to the v2.2.0 release, the `gui_auth` field was used to access RPC nodes run officially by the Komodo Platform team. This field was replaced with the `komodo_auth` field in the v2.2.0 release.
</Note>

#### v2.2.0+
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ Additionally, it supports ERC20 tokens on the ETH chain and associated ERC20 lik
"nodes": [
{
"url": "http://eth1.cipig.net:18555",
"gui_auth": false
"komodo_auth": false
},
{
"url": "https://node.komodo.earth:8080/ethereum",
"gui_auth": true
"komodo_auth": true
}
],
"rpc_mode": "Http",
Expand Down

0 comments on commit fbc6a19

Please sign in to comment.