starknet 10.6.1 → 10.6.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 +12 -0
- package/dist/index.d.ts +15 -2
- package/dist/index.global.js +5 -4
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +6 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -189,6 +189,7 @@ __export(index_exports, {
|
|
|
189
189
|
src5: () => src5_exports,
|
|
190
190
|
stark: () => stark_exports,
|
|
191
191
|
starknetId: () => starknetId_exports,
|
|
192
|
+
starknetIdPlugin: () => starknetId,
|
|
192
193
|
toAnyPatchVersion: () => toAnyPatchVersion,
|
|
193
194
|
toApiVersion: () => toApiVersion,
|
|
194
195
|
transaction: () => transaction_exports,
|
|
@@ -6574,9 +6575,9 @@ var RpcChannel = class {
|
|
|
6574
6575
|
if (retries <= 0) {
|
|
6575
6576
|
throw new Error(`waitForTransaction timed-out with retries ${this.retries}`);
|
|
6576
6577
|
}
|
|
6578
|
+
retries -= 1;
|
|
6579
|
+
await wait(retryInterval);
|
|
6577
6580
|
}
|
|
6578
|
-
retries -= 1;
|
|
6579
|
-
await wait(retryInterval);
|
|
6580
6581
|
}
|
|
6581
6582
|
return txReceipt;
|
|
6582
6583
|
}
|
|
@@ -7190,9 +7191,9 @@ var RpcChannel2 = class {
|
|
|
7190
7191
|
if (retries <= 0) {
|
|
7191
7192
|
throw new Error(`waitForTransaction timed-out with retries ${this.retries}`);
|
|
7192
7193
|
}
|
|
7194
|
+
retries -= 1;
|
|
7195
|
+
await wait(retryInterval);
|
|
7193
7196
|
}
|
|
7194
|
-
retries -= 1;
|
|
7195
|
-
await wait(retryInterval);
|
|
7196
7197
|
}
|
|
7197
7198
|
return txReceipt;
|
|
7198
7199
|
}
|
|
@@ -13999,6 +14000,7 @@ function units(amount, simbol = "fri") {
|
|
|
13999
14000
|
src5,
|
|
14000
14001
|
stark,
|
|
14001
14002
|
starknetId,
|
|
14003
|
+
starknetIdPlugin,
|
|
14002
14004
|
toAnyPatchVersion,
|
|
14003
14005
|
toApiVersion,
|
|
14004
14006
|
transaction,
|