2024-09-18 07:55:47 +00:00
|
|
|
{
|
test_: Code Migration from status-cli-tests
author shashankshampi <shashank.sanket1995@gmail.com> 1729780155 +0530
committer shashankshampi <shashank.sanket1995@gmail.com> 1730274350 +0530
test: Code Migration from status-cli-tests
fix_: functional tests (#5979)
* fix_: generate on test-functional
* chore(test)_: fix functional test assertion
---------
Co-authored-by: Siddarth Kumar <siddarthkay@gmail.com>
feat(accounts)_: cherry-pick Persist acceptance of Terms of Use & Privacy policy (#5766) (#5977)
* feat(accounts)_: Persist acceptance of Terms of Use & Privacy policy (#5766)
The original GH issue https://github.com/status-im/status-mobile/issues/21113
came from a request from the Legal team. We must show to Status v1 users the new
terms (Terms of Use & Privacy Policy) right after they upgrade to Status v2
from the stores.
The solution we use is to create a flag in the accounts table, named
hasAcceptedTerms. The flag will be set to true on the first account ever
created in v2 and we provide a native call in mobile/status.go#AcceptTerms,
which allows the client to persist the user's choice in case they are upgrading
(from v1 -> v2, or from a v2 older than this PR).
This solution is not the best because we should store the setting in a separate
table, not in the accounts table.
Related Mobile PR https://github.com/status-im/status-mobile/pull/21124
* fix(test)_: Compare addresses using uppercased strings
---------
Co-authored-by: Icaro Motta <icaro.ldm@gmail.com>
test_: restore account (#5960)
feat_: `LogOnPanic` linter (#5969)
* feat_: LogOnPanic linter
* fix_: add missing defer LogOnPanic
* chore_: make vendor
* fix_: tests, address pr comments
* fix_: address pr comments
fix(ci)_: remove workspace and tmp dir
This ensures we do not encounter weird errors like:
```
+ ln -s /home/jenkins/workspace/go_prs_linux_x86_64_main_PR-5907 /home/jenkins/workspace/go_prs_linux_x86_64_main_PR-5907@tmp/go/src/github.com/status-im/status-go
ln: failed to create symbolic link '/home/jenkins/workspace/go_prs_linux_x86_64_main_PR-5907@tmp/go/src/github.com/status-im/status-go': File exists
script returned exit code 1
```
Signed-off-by: Jakub Sokołowski <jakub@status.im>
chore_: enable windows and macos CI build (#5840)
- Added support for Windows and macOS in CI pipelines
- Added missing dependencies for Windows and x86-64-darwin
- Resolved macOS SDK version compatibility for darwin-x86_64
The `mkShell` override was necessary to ensure compatibility with the newer
macOS SDK (version 11.0) for x86_64. The default SDK (10.12) was causing build failures
because of the missing libs and frameworks. OverrideSDK creates a mapping from
the default SDK in all package categories to the requested SDK (11.0).
fix(contacts)_: fix trust status not being saved to cache when changed (#5965)
Fixes https://github.com/status-im/status-desktop/issues/16392
cleanup
added logger and cleanup
review comments changes
fix_: functional tests (#5979)
* fix_: generate on test-functional
* chore(test)_: fix functional test assertion
---------
Co-authored-by: Siddarth Kumar <siddarthkay@gmail.com>
feat(accounts)_: cherry-pick Persist acceptance of Terms of Use & Privacy policy (#5766) (#5977)
* feat(accounts)_: Persist acceptance of Terms of Use & Privacy policy (#5766)
The original GH issue https://github.com/status-im/status-mobile/issues/21113
came from a request from the Legal team. We must show to Status v1 users the new
terms (Terms of Use & Privacy Policy) right after they upgrade to Status v2
from the stores.
The solution we use is to create a flag in the accounts table, named
hasAcceptedTerms. The flag will be set to true on the first account ever
created in v2 and we provide a native call in mobile/status.go#AcceptTerms,
which allows the client to persist the user's choice in case they are upgrading
(from v1 -> v2, or from a v2 older than this PR).
This solution is not the best because we should store the setting in a separate
table, not in the accounts table.
Related Mobile PR https://github.com/status-im/status-mobile/pull/21124
* fix(test)_: Compare addresses using uppercased strings
---------
Co-authored-by: Icaro Motta <icaro.ldm@gmail.com>
test_: restore account (#5960)
feat_: `LogOnPanic` linter (#5969)
* feat_: LogOnPanic linter
* fix_: add missing defer LogOnPanic
* chore_: make vendor
* fix_: tests, address pr comments
* fix_: address pr comments
chore_: enable windows and macos CI build (#5840)
- Added support for Windows and macOS in CI pipelines
- Added missing dependencies for Windows and x86-64-darwin
- Resolved macOS SDK version compatibility for darwin-x86_64
The `mkShell` override was necessary to ensure compatibility with the newer
macOS SDK (version 11.0) for x86_64. The default SDK (10.12) was causing build failures
because of the missing libs and frameworks. OverrideSDK creates a mapping from
the default SDK in all package categories to the requested SDK (11.0).
fix(contacts)_: fix trust status not being saved to cache when changed (#5965)
Fixes https://github.com/status-im/status-desktop/issues/16392
test_: remove port bind
chore(wallet)_: move route execution code to separate module
chore_: replace geth logger with zap logger (#5962)
closes: #6002
feat(telemetry)_: add metrics for message reliability (#5899)
* feat(telemetry)_: track message reliability
Add metrics for dial errors, missed messages,
missed relevant messages, and confirmed delivery.
* fix_: handle error from json marshal
chore_: use zap logger as request logger
iterates: status-im/status-desktop#16536
test_: unique project per run
test_: use docker compose v2, more concrete project name
fix(codecov)_: ignore folders without tests
Otherwise Codecov reports incorrect numbers when making changes.
https://docs.codecov.com/docs/ignoring-paths
Signed-off-by: Jakub Sokołowski <jakub@status.im>
test_: verify schema of signals during init; fix schema verification warnings (#5947)
fix_: update defaultGorushURL (#6011)
fix(tests)_: use non-standard port to avoid conflicts
We have observed `nimbus-eth2` build failures reporting this port:
```json
{
"lvl": "NTC",
"ts": "2024-10-28 13:51:32.308+00:00",
"msg": "REST HTTP server could not be started",
"topics": "beacnde",
"address": "127.0.0.1:5432",
"reason": "(98) Address already in use"
}
```
https://ci.status.im/job/nimbus-eth2/job/platforms/job/linux/job/x86_64/job/main/job/PR-6683/3/
Signed-off-by: Jakub Sokołowski <jakub@status.im>
fix_: create request logger ad-hoc in tests
Fixes `TestCall` failing when run concurrently.
chore_: configure codecov (#6005)
* chore_: configure codecov
* fix_: after_n_builds
2024-10-24 14:29:15 +00:00
|
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
2024-09-18 07:55:47 +00:00
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"jsonrpc": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"result": {
|
|
|
|
"properties": {
|
|
|
|
"": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"AED": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"AFN": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"ALL": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"AMD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"ANG": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"AOA": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"ARS": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"AUD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"AWG": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"AZN": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"BAM": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"BBD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"BDT": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"BGN": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"BHD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"BIF": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"BMD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"BND": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"BOB": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"BOV": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"BRL": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"BSD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"BTN": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"BWP": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"BYN": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"BZD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"CAD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"CDF": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"CHE": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"CHF": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"CHW": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"CLF": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"CLP": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"CNY": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"COP": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"COU": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"CRC": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"CUC": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"CUP": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"CVE": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"CZK": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"DJF": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"DKK": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"DOP": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"DZD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"EGP": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"ERN": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"ETB": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"EUR": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"FJD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"FKP": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"GBP": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"GEL": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"GHS": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"GIP": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"GMD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"GNF": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"GTQ": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"GYD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"Gwei": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"HKD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"HNL": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"HTG": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"HUF": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"IDR": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"ILS": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"INR": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"IQD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"IRR": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"ISK": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"JMD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"JOD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"JPY": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"KES": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"KGS": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"KHR": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"KMF": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"KPW": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"KRW": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"KWD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"KYD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"KZT": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"LAK": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"LBP": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"LKR": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"LRD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"LSL": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"LYD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"MAD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"MDL": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"MGA": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"MKD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"MMK": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"MNT": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"MOP": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"MRU": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"MUR": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"MVR": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"MWK": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"MXN": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"MXV": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"MYR": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"MZN": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"NAD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"NGN": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"NIO": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"NOK": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"NPR": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"NZD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"OMR": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"PAB": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"PEN": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"PGK": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"PHP": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"PKR": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"PLN": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"PYG": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"QAR": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"RON": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"RSD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"RUB": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"RWF": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"SAR": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"SBD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"SCR": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"SDG": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"SEK": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"SGD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"SHP": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"SLE": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"SLL": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"SOS": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"SRD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"SSP": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"STN": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"SVC": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"SYP": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"SZL": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"THB": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"TJS": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"TMT": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"TND": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"TOP": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"TRY": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"TTD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"TWD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"TZS": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"UAH": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"UGX": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"USD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"USN": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"UYI": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"UYU": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"UYW": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"UZS": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"VED": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"VES": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"VND": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"VUV": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"WST": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"XAF": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"XAG": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"XAU": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"XBA": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"XBB": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"XBC": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"XBD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"XCD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"XDR": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"XOF": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"XPD": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"XPF": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"XPT": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"XSU": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"XTS": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"XUA": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"XXX": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"YER": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"ZAR": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"ZMW": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"ZWL": {
|
|
|
|
"properties": {
|
|
|
|
"displayDecimals": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"stripTrailingZeroes": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"symbol": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"displayDecimals",
|
|
|
|
"stripTrailingZeroes",
|
|
|
|
"symbol"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"",
|
|
|
|
"AED",
|
|
|
|
"AFN",
|
|
|
|
"ALL",
|
|
|
|
"AMD",
|
|
|
|
"ANG",
|
|
|
|
"AOA",
|
|
|
|
"ARS",
|
|
|
|
"AUD",
|
|
|
|
"AWG",
|
|
|
|
"AZN",
|
|
|
|
"BAM",
|
|
|
|
"BBD",
|
|
|
|
"BDT",
|
|
|
|
"BGN",
|
|
|
|
"BHD",
|
|
|
|
"BIF",
|
|
|
|
"BMD",
|
|
|
|
"BND",
|
|
|
|
"BOB",
|
|
|
|
"BOV",
|
|
|
|
"BRL",
|
|
|
|
"BSD",
|
|
|
|
"BTN",
|
|
|
|
"BWP",
|
|
|
|
"BYN",
|
|
|
|
"BZD",
|
|
|
|
"CAD",
|
|
|
|
"CDF",
|
|
|
|
"CHE",
|
|
|
|
"CHF",
|
|
|
|
"CHW",
|
|
|
|
"CLF",
|
|
|
|
"CLP",
|
|
|
|
"CNY",
|
|
|
|
"COP",
|
|
|
|
"COU",
|
|
|
|
"CRC",
|
|
|
|
"CUC",
|
|
|
|
"CUP",
|
|
|
|
"CVE",
|
|
|
|
"CZK",
|
|
|
|
"DJF",
|
|
|
|
"DKK",
|
|
|
|
"DOP",
|
|
|
|
"DZD",
|
|
|
|
"EGP",
|
|
|
|
"ERN",
|
|
|
|
"ETB",
|
|
|
|
"EUR",
|
|
|
|
"FJD",
|
|
|
|
"FKP",
|
|
|
|
"GBP",
|
|
|
|
"GEL",
|
|
|
|
"GHS",
|
|
|
|
"GIP",
|
|
|
|
"GMD",
|
|
|
|
"GNF",
|
|
|
|
"GTQ",
|
|
|
|
"GYD",
|
|
|
|
"Gwei",
|
|
|
|
"HKD",
|
|
|
|
"HNL",
|
|
|
|
"HTG",
|
|
|
|
"HUF",
|
|
|
|
"IDR",
|
|
|
|
"ILS",
|
|
|
|
"INR",
|
|
|
|
"IQD",
|
|
|
|
"IRR",
|
|
|
|
"ISK",
|
|
|
|
"JMD",
|
|
|
|
"JOD",
|
|
|
|
"JPY",
|
|
|
|
"KES",
|
|
|
|
"KGS",
|
|
|
|
"KHR",
|
|
|
|
"KMF",
|
|
|
|
"KPW",
|
|
|
|
"KRW",
|
|
|
|
"KWD",
|
|
|
|
"KYD",
|
|
|
|
"KZT",
|
|
|
|
"LAK",
|
|
|
|
"LBP",
|
|
|
|
"LKR",
|
|
|
|
"LRD",
|
|
|
|
"LSL",
|
|
|
|
"LYD",
|
|
|
|
"MAD",
|
|
|
|
"MDL",
|
|
|
|
"MGA",
|
|
|
|
"MKD",
|
|
|
|
"MMK",
|
|
|
|
"MNT",
|
|
|
|
"MOP",
|
|
|
|
"MRU",
|
|
|
|
"MUR",
|
|
|
|
"MVR",
|
|
|
|
"MWK",
|
|
|
|
"MXN",
|
|
|
|
"MXV",
|
|
|
|
"MYR",
|
|
|
|
"MZN",
|
|
|
|
"NAD",
|
|
|
|
"NGN",
|
|
|
|
"NIO",
|
|
|
|
"NOK",
|
|
|
|
"NPR",
|
|
|
|
"NZD",
|
|
|
|
"OMR",
|
|
|
|
"PAB",
|
|
|
|
"PEN",
|
|
|
|
"PGK",
|
|
|
|
"PHP",
|
|
|
|
"PKR",
|
|
|
|
"PLN",
|
|
|
|
"PYG",
|
|
|
|
"QAR",
|
|
|
|
"RON",
|
|
|
|
"RSD",
|
|
|
|
"RUB",
|
|
|
|
"RWF",
|
|
|
|
"SAR",
|
|
|
|
"SBD",
|
|
|
|
"SCR",
|
|
|
|
"SDG",
|
|
|
|
"SEK",
|
|
|
|
"SGD",
|
|
|
|
"SHP",
|
|
|
|
"SLE",
|
|
|
|
"SLL",
|
|
|
|
"SOS",
|
|
|
|
"SRD",
|
|
|
|
"SSP",
|
|
|
|
"STN",
|
|
|
|
"SVC",
|
|
|
|
"SYP",
|
|
|
|
"SZL",
|
|
|
|
"THB",
|
|
|
|
"TJS",
|
|
|
|
"TMT",
|
|
|
|
"TND",
|
|
|
|
"TOP",
|
|
|
|
"TRY",
|
|
|
|
"TTD",
|
|
|
|
"TWD",
|
|
|
|
"TZS",
|
|
|
|
"UAH",
|
|
|
|
"UGX",
|
|
|
|
"USD",
|
|
|
|
"USN",
|
|
|
|
"UYI",
|
|
|
|
"UYU",
|
|
|
|
"UYW",
|
|
|
|
"UZS",
|
|
|
|
"VED",
|
|
|
|
"VES",
|
|
|
|
"VND",
|
|
|
|
"VUV",
|
|
|
|
"WST",
|
|
|
|
"XAF",
|
|
|
|
"XAG",
|
|
|
|
"XAU",
|
|
|
|
"XBA",
|
|
|
|
"XBB",
|
|
|
|
"XBC",
|
|
|
|
"XBD",
|
|
|
|
"XCD",
|
|
|
|
"XDR",
|
|
|
|
"XOF",
|
|
|
|
"XPD",
|
|
|
|
"XPF",
|
|
|
|
"XPT",
|
|
|
|
"XSU",
|
|
|
|
"XTS",
|
|
|
|
"XUA",
|
|
|
|
"XXX",
|
|
|
|
"YER",
|
|
|
|
"ZAR",
|
|
|
|
"ZMW",
|
|
|
|
"ZWL"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"id",
|
|
|
|
"jsonrpc",
|
|
|
|
"result"
|
|
|
|
],
|
|
|
|
"type": "object"
|
|
|
|
}
|