@miden-sdk/miden-sdk 0.14.0-alpha.2 → 0.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -137,8 +137,8 @@ The following are just a few simple examples to get started. For more details, s
137
137
  ```typescript
138
138
  import { MidenClient, AccountType } from "@miden-sdk/miden-sdk";
139
139
 
140
- // 1. Create client (defaults to testnet)
141
- const client = await MidenClient.create();
140
+ // 1. Create client (defaults to testnet, or use createTestnet()/createDevnet())
141
+ const client = await MidenClient.createDevnet();
142
142
 
143
143
  // 2. Create a wallet and a token (faucet account)
144
144
  const wallet = await client.accounts.create();