starknet 6.20.2 → 6.20.3

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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [6.20.3](https://github.com/starknet-io/starknet.js/compare/v6.20.2...v6.20.3) (2024-11-28)
2
+
3
+ ### Bug Fixes
4
+
5
+ - remove shadowed WalletAccount address property ([3251ffc](https://github.com/starknet-io/starknet.js/commit/3251ffca5551714e24ea6c1fb5488db06919c24e))
6
+
1
7
  ## [6.20.2](https://github.com/starknet-io/starknet.js/compare/v6.20.1...v6.20.2) (2024-11-28)
2
8
 
3
9
  ### Bug Fixes
package/dist/index.d.ts CHANGED
@@ -4556,7 +4556,6 @@ interface StarknetWalletProvider extends StarknetWindowObject {
4556
4556
  }
4557
4557
 
4558
4558
  declare class WalletAccount extends Account implements AccountInterface {
4559
- address: string;
4560
4559
  walletProvider: StarknetWalletProvider;
4561
4560
  /**
4562
4561
  * @deprecated Use static method WalletAccount.connect or WalletAccount.connectSilent instead. Constructor {@link WalletAccount.(format:2)}.
@@ -28959,7 +28959,6 @@ var starknet = (() => {
28959
28959
 
28960
28960
  // src/wallet/account.ts
28961
28961
  var WalletAccount = class _WalletAccount extends Account {
28962
- address = "";
28963
28962
  walletProvider;
28964
28963
  constructor(providerOrOptions, walletProvider, cairoVersion, address = "") {
28965
28964
  super(providerOrOptions, address, "", cairoVersion);