Skip to content

Commit

Permalink
switch to blocksights explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
sschiessl-bcp committed Dec 21, 2021
1 parent 677f4ef commit 13d766e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/blockchains/BitShares.js
Original file line number Diff line number Diff line change
Expand Up @@ -439,13 +439,13 @@ export default class BitShares extends BlockchainAPI {

getExplorer(object) {
if (object.accountName) {
return "https://open-explorer.io/#/accounts/" + object.accountID;
return "https://blocksights.info/#/accounts/" + object.accountID;
} else if (object.opid) {
// 1.11.833380474
return "https://open-explorer.io/#/operations/" + object.opid;
return "https://blocksights.info/#/operations/" + object.opid;
} else if (object.txid) {
// e94404a94b4bb160601241ffb78ad0e615a9636b
return "https://bitsharescan.com/transaction/" + object.txid;
return "https://blocksights.info/#/txs/" + object.txid;
} else {
return false;
}
Expand Down

0 comments on commit 13d766e

Please sign in to comment.