> ## Documentation Index
> Fetch the complete documentation index at: https://docs.canton.network/llms.txt
> Use this file to discover all available pages before exploring further.

# 0.9.0

> Wallet SDK 0.9.0 release notes.

# 0.9.0

**Released on September 26th, 2025**

* Supporting both canton 3.3 and 3.4 at the same timeout

*since canton 3.4 will soon come to splice being able to support both versions is imperative before*

* `localNetStaticConfig` added

*since the wallet api and registry are static for localnet, a new config has been added to make early development easier*

```javascript theme={"theme":{"light":"github-light","dark":"github-dark"}}
import {
    WalletSDKImpl,
    localNetAuthDefault,
    localNetLedgerDefault,
    localNetTopologyDefault,
    localNetTokenStandardDefault,
    localNetStaticConfig,
} from '@canton-network/wallet-sdk'

const sdk = new WalletSDKImpl().configure({
    logger,
    authFactory: localNetAuthDefault,
    ledgerFactory: localNetLedgerDefault,
    topologyFactory: localNetTopologyDefault,
    tokenStandardFactory: localNetTokenStandardDefault,
})

await sdk.connectTopology(localNetStaticConfig.LOCALNET_APP_VALIDATOR_URL)

sdk.tokenStandard?.setTransferFactoryRegistryUrl(
    localNetStaticConfig.LOCALNET_REGISTRY_API_URL
)
```
