@layerzerolabs/lz-ton-sdk-v2 3.0.75 → 3.0.77
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 +13 -0
- package/dist/index.cjs +67 -90
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +7 -2
- package/dist/index.d.ts +7 -2
- package/dist/index.mjs +67 -91
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @layerzerolabs/lz-ton-sdk-v2
|
|
2
2
|
|
|
3
|
+
## 3.0.77
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 44857e2: Clean up TON SDK Generation code
|
|
8
|
+
- 11c7cb5: Make Ton SDK Take extra arguments
|
|
9
|
+
|
|
10
|
+
## 3.0.76
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 1751884: endpoints, testnet megaeth
|
|
15
|
+
|
|
3
16
|
## 3.0.75
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/index.cjs
CHANGED
|
@@ -10294,8 +10294,7 @@ var appsAllStorages = class {
|
|
|
10294
10294
|
};
|
|
10295
10295
|
var appsCounter = class {
|
|
10296
10296
|
static async getGetBaseOAppStorage(contract) {
|
|
10297
|
-
const
|
|
10298
|
-
const stack = await contract.getViewFunction("getBaseOAppStorage", args);
|
|
10297
|
+
const stack = await contract.getViewFunction("getBaseOAppStorage", []);
|
|
10299
10298
|
return [stack.readCell()];
|
|
10300
10299
|
}
|
|
10301
10300
|
static async getLzReceiveGas(contract, packet) {
|
|
@@ -10326,15 +10325,13 @@ var appsCounter = class {
|
|
|
10326
10325
|
return [stack.readTuple().pop()];
|
|
10327
10326
|
}
|
|
10328
10327
|
static async getFailNextLzReceive(contract) {
|
|
10329
|
-
const
|
|
10330
|
-
const stack = await contract.getViewFunction("failNextLzReceive", args);
|
|
10328
|
+
const stack = await contract.getViewFunction("failNextLzReceive", []);
|
|
10331
10329
|
return [stack.readTuple().pop()];
|
|
10332
10330
|
}
|
|
10333
10331
|
};
|
|
10334
10332
|
var jettonsZro = class {
|
|
10335
10333
|
static async getGetJettonData(contract) {
|
|
10336
|
-
const
|
|
10337
|
-
const stack = await contract.getViewFunction("get_jetton_data", args);
|
|
10334
|
+
const stack = await contract.getViewFunction("get_jetton_data", []);
|
|
10338
10335
|
return [stack.readBigNumber(), stack.readBigNumber(), stack.readAddress(), stack.readCell(), stack.readCell()];
|
|
10339
10336
|
}
|
|
10340
10337
|
static async getGetWalletAddress(contract, owner_address) {
|
|
@@ -10343,15 +10340,13 @@ var jettonsZro = class {
|
|
|
10343
10340
|
return [stack.readAddress()];
|
|
10344
10341
|
}
|
|
10345
10342
|
static async getGetWalletData(contract) {
|
|
10346
|
-
const
|
|
10347
|
-
const stack = await contract.getViewFunction("get_wallet_data", args);
|
|
10343
|
+
const stack = await contract.getViewFunction("get_wallet_data", []);
|
|
10348
10344
|
return [stack.readBigNumber(), stack.readAddress(), stack.readAddress(), stack.readCell()];
|
|
10349
10345
|
}
|
|
10350
10346
|
};
|
|
10351
10347
|
var srcMultisig = class {
|
|
10352
10348
|
static async getGetMultisigData(contract) {
|
|
10353
|
-
const
|
|
10354
|
-
const stack = await contract.getViewFunction("get_multisig_data", args);
|
|
10349
|
+
const stack = await contract.getViewFunction("get_multisig_data", []);
|
|
10355
10350
|
return [stack.readBigNumber(), stack.readBigNumber(), stack.readCell(), stack.readCell()];
|
|
10356
10351
|
}
|
|
10357
10352
|
static async getGetOrderEstimate(contract, order, expiration_date) {
|
|
@@ -10368,8 +10363,7 @@ var srcMultisig = class {
|
|
|
10368
10363
|
return [stack.readAddress()];
|
|
10369
10364
|
}
|
|
10370
10365
|
static async getGetOrderData(contract) {
|
|
10371
|
-
const
|
|
10372
|
-
const stack = await contract.getViewFunction("get_order_data", args);
|
|
10366
|
+
const stack = await contract.getViewFunction("get_order_data", []);
|
|
10373
10367
|
return [stack.pop()];
|
|
10374
10368
|
}
|
|
10375
10369
|
};
|
|
@@ -10395,8 +10389,7 @@ var protocolChannel = class {
|
|
|
10395
10389
|
return [stack.readCell()];
|
|
10396
10390
|
}
|
|
10397
10391
|
static async get_viewInboundNonce(contract) {
|
|
10398
|
-
const
|
|
10399
|
-
const stack = await contract.getViewFunction("_viewInboundNonce", args);
|
|
10392
|
+
const stack = await contract.getViewFunction("_viewInboundNonce", []);
|
|
10400
10393
|
return [stack.readBigNumber()];
|
|
10401
10394
|
}
|
|
10402
10395
|
static async get_viewExecutionStatus(contract, incomingNonce) {
|
|
@@ -10477,8 +10470,7 @@ var protocolChannel = class {
|
|
|
10477
10470
|
};
|
|
10478
10471
|
var protocolController = class {
|
|
10479
10472
|
static async get_getZroWalletAddress(contract) {
|
|
10480
|
-
const
|
|
10481
|
-
const stack = await contract.getViewFunction("_getZroWalletAddress", args);
|
|
10473
|
+
const stack = await contract.getViewFunction("_getZroWalletAddress", []);
|
|
10482
10474
|
return [stack.readBigNumber()];
|
|
10483
10475
|
}
|
|
10484
10476
|
static async get_calculateEndpointAddress(contract, dstEid) {
|
|
@@ -10723,6 +10715,11 @@ var ultralightnodeUln = class {
|
|
|
10723
10715
|
const stack = await contract.getViewFunction("setWorkerFeelibStorage", args);
|
|
10724
10716
|
return [stack.readTuple().pop()];
|
|
10725
10717
|
}
|
|
10718
|
+
static async getRefillWorkerRent(contract, rentRefill) {
|
|
10719
|
+
const args = [{ type: "cell", cell: rentRefill }];
|
|
10720
|
+
const stack = await contract.getViewFunction("refillWorkerRent", args);
|
|
10721
|
+
return [stack.readTuple().pop()];
|
|
10722
|
+
}
|
|
10726
10723
|
static async getCollectWorkerRent(contract, setAddress) {
|
|
10727
10724
|
const args = [{ type: "cell", cell: setAddress }];
|
|
10728
10725
|
const stack = await contract.getViewFunction("collectWorkerRent", args);
|
|
@@ -10749,8 +10746,7 @@ var ultralightnodeUln = class {
|
|
|
10749
10746
|
return [stack.readTuple().pop()];
|
|
10750
10747
|
}
|
|
10751
10748
|
static async getVersion(contract) {
|
|
10752
|
-
const
|
|
10753
|
-
const stack = await contract.getViewFunction("version", args);
|
|
10749
|
+
const stack = await contract.getViewFunction("version", []);
|
|
10754
10750
|
return [stack.readBigNumber(), stack.readBigNumber(), stack.readBigNumber()];
|
|
10755
10751
|
}
|
|
10756
10752
|
};
|
|
@@ -10809,8 +10805,8 @@ var ultralightnodeUlnConnection = class {
|
|
|
10809
10805
|
const stack = await contract.getViewFunction("msglibConnectionCommitPacketCallback", args);
|
|
10810
10806
|
return [stack.readTuple().pop()];
|
|
10811
10807
|
}
|
|
10812
|
-
static async getMsglibConnectionSyncChannelState(contract,
|
|
10813
|
-
const args = [{ type: "cell", cell:
|
|
10808
|
+
static async getMsglibConnectionSyncChannelState(contract, mdObj) {
|
|
10809
|
+
const args = [{ type: "cell", cell: mdObj }];
|
|
10814
10810
|
const stack = await contract.getViewFunction("msglibConnectionSyncChannelState", args);
|
|
10815
10811
|
return [stack.readTuple().pop()];
|
|
10816
10812
|
}
|
|
@@ -10825,10 +10821,17 @@ var ultralightnodeUlnConnection = class {
|
|
|
10825
10821
|
return [stack.readTuple().pop()];
|
|
10826
10822
|
}
|
|
10827
10823
|
static async getVersion(contract) {
|
|
10828
|
-
const
|
|
10829
|
-
const stack = await contract.getViewFunction("version", args);
|
|
10824
|
+
const stack = await contract.getViewFunction("version", []);
|
|
10830
10825
|
return [stack.readBigNumber(), stack.readBigNumber(), stack.readBigNumber()];
|
|
10831
10826
|
}
|
|
10827
|
+
static async getViewHashLookup(contract, nonce, dvnAddress) {
|
|
10828
|
+
const args = [
|
|
10829
|
+
{ type: "int", value: nonce },
|
|
10830
|
+
{ type: "int", value: dvnAddress }
|
|
10831
|
+
];
|
|
10832
|
+
const stack = await contract.getViewFunction("viewHashLookup", args);
|
|
10833
|
+
return [stack.readCell()];
|
|
10834
|
+
}
|
|
10832
10835
|
};
|
|
10833
10836
|
var ultralightnodeUlnManager = class {
|
|
10834
10837
|
static async get_calculateUlnAddress(contract, storage, dstEid) {
|
|
@@ -10924,8 +10927,7 @@ var ultralightnodeUlnManager = class {
|
|
|
10924
10927
|
return [stack.readTuple().pop()];
|
|
10925
10928
|
}
|
|
10926
10929
|
static async getVersion(contract) {
|
|
10927
|
-
const
|
|
10928
|
-
const stack = await contract.getViewFunction("version", args);
|
|
10930
|
+
const stack = await contract.getViewFunction("version", []);
|
|
10929
10931
|
return [stack.readBigNumber(), stack.readBigNumber(), stack.readBigNumber()];
|
|
10930
10932
|
}
|
|
10931
10933
|
};
|
|
@@ -10958,8 +10960,7 @@ var ultralightnodeWorkerFeeLibs = class {
|
|
|
10958
10960
|
return [stack.readBigNumber()];
|
|
10959
10961
|
}
|
|
10960
10962
|
static async getUlnWorkerTooFewInputs(contract) {
|
|
10961
|
-
const
|
|
10962
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs", args);
|
|
10963
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs", []);
|
|
10963
10964
|
return [stack.readBigNumber()];
|
|
10964
10965
|
}
|
|
10965
10966
|
static async getUlnWorkerSixtyFourOutputs(contract, inputs) {
|
|
@@ -11053,163 +11054,131 @@ var ultralightnodeWorkerFeeLibs = class {
|
|
|
11053
11054
|
return [stack.readBigNumber()];
|
|
11054
11055
|
}
|
|
11055
11056
|
static async getUlnWorkerTooFewInputs1(contract) {
|
|
11056
|
-
const
|
|
11057
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs1", args);
|
|
11057
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs1", []);
|
|
11058
11058
|
return [stack.readBigNumber()];
|
|
11059
11059
|
}
|
|
11060
11060
|
static async getUlnWorkerTooFewInputs2(contract) {
|
|
11061
|
-
const
|
|
11062
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs2", args);
|
|
11061
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs2", []);
|
|
11063
11062
|
return [stack.readBigNumber()];
|
|
11064
11063
|
}
|
|
11065
11064
|
static async getUlnWorkerTooFewInputs3(contract) {
|
|
11066
|
-
const
|
|
11067
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs3", args);
|
|
11065
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs3", []);
|
|
11068
11066
|
return [stack.readBigNumber()];
|
|
11069
11067
|
}
|
|
11070
11068
|
static async getUlnWorkerTooFewInputs4(contract) {
|
|
11071
|
-
const
|
|
11072
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs4", args);
|
|
11069
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs4", []);
|
|
11073
11070
|
return [stack.readBigNumber()];
|
|
11074
11071
|
}
|
|
11075
11072
|
static async getUlnWorkerTooFewInputs5(contract) {
|
|
11076
|
-
const
|
|
11077
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs5", args);
|
|
11073
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs5", []);
|
|
11078
11074
|
return [stack.readBigNumber()];
|
|
11079
11075
|
}
|
|
11080
11076
|
static async getUlnWorkerTooFewInputs6(contract) {
|
|
11081
|
-
const
|
|
11082
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs6", args);
|
|
11077
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs6", []);
|
|
11083
11078
|
return [stack.readBigNumber()];
|
|
11084
11079
|
}
|
|
11085
11080
|
static async getUlnWorkerTooFewInputs7(contract) {
|
|
11086
|
-
const
|
|
11087
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs7", args);
|
|
11081
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs7", []);
|
|
11088
11082
|
return [stack.readBigNumber()];
|
|
11089
11083
|
}
|
|
11090
11084
|
static async getUlnWorkerTooFewInputs8(contract) {
|
|
11091
|
-
const
|
|
11092
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs8", args);
|
|
11085
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs8", []);
|
|
11093
11086
|
return [stack.readBigNumber()];
|
|
11094
11087
|
}
|
|
11095
11088
|
static async getUlnWorkerTooFewInputs9(contract) {
|
|
11096
|
-
const
|
|
11097
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs9", args);
|
|
11089
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs9", []);
|
|
11098
11090
|
return [stack.readBigNumber()];
|
|
11099
11091
|
}
|
|
11100
11092
|
static async getUlnWorkerTooFewInputs10(contract) {
|
|
11101
|
-
const
|
|
11102
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs10", args);
|
|
11093
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs10", []);
|
|
11103
11094
|
return [stack.readBigNumber()];
|
|
11104
11095
|
}
|
|
11105
11096
|
static async getUlnWorkerTooFewInputs11(contract) {
|
|
11106
|
-
const
|
|
11107
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs11", args);
|
|
11097
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs11", []);
|
|
11108
11098
|
return [stack.readBigNumber()];
|
|
11109
11099
|
}
|
|
11110
11100
|
static async getUlnWorkerTooFewInputs12(contract) {
|
|
11111
|
-
const
|
|
11112
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs12", args);
|
|
11101
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs12", []);
|
|
11113
11102
|
return [stack.readBigNumber()];
|
|
11114
11103
|
}
|
|
11115
11104
|
static async getUlnWorkerTooFewInputs13(contract) {
|
|
11116
|
-
const
|
|
11117
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs13", args);
|
|
11105
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs13", []);
|
|
11118
11106
|
return [stack.readBigNumber()];
|
|
11119
11107
|
}
|
|
11120
11108
|
static async getUlnWorkerTooFewInputs14(contract) {
|
|
11121
|
-
const
|
|
11122
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs14", args);
|
|
11109
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs14", []);
|
|
11123
11110
|
return [stack.readBigNumber()];
|
|
11124
11111
|
}
|
|
11125
11112
|
static async getUlnWorkerTooFewInputs15(contract) {
|
|
11126
|
-
const
|
|
11127
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs15", args);
|
|
11113
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs15", []);
|
|
11128
11114
|
return [stack.readBigNumber()];
|
|
11129
11115
|
}
|
|
11130
11116
|
static async getUlnWorkerTooFewInputs16(contract) {
|
|
11131
|
-
const
|
|
11132
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs16", args);
|
|
11117
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs16", []);
|
|
11133
11118
|
return [stack.readBigNumber()];
|
|
11134
11119
|
}
|
|
11135
11120
|
static async getUlnWorkerTooFewInputs17(contract) {
|
|
11136
|
-
const
|
|
11137
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs17", args);
|
|
11121
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs17", []);
|
|
11138
11122
|
return [stack.readBigNumber()];
|
|
11139
11123
|
}
|
|
11140
11124
|
static async getUlnWorkerTooFewInputs18(contract) {
|
|
11141
|
-
const
|
|
11142
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs18", args);
|
|
11125
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs18", []);
|
|
11143
11126
|
return [stack.readBigNumber()];
|
|
11144
11127
|
}
|
|
11145
11128
|
static async getUlnWorkerTooFewInputs19(contract) {
|
|
11146
|
-
const
|
|
11147
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs19", args);
|
|
11129
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs19", []);
|
|
11148
11130
|
return [stack.readBigNumber()];
|
|
11149
11131
|
}
|
|
11150
11132
|
static async getUlnWorkerTooFewInputs20(contract) {
|
|
11151
|
-
const
|
|
11152
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs20", args);
|
|
11133
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs20", []);
|
|
11153
11134
|
return [stack.readBigNumber()];
|
|
11154
11135
|
}
|
|
11155
11136
|
static async getUlnWorkerTooFewInputs21(contract) {
|
|
11156
|
-
const
|
|
11157
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs21", args);
|
|
11137
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs21", []);
|
|
11158
11138
|
return [stack.readBigNumber()];
|
|
11159
11139
|
}
|
|
11160
11140
|
static async getUlnWorkerTooFewInputs22(contract) {
|
|
11161
|
-
const
|
|
11162
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs22", args);
|
|
11141
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs22", []);
|
|
11163
11142
|
return [stack.readBigNumber()];
|
|
11164
11143
|
}
|
|
11165
11144
|
static async getUlnWorkerTooFewInputs23(contract) {
|
|
11166
|
-
const
|
|
11167
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs23", args);
|
|
11145
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs23", []);
|
|
11168
11146
|
return [stack.readBigNumber()];
|
|
11169
11147
|
}
|
|
11170
11148
|
static async getUlnWorkerTooFewInputs24(contract) {
|
|
11171
|
-
const
|
|
11172
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs24", args);
|
|
11149
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs24", []);
|
|
11173
11150
|
return [stack.readBigNumber()];
|
|
11174
11151
|
}
|
|
11175
11152
|
static async getUlnWorkerTooFewInputs25(contract) {
|
|
11176
|
-
const
|
|
11177
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs25", args);
|
|
11153
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs25", []);
|
|
11178
11154
|
return [stack.readBigNumber()];
|
|
11179
11155
|
}
|
|
11180
11156
|
static async getUlnWorkerTooFewInputs26(contract) {
|
|
11181
|
-
const
|
|
11182
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs26", args);
|
|
11157
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs26", []);
|
|
11183
11158
|
return [stack.readBigNumber()];
|
|
11184
11159
|
}
|
|
11185
11160
|
static async getUlnWorkerTooFewInputs27(contract) {
|
|
11186
|
-
const
|
|
11187
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs27", args);
|
|
11161
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs27", []);
|
|
11188
11162
|
return [stack.readBigNumber()];
|
|
11189
11163
|
}
|
|
11190
11164
|
static async getUlnWorkerTooFewInputs28(contract) {
|
|
11191
|
-
const
|
|
11192
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs28", args);
|
|
11165
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs28", []);
|
|
11193
11166
|
return [stack.readBigNumber()];
|
|
11194
11167
|
}
|
|
11195
11168
|
static async getUlnWorkerTooFewInputs29(contract) {
|
|
11196
|
-
const
|
|
11197
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs29", args);
|
|
11169
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs29", []);
|
|
11198
11170
|
return [stack.readBigNumber()];
|
|
11199
11171
|
}
|
|
11200
11172
|
static async getUlnWorkerTooFewInputs30(contract) {
|
|
11201
|
-
const
|
|
11202
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs30", args);
|
|
11173
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs30", []);
|
|
11203
11174
|
return [stack.readBigNumber()];
|
|
11204
11175
|
}
|
|
11205
11176
|
static async getUlnWorkerTooFewInputs31(contract) {
|
|
11206
|
-
const
|
|
11207
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs31", args);
|
|
11177
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs31", []);
|
|
11208
11178
|
return [stack.readBigNumber()];
|
|
11209
11179
|
}
|
|
11210
11180
|
static async getUlnWorkerTooFewInputs32(contract) {
|
|
11211
|
-
const
|
|
11212
|
-
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs32", args);
|
|
11181
|
+
const stack = await contract.getViewFunction("ulnWorker::tooFewInputs32", []);
|
|
11213
11182
|
return [stack.readBigNumber()];
|
|
11214
11183
|
}
|
|
11215
11184
|
};
|
|
@@ -11227,6 +11196,13 @@ var workerFeeLibsExecutorFeeLib = class {
|
|
|
11227
11196
|
return [stack.readTuple().pop()];
|
|
11228
11197
|
}
|
|
11229
11198
|
};
|
|
11199
|
+
var workerFeeLibsMaliciousFeeLib = class {
|
|
11200
|
+
static async getUlnWorkerQuote(contract, inputs) {
|
|
11201
|
+
const args = [{ type: "tuple", items: inputs.items }];
|
|
11202
|
+
const stack = await contract.getViewFunction("ulnWorker::quote", args);
|
|
11203
|
+
return [stack.readTuple().pop()];
|
|
11204
|
+
}
|
|
11205
|
+
};
|
|
11230
11206
|
var workersDvn = class {
|
|
11231
11207
|
static async getDecodeSignature(contract, signature) {
|
|
11232
11208
|
const args = [{ type: "cell", cell: signature }];
|
|
@@ -17437,6 +17413,7 @@ exports.ultralightnodeUlnManager = ultralightnodeUlnManager;
|
|
|
17437
17413
|
exports.ultralightnodeWorkerFeeLibs = ultralightnodeWorkerFeeLibs;
|
|
17438
17414
|
exports.workerFeeLibsDvnFeeLib = workerFeeLibsDvnFeeLib;
|
|
17439
17415
|
exports.workerFeeLibsExecutorFeeLib = workerFeeLibsExecutorFeeLib;
|
|
17416
|
+
exports.workerFeeLibsMaliciousFeeLib = workerFeeLibsMaliciousFeeLib;
|
|
17440
17417
|
exports.workersDvn = workersDvn;
|
|
17441
17418
|
//# sourceMappingURL=index.cjs.map
|
|
17442
17419
|
//# sourceMappingURL=index.cjs.map
|