Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,8 @@
* [Configuration](tools/price-rates/configuration.md)
* [API Reference](tools/price-rates/api-reference.md)
* [Create WDK Module](tools/create-wdk-module.md)
* [React Native Core](tools/react-native-core/README.md)
* [API Reference](tools/react-native-core/api-reference.md)

## Resources and Guides

Expand Down
14 changes: 14 additions & 0 deletions overview/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,20 @@ Stay up to date with the latest improvements, new features, and bug fixes across

---

### April 2, 2026

**Changes**
- **react-native-core** ([v1.0.0-beta.7](https://www.npmjs.com/package/@tetherto/wdk-react-native-core/v/1.0.0-beta.7)): Added missing type exports: `WdkAppState`, `TransactionParams`, `TransactionResult`, `UseAccountResponse`, `AddressInfo`, `AddressInfoResult`, `BalanceQueryOptions`, `UseWdkAppResult`. Removed `indexer` as a top-level config prop.

---

### March 24, 2026

**What's New**
- **[React Native Core](../tools/react-native-core/)**: Added documentation for `@tetherto/wdk-react-native-core` ([v1.0.0-beta.6](https://github.com/tetherto/wdk-core-react-native/releases/tag/v1.0.0-beta.6)), the hooks-based React Native integration layer for WDK. Includes [API Reference](../tools/react-native-core/api-reference.md) covering `WdkAppProvider`, `useWdkApp`, `useWalletManager`, `useAccount`, `useBalance`, and more. Updated [React Native Quickstart](../start-building/react-native-quickstart.md) with step-by-step integration guide.

---

### March 12, 2026

**Changes**
Expand Down
4 changes: 2 additions & 2 deletions sdk/core-module/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ Middleware functions can be registered to enhance account functionality.
wdk.registerMiddleware('ethereum', async (account) => {
console.log('New account created:', await account.getAddress())
})


```
{% endcode %}

## Environment Variables

Expand Down
2 changes: 1 addition & 1 deletion skills/wdk/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ All packages are under the `@tetherto` scope. **Always** `npm view <pkg> version
| Package | npm |
|---------|-----|
| `@tetherto/wdk-uikit-react-native` | [npmjs.com/package/@tetherto/wdk-uikit-react-native](https://www.npmjs.com/package/@tetherto/wdk-uikit-react-native) |
| `@tetherto/wdk-react-native-provider` | [npmjs.com/package/@tetherto/wdk-react-native-provider](https://www.npmjs.com/package/@tetherto/wdk-react-native-provider) |
| `@tetherto/wdk-react-native-core` | [npmjs.com/package/@tetherto/wdk-react-native-core](https://www.npmjs.com/package/@tetherto/wdk-react-native-core) |
| `@tetherto/pear-wrk-wdk` | [npmjs.com/package/@tetherto/pear-wrk-wdk](https://www.npmjs.com/package/@tetherto/pear-wrk-wdk) |
| `@tetherto/wdk-indexer-http` | [npmjs.com/package/@tetherto/wdk-indexer-http](https://www.npmjs.com/package/@tetherto/wdk-indexer-http) |

Expand Down
Loading