-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for showing BTC and USD (or local) currency prices. #27
Open
sondreb
wants to merge
33
commits into
imclint21:feature/multichain
Choose a base branch
from
CityChainFoundation:feature/multichain
base: feature/multichain
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 4 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
d340595
Add support for showing BTC and USD (or local) currency prices.
sondreb 9d566cc
- Add the API documentation, even though it should had been generated…
sondreb 2273c38
Upgrade to v5 of Font Awesome to get BTC icon
sondreb 3f4342c
Update the documentation
sondreb b8ff6e9
Temporary enable Documentation to not be in gitignore.
sondreb 4073a91
Remove site - configure gitbook
sondreb 3ef1c25
Update URL for API documentation
sondreb 27e614a
Add null check for handling when APIs are returning server errors.
sondreb 33f3d3b
Remove unused usings
sondreb 72438f0
Update a package that returns restore error
sondreb 72adbd3
Update README.md
sondreb f08d5c1
Minor fix for Azure deploy
sondreb 00da693
Upgrade the default OS disk size
sondreb 5c27f00
New requirements in ARM
sondreb 4e25620
Changed to dynamic IP assignment
sondreb b48048f
Update OS version
sondreb 0ad0f88
Fix the path for one-click deploy buttons
sondreb 0c1ce4e
Add version query parameter to Nako Indexer API
sondreb 21d7416
- Fix issue with decimal points after recent Nako indexer upgrades.
sondreb 43509be
- Fixes queries against Nako by including the version query parameter.
sondreb bc2b17a
Fix parse bug for block height
sondreb 46b401d
Add transaction details
sondreb b4528cb
Change the hero graphics image type
sondreb fa59ca6
- Fix link to hero
sondreb 0e21df7
Update _Layout.cshtml
sondreb 0035ac6
Add a try/catch around GetTicker
sondreb 312e61b
Update CoinTagHelper.cs
sondreb 0d8d5e9
Fix routing issue that caused 404 errors (invalid links)
sondreb d118848
Fix 404 generated link issues
sondreb 8eb7cc5
Improve API and API documentation
sondreb 3a13a4f
Update CITY.json
sondreb dee5271
Improve the decimal separator for different cultures
sondreb eba03ed
Add support for XDS
sondreb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
site_name: Stratis.Guru | ||
site_description: Strati.Guru API Documentation | ||
site_name: City.Chain.Explorer | ||
site_description: City Chain Explorer API Documentation | ||
site_author: Clint Mourlevat | ||
repo_url: https://github.com/clintnetwork/stratis-guru-v2.git | ||
google_analytics: ["UA-111742056-1", "stratis.guru"] | ||
repo_url: https://github.com/CityChainFoundation/city-explorer.git | ||
theme: readthedocs |
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,121 @@ | ||
<!DOCTYPE html> | ||
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]--> | ||
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]--> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<meta name="author" content="Clint Mourlevat"> | ||
<link rel="shortcut icon" href="/img/favicon.ico"> | ||
<title>City.Chain.Explorer</title> | ||
<link href='https://fonts.googleapis.com/css?family=Lato:400,700|Roboto+Slab:400,700|Inconsolata:400,700' rel='stylesheet' type='text/css'> | ||
|
||
<link rel="stylesheet" href="/css/theme.css" type="text/css" /> | ||
<link rel="stylesheet" href="/css/theme_extra.css" type="text/css" /> | ||
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/github.min.css"> | ||
|
||
<script src="/js/jquery-2.1.1.min.js" defer></script> | ||
<script src="/js/modernizr-2.8.3.min.js" defer></script> | ||
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script> | ||
<script>hljs.initHighlightingOnLoad();</script> | ||
|
||
</head> | ||
|
||
<body class="wy-body-for-nav" role="document"> | ||
|
||
<div class="wy-grid-for-nav"> | ||
|
||
|
||
<nav data-toggle="wy-nav-shift" class="wy-nav-side stickynav"> | ||
<div class="wy-side-nav-search"> | ||
<a href="/." class="icon icon-home"> City.Chain.Explorer</a> | ||
<div role="search"> | ||
<form id ="rtd-search-form" class="wy-form" action="//search.html" method="get"> | ||
<input type="text" name="q" placeholder="Search docs" title="Type search term here" /> | ||
</form> | ||
</div> | ||
</div> | ||
|
||
<div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation"> | ||
<ul class="current"> | ||
|
||
|
||
<li class="toctree-l1"> | ||
|
||
<a class="" href="/.">City Chain Explorer Documentation</a> | ||
</li> | ||
|
||
</ul> | ||
</div> | ||
| ||
</nav> | ||
|
||
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"> | ||
|
||
|
||
<nav class="wy-nav-top" role="navigation" aria-label="top navigation"> | ||
<i data-toggle="wy-nav-top" class="fa fa-bars"></i> | ||
<a href="/.">City.Chain.Explorer</a> | ||
</nav> | ||
|
||
|
||
<div class="wy-nav-content"> | ||
<div class="rst-content"> | ||
<div role="navigation" aria-label="breadcrumbs navigation"> | ||
<ul class="wy-breadcrumbs"> | ||
<li><a href="/.">Docs</a> »</li> | ||
|
||
|
||
<li class="wy-breadcrumbs-aside"> | ||
|
||
</li> | ||
</ul> | ||
<hr/> | ||
</div> | ||
<div role="main"> | ||
<div class="section"> | ||
|
||
|
||
<h1 id="404-page-not-found">404</h1> | ||
|
||
<p><strong>Page not found</strong></p> | ||
|
||
|
||
</div> | ||
</div> | ||
<footer> | ||
|
||
|
||
<hr/> | ||
|
||
<div role="contentinfo"> | ||
<!-- Copyright etc --> | ||
|
||
</div> | ||
|
||
Built with <a href="http://www.mkdocs.org">MkDocs</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>. | ||
</footer> | ||
|
||
</div> | ||
</div> | ||
|
||
</section> | ||
|
||
</div> | ||
|
||
<div class="rst-versions" role="note" style="cursor: pointer"> | ||
<span class="rst-current-version" data-toggle="rst-current-version"> | ||
|
||
<a href="https://github.com/CityChainFoundation/city-explorer.git/" class="fa fa-github" style="float: left; color: #fcfcfc"> GitHub</a> | ||
|
||
|
||
|
||
</span> | ||
</div> | ||
<script>var base_url = '/';</script> | ||
<script src="/js/theme.js" defer></script> | ||
<script src="/search/main.js" defer></script> | ||
|
||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it multichain or citychain Oo