Skip to content

Commit

Permalink
Merge pull request #38 from formysister/main
Browse files Browse the repository at this point in the history
Sync with `main`
  • Loading branch information
formysister authored Mar 16, 2024
2 parents 8f4d7d0 + f52d587 commit 475003f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ updates:
- package-ecosystem: "github-actions" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
interval: "weekly"
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
interval: "weekly"
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
.DS_Store
node_modules
dist
.vscode
.vscode
package-lock.json
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
"typescript": "^4.7.4",
"webpack": "^5.74.0"
},
"readme": "readme.md",
"readme": "README.md",
"homepage": "https://github.com/formysister/multichain-wallet-sdk#readme",
"repository": {
"url": "https://github.com/formysister/multichain-wallet-sdk"
Expand Down
6 changes: 2 additions & 4 deletions src/wallet_class/bitcoin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import { PrivateKey } from 'bitcore-lib';

import axios, { AxiosResponse } from 'axios';

import { fetchUTXOs } from '../../helper/bitcoinHelper';

import { BtcNetwork, BtcWallet, BtcAccount } from "../../type/type"
import { BITCOIN_DEFAULT, BTC_MAINNET, BTC_REGTEST, BTC_TESTNET } from "../../constant";

Expand All @@ -17,8 +15,8 @@ class BitCoinWallet {

/**
*
* @param privateKey
* @param network
* @param {String} privateKey
* @param {BtcNetwork} network
*/
constructor(privateKey?: string, network?: BtcNetwork) {
if (privateKey) {
Expand Down

0 comments on commit 475003f

Please sign in to comment.