Skip to content

Commit

Permalink
Fixed iOS UI thread block issue
Browse files Browse the repository at this point in the history
  • Loading branch information
BitcoinZavior committed Jan 21, 2024
1 parent 37b33a8 commit 97b12e2
Show file tree
Hide file tree
Showing 22 changed files with 2,038 additions and 1,284 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.30.0]

#### APIs added

- Added `BIP-86` descriptor templates


## [0.29.0]

#### APIs added
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ cd ios && pod install

```ts
import { DescriptorSecretKey, Mnemonic, Blockchain, Wallet, DatabaseConfig, Descriptor } from 'bdk-rn';
import { WordCount, Network } from 'bdk-rn/lib/lib/enums';
import { WordCount, Network, KeychainKind } from 'bdk-rn/lib/lib/enums';

// ....

Expand All @@ -69,7 +69,7 @@ const config: BlockchainElectrumConfig = {
sock5: null,
retry: 5,
timeout: 5,
stopGap: 100,
stopGap: 500,
validateDomain: false,
};

Expand Down Expand Up @@ -111,8 +111,10 @@ const dbConfig = await new DatabaseConfig().sqlite(`${RNFS.DocumentDirectoryPath
```

### References:

- Setting up a local Esplora instance for testing:
https://bitcoin.stackexchange.com/questions/116937/how-do-i-setup-an-esplora-instance-for-local-testing/116938#116938
https://bitcoin.stackexchange.com/questions/116937/how-do-i-setup-an-esplora-instance-for-local-testing/116938#116938

---

_Note: Caution this is an Alpha at this stage
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ dependencies {
implementation 'com.facebook.react:react-native:+'

// bitcoindevkit
implementation 'org.bitcoindevkit:bdk-android:0.29.0'
implementation 'org.bitcoindevkit:bdk-android:0.30.0'
}
Loading

0 comments on commit 97b12e2

Please sign in to comment.