starknet 5.19.3 → 5.19.4

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,10 @@
1
+ ## [5.19.4](https://github.com/0xs34n/starknet.js/compare/v5.19.3...v5.19.4) (2023-08-29)
2
+
3
+ ### Bug Fixes
4
+
5
+ - use BigNumberish for u256 ([3a7be10](https://github.com/0xs34n/starknet.js/commit/3a7be1075b0ca4f217cf28aabaa870c93c08f6d1))
6
+ - waitForTransaction for Infura ([c871fe6](https://github.com/0xs34n/starknet.js/commit/c871fe65a0b08e368218f51327cd64591f2b7f49))
7
+
1
8
  ## [5.19.3](https://github.com/0xs34n/starknet.js/compare/v5.19.2...v5.19.3) (2023-08-22)
2
9
 
3
10
  ### Bug Fixes
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@ import * as weierstrass from '@noble/curves/abstract/weierstrass';
2
2
  import { Abi as Abi$1, TypedContract as TypedContract$1 } from 'abi-wan-kanabi';
3
3
  import * as poseidon from '@noble/curves/abstract/poseidon';
4
4
  import * as json$1 from 'lossless-json';
5
- import * as microStarknet from 'micro-starknet';
5
+ import * as starknet from '@scure/starknet';
6
6
 
7
7
  declare const IS_BROWSER: boolean;
8
8
  declare function arrayBufferToString(array: ArrayBuffer): string;
@@ -159,7 +159,7 @@ declare namespace constants {
159
159
  declare const ec_weierstrass: typeof weierstrass;
160
160
  declare namespace ec {
161
161
  export {
162
- microStarknet as starkCurve,
162
+ starknet as starkCurve,
163
163
  ec_weierstrass as weierstrass,
164
164
  };
165
165
  }