-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updates to main and new identity subdomain
Recent BitClout changes: - new identity subdomain - wallet migration - Popper.js incorporated for tool tips - fee logic and price changes old < return this.httpClient.get("https://bitcoinfees.earn.com/api/v1/fees/recommended").pipe(tC(this._handleError)) --- > return this.httpClient.get("https://api.blockchain.info/mempool/fees").pipe(tC(this._handleError) new ^ The first returns response like: https://bitcoinfees.earn.com/api/v1/fees/recommended {"fastestFee":102,"halfHourFee":102,"hourFee":88} price was based on fastestFee value. like: null != e.fastestFee ? this.buyBitCloutFields.bitcoinTransactionFeeRateSatoshisPerKB = 3 * e.fastestFee * 1e3 New is like: https://api.blockchain.info/mempool/fees {"limits":{"min":93,"max":403},"regular":186,"priority":269} price is based on priority value ^ like: null != e.priority ? this.buyBitCloutFields.bitcoinTransactionFeeRateSatoshisPerKB = 1.5 * e.priority * 1e3
- Loading branch information
1 parent
de0f91a
commit cb03871
Showing
13 changed files
with
198,386 additions
and
103,565 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,36 @@ | ||
{ | ||
"name": "bitclout", | ||
"short_name": "bitclout", | ||
"description": "The crypto social network", | ||
"icons": [ | ||
{ | ||
"src": "/img/logo-192.png", | ||
"type": "image/png", | ||
"sizes": "192x192", | ||
"purpose": "maskable" | ||
}, | ||
{ | ||
"src": "/img/logo-512.png", | ||
"type": "image/png", | ||
"sizes": "512x512", | ||
"purpose": "maskable" | ||
}, | ||
{ | ||
"src": "/img/logo-192.png", | ||
"type": "image/png", | ||
"sizes": "192x192", | ||
"purpose": "any" | ||
}, | ||
{ | ||
"src": "/img/logo-512.png", | ||
"type": "image/png", | ||
"sizes": "512x512", | ||
"purpose": "any" | ||
} | ||
], | ||
"start_url": "/?password=f1bf8c5158787b4f50b29a6072e27cd03df3a8d71ee62ff4d8c9f928ba2ed08f", | ||
"scope": "/", | ||
"display": "standalone", | ||
"theme_color": "#182026", | ||
"background_color": "#FFF" | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
identity/src/raw-versions/polyfills-es2015.f257783a3abdd1e9460c.js
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
identity/src/raw-versions/runtime-es2015.6084f99a250f3636f254.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.