@atomiqlabs/chain-starknet 4.0.0-dev.32 → 4.0.0-dev.33
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.
|
@@ -2,6 +2,7 @@ import { AbstractSigner } from "@atomiqlabs/base";
|
|
|
2
2
|
import { Account, DeployAccountContractPayload, Invocation, DeployAccountContractTransaction } from "starknet";
|
|
3
3
|
import { StarknetTx, StarknetTxDeployAccount, StarknetTxInvoke } from "../chain/modules/StarknetTransactions";
|
|
4
4
|
export declare class StarknetSigner implements AbstractSigner {
|
|
5
|
+
type: "AtomiqAbstractSigner";
|
|
5
6
|
readonly isManagingNoncesInternally: boolean;
|
|
6
7
|
account: Account;
|
|
7
8
|
isDeployed: boolean;
|
|
@@ -5,6 +5,7 @@ const Utils_1 = require("../../utils/Utils");
|
|
|
5
5
|
const StarknetTransactions_1 = require("../chain/modules/StarknetTransactions");
|
|
6
6
|
class StarknetSigner {
|
|
7
7
|
constructor(account, isManagingNoncesInternally = false) {
|
|
8
|
+
this.type = "AtomiqAbstractSigner";
|
|
8
9
|
this.isDeployed = null;
|
|
9
10
|
this.account = account;
|
|
10
11
|
this.isManagingNoncesInternally = isManagingNoncesInternally;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atomiqlabs/chain-starknet",
|
|
3
|
-
"version": "4.0.0-dev.
|
|
3
|
+
"version": "4.0.0-dev.33",
|
|
4
4
|
"description": "Starknet specific base implementation",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"url": "git+https://github.com/atomiqlabs/atomiq-chain-starknet.git"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@atomiqlabs/base": "^10.0.0-dev.
|
|
31
|
+
"@atomiqlabs/base": "^10.0.0-dev.16",
|
|
32
32
|
"@noble/hashes": "^1.7.1",
|
|
33
33
|
"@scure/btc-signer": "^1.6.0",
|
|
34
34
|
"abi-wan-kanabi": "2.2.4",
|