-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Manually reapplied] Merge pull request #3804 from nymtech/feature/ex…
…plorer-gateway-iplocation This was originally a commit 'b0a45c03b16c74697d8b46428fd83a25a5168add'. However, we had to manually reapply it due to accidentally messing up the branch history.
- Loading branch information
Showing
12 changed files
with
140 additions
and
348 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
CONFIGURED=true | ||
|
||
RUST_LOG=info | ||
RUST_BACKTRACE=1 | ||
|
||
BECH32_PREFIX=n | ||
MIX_DENOM=unym | ||
MIX_DENOM_DISPLAY=nym | ||
STAKE_DENOM=unyx | ||
STAKE_DENOM_DISPLAY=nyx | ||
DENOMS_EXPONENT=6 | ||
|
||
REWARDING_VALIDATOR_ADDRESS=n1pefc2utwpy5w78p2kqdsfmpjxfwmn9d39k5mqa | ||
MIXNET_CONTRACT_ADDRESS=n1xr3rq8yvd7qplsw5yx90ftsr2zdhg4e9z60h5duusgxpv72hud3sjkxkav | ||
VESTING_CONTRACT_ADDRESS=n1unyuj8qnmygvzuex3dwmg9yzt9alhvyeat0uu0jedg2wj33efl5qackslz | ||
BANDWIDTH_CLAIM_CONTRACT_ADDRESS=n19lc9u84cz0yz3fww5283nucc9yvr8gsjmgeul0 | ||
COCONUT_BANDWIDTH_CONTRACT_ADDRESS=n16a32stm6kknhq5cc8rx77elr66pygf2hfszw7wvpq746x3uffylqkjar4l | ||
GROUP_CONTRACT_ADDRESS=n1pd7kfgvr5tpcv0xnlv46c4jsq9jg2r799xxrcwqdm4l2jhq2pjwqrmz5ju | ||
MULTISIG_CONTRACT_ADDRESS=n14ph4e660eyqz0j36zlkaey4zgzexm5twkmjlqaequxr2cjm9eprqsmad6k | ||
COCONUT_DKG_CONTRACT_ADDRESS=n1ahg0erc2fs6xx3j5m8sfx3ryuzdjh6kf6qm9plsf865fltekyrfsesac6a | ||
NAME_SERVICE_CONTRACT_ADDRESS=n12ne7qtmdwd0j03t9t5es8md66wq4e5xg9neladrsag8fx3y89rcs36asfp | ||
SERVICE_PROVIDER_DIRECTORY_CONTRACT_ADDRESS=n1ps5yutd7sufwg058qd7ac7ldnlazsvmhzqwucsfxmm445d70u8asqxpur4 | ||
|
||
STATISTICS_SERVICE_DOMAIN_ADDRESS="http://0.0.0.0" | ||
NYXD="https://sandbox-validator1.nymtech.net" | ||
NYM_API="https://sandbox-nym-api1.nymtech.net/api" | ||
|
||
GEOIP_DB_PATH=geo_ip/GeoLite2-City.mmdb | ||
# MaxMind account ID | ||
# TODO replace with your own account ID | ||
GEOIPUPDATE_ACCOUNT_ID=xxx | ||
# MaxMind license key | ||
# TODO replace with your own license key | ||
GEOIPUPDATE_LICENSE_KEY=xxx | ||
# List of space-separated database edition IDs. Edition IDs may | ||
# consist of letters, digits, and dashes. For example, GeoIP2-City | ||
# would download the GeoIP2 City database (GeoIP2-City). | ||
GEOIPUPDATE_EDITION_IDS=GeoLite2-City | ||
# The number of hours between geoipupdate runs. If this is not set | ||
# or is set to 0, geoipupdate will run once and exit. | ||
GEOIPUPDATE_FREQUENCY=72 | ||
# The path to the directory where geoipupdate will download the | ||
# database. | ||
GEOIP_DB_DIRECTORY=./geo_ip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
target | ||
explorer-api-state.json | ||
/geo_ip | ||
!.env.dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# When running the explorer API locally | ||
#EXPLORER_API_URL=http://localhost:8000/v1 | ||
|
||
EXPLORER_API_URL=https://sandbox-explorer.nymtech.net/api/v1 | ||
NYM_API_URL=https://sandbox-nym-api1.nymtech.net | ||
VALIDATOR_URL=https://sandbox-validator1.nymtech.net | ||
BIG_DIPPER_URL=https://sandbox-blocks.nymtech.net | ||
CURRENCY_DENOM=unym | ||
CURRENCY_STAKING_DENOM=unyx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
dist | ||
.DS_Store | ||
detailAPI.md | ||
detailAPI.md | ||
!.env.dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.