starknet 5.9.0 → 5.9.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/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [5.9.1](https://github.com/0xs34n/starknet.js/compare/v5.9.0...v5.9.1) (2023-05-02)
2
+
3
+ ### Bug Fixes
4
+
5
+ - add tests for uint256 ([5914170](https://github.com/0xs34n/starknet.js/commit/5914170770fd75909779a6b7e7b3cb2c6b1b2a9f))
6
+ - correct test ([a35548e](https://github.com/0xs34n/starknet.js/commit/a35548e4d9892630645645bb43737ea2e2ae79a5))
7
+ - uint256 in contract call ([0cc05e0](https://github.com/0xs34n/starknet.js/commit/0cc05e073bc025c2afdc5105b5b87e5d23c1d487))
8
+
1
9
  # [5.9.0](https://github.com/0xs34n/starknet.js/compare/v5.8.0...v5.9.0) (2023-04-28)
2
10
 
3
11
  ### Features
package/dist/index.d.ts CHANGED
@@ -1814,7 +1814,7 @@ declare abstract class ProviderInterface {
1814
1814
  * Gets the transaction information from a tx id.
1815
1815
  *
1816
1816
  * @param txHash
1817
- * @returns the transaction object { transaction_id, status, transaction, block_number?, block_number?, transaction_index?, transaction_failure_reason? }
1817
+ * @returns the transaction object \{ transaction_id, status, transaction, block_number?, block_number?, transaction_index?, transaction_failure_reason? \}
1818
1818
  */
1819
1819
  abstract getTransaction(transactionHash: BigNumberish): Promise<GetTransactionResponse>;
1820
1820
  /**
@@ -2119,7 +2119,7 @@ declare class SequencerProvider implements ProviderInterface {
2119
2119
  * [Reference](https://github.com/starkware-libs/cairo-lang/blob/f464ec4797361b6be8989e36e02ec690e74ef285/src/starkware/starknet/services/api/feeder_gateway/feeder_gateway_client.py#L48-L52)
2120
2120
  *
2121
2121
  * @param txHash
2122
- * @returns the transaction status object { block_number, tx_status: NOT_RECEIVED | RECEIVED | PENDING | REJECTED | ACCEPTED_ONCHAIN }
2122
+ * @returns the transaction status object \{ block_number, tx_status: NOT_RECEIVED | RECEIVED | PENDING | REJECTED | ACCEPTED_ONCHAIN \}
2123
2123
  */
2124
2124
  getTransactionStatus(txHash: BigNumberish): Promise<GetTransactionStatusResponse>;
2125
2125
  /**