Skip to content

Commit

Permalink
fixing bugs and refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
kieled committed Dec 19, 2023
1 parent 24d00fe commit d735d1e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
6 changes: 5 additions & 1 deletion configs/manifests/firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,9 @@
"gecko_android": {
"strict_min_version": "113.0"
}
}
},
"host_permissions": [
"https://nonkyc.io/*",
"https://bells.quark.blue/*"
]
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bells-extension",
"version": "0.0.3",
"version": "0.0.4",
"private": true,
"scripts": {
"dev": "bun build.ts --watch",
Expand Down Expand Up @@ -36,7 +36,7 @@
"@unisat/bitcoin-hd-keyring": "^1.2.0",
"@unisat/bitcoinjs-wallet": "^0.1.0",
"@unisat/ord-utils": "^0.4.0",
"bellhdw": "^0.2.2",
"bellhdw": "^0.2.3",
"big.js": "^6.2.1",
"bip39": "^3.1.0",
"browser-passworder": "^2.0.3",
Expand Down
3 changes: 1 addition & 2 deletions src/background/controllers/apiController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ class ApiController implements IApiController {
): Promise<ITransaction[] | undefined> {
try {
return await fetchTDCMainnet<ITransaction[]>({
path: `/adress/${address}/txs/chain/${txid}`,
// path: `/address/TSofqS7nm8Vnk1fk8jU7YgqQcGuWA7wtnK/txs/chain/${txid}`
path: `/address/${address}/txs/chain/${txid}`,
});
} catch (e) {
return undefined;
Expand Down

0 comments on commit d735d1e

Please sign in to comment.