@layerzerolabs/lz-movevm-sdk-v2 3.0.4 → 3.0.6

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,5 +1,33 @@
1
1
  # @layerzerolabs/lz-movevm-sdk-v2
2
2
 
3
+ ## 3.0.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 1b6de61: make initia related pkg public.
8
+ - Updated dependencies [1b6de61]
9
+ - @layerzerolabs/lz-corekit-aptos@3.0.6
10
+ - @layerzerolabs/lz-core@3.0.6
11
+ - @layerzerolabs/lz-definitions@3.0.6
12
+ - @layerzerolabs/lz-serdes@3.0.6
13
+ - @layerzerolabs/lz-utilities@3.0.6
14
+ - @layerzerolabs/lz-v2-utilities@3.0.6
15
+ - @layerzerolabs/move-definitions@3.0.6
16
+
17
+ ## 3.0.5
18
+
19
+ ### Patch Changes
20
+
21
+ - 1136853: endpoint: mainnet worldchain
22
+ - Updated dependencies [1136853]
23
+ - @layerzerolabs/lz-corekit-aptos@3.0.5
24
+ - @layerzerolabs/lz-core@3.0.5
25
+ - @layerzerolabs/lz-definitions@3.0.5
26
+ - @layerzerolabs/lz-serdes@3.0.5
27
+ - @layerzerolabs/lz-utilities@3.0.5
28
+ - @layerzerolabs/lz-v2-utilities@3.0.5
29
+ - @layerzerolabs/move-definitions@3.0.5
30
+
3
31
  ## 3.0.4
4
32
 
5
33
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -215,15 +215,13 @@ var Counter = class {
215
215
  * @param {bigint} feeInNative - The fee in native currency.
216
216
  * @param {Uint8Array} options - Additional options for the payload.
217
217
  * @param {GasOptions} [gasOptions] - The gas options.
218
- * @param {string | Uint8Array} [multisig] - The multisig address.
219
218
  * @returns {Promise<TransactionResponse>} The transaction response.
220
219
  */
221
- async send(signer, dstEid, type, feeInNative, options, gasOptions, multisig) {
220
+ async send(signer, dstEid, type, feeInNative, options, gasOptions) {
222
221
  return this.sdk.sendAndConfirmTransaction(
223
222
  signer,
224
223
  `${this.module[0]}::${this.module[1]}::send`,
225
224
  [dstEid, type, options, feeInNative],
226
- multisig,
227
225
  ["u32", "u8", "vector<u8>", "u64"],
228
226
  gasOptions
229
227
  );
@@ -235,16 +233,14 @@ var Counter = class {
235
233
  * @param {EndpointId} remoteEid - The remote endpoint ID.
236
234
  * @param {string} remoteOapp - The remote OAPP address.
237
235
  * @param {GasOptions} [gasOptions] - The gas options.
238
- * @param {string | Uint8Array} [multisig] - The multisig address.
239
236
  * @returns {Promise<TransactionResponse>} The transaction response.
240
237
  */
241
- async setPeer(signer, remoteEid, remoteOapp, gasOptions, multisig) {
238
+ async setPeer(signer, remoteEid, remoteOapp, gasOptions) {
242
239
  const remoteOappBytes32 = lzV2Utilities.addressToBytes32(remoteOapp);
243
240
  return this.sdk.sendAndConfirmTransaction(
244
241
  signer,
245
242
  `${this.oappCoreModule[0]}::${this.oappCoreModule[1]}::set_peer`,
246
243
  [remoteEid, remoteOappBytes32],
247
- multisig,
248
244
  ["u32", "vector<u8>"],
249
245
  gasOptions
250
246
  );
@@ -586,15 +582,13 @@ var Endpoint = class {
586
582
  * @param {Uint8Array} packetHeader - The packet header.
587
583
  * @param {Uint8Array} hash - The hash of the payload.
588
584
  * @param {GasOptions} [gasOptions] - The gas options.
589
- * @param {string | Uint8Array} [multisig] - The multisig address.
590
585
  * @returns {Promise<TransactionResponse>} The transaction response.
591
586
  */
592
- async verify(signer, receiveLib, packetHeader, hash, gasOptions, multisig) {
587
+ async verify(signer, receiveLib, packetHeader, hash, gasOptions) {
593
588
  return this.sdk.sendAndConfirmTransaction(
594
589
  signer,
595
590
  `${this.module[0]}::${this.module[1]}::verify`,
596
591
  [receiveLib, packetHeader, hash],
597
- multisig,
598
592
  ["address", "vector<u8>", "vector<u8>"],
599
593
  gasOptions
600
594
  );
@@ -1009,15 +1003,13 @@ var Endpoint = class {
1009
1003
  * @param {AccountType | PrivateKey | MnemonicAndPath} signer - The signer of the transaction.
1010
1004
  * @param {string} msgLib - The message library address.
1011
1005
  * @param {GasOptions} [gasOptions] - The gas options.
1012
- * @param {string | Uint8Array} [multisig] - The multisig address.
1013
1006
  * @returns {Promise<TransactionResponse>} The transaction response.
1014
1007
  */
1015
- async registerMsgLib(signer, msgLib, gasOptions, multisig) {
1008
+ async registerMsgLib(signer, msgLib, gasOptions) {
1016
1009
  return this.sdk.sendAndConfirmTransaction(
1017
1010
  signer,
1018
1011
  `${this.adminModule[0]}::${this.adminModule[1]}::register_library`,
1019
1012
  [msgLib],
1020
- multisig,
1021
1013
  ["address"],
1022
1014
  gasOptions
1023
1015
  );
@@ -1043,15 +1035,13 @@ var Endpoint = class {
1043
1035
  * @param {number} remoteChainId - The remote chain ID.
1044
1036
  * @param {string} sendLib - The send library address.
1045
1037
  * @param {GasOptions} [gasOptions] - The gas options.
1046
- * @param {string | Uint8Array} [multisig] - The multisig address.
1047
1038
  * @returns {Promise<TransactionResponse>} The transaction response.
1048
1039
  */
1049
- async setDefaultSendLib(signer, remoteChainId, sendLib, gasOptions, multisig) {
1040
+ async setDefaultSendLib(signer, remoteChainId, sendLib, gasOptions) {
1050
1041
  return this.sdk.sendAndConfirmTransaction(
1051
1042
  signer,
1052
1043
  `${this.adminModule[0]}::${this.adminModule[1]}::set_default_send_library`,
1053
1044
  [Number(remoteChainId), sendLib.toString()],
1054
- multisig,
1055
1045
  ["u32", "address"],
1056
1046
  gasOptions
1057
1047
  );
@@ -1079,15 +1069,13 @@ var Endpoint = class {
1079
1069
  * @param {string} receiveLib - The receive library address.
1080
1070
  * @param {bigint} periodSecond - The period in seconds.
1081
1071
  * @param {GasOptions} [gasOptions] - The gas options.
1082
- * @param {string | Uint8Array} [multisig] - The multisig address.
1083
1072
  * @returns {Promise<TransactionResponse>} The transaction response.
1084
1073
  */
1085
- async setDefaultReceiveLib(signer, remoteChainId, receiveLib, periodSecond, gasOptions, multisig) {
1074
+ async setDefaultReceiveLib(signer, remoteChainId, receiveLib, periodSecond, gasOptions) {
1086
1075
  return this.sdk.sendAndConfirmTransaction(
1087
1076
  signer,
1088
1077
  `${this.adminModule[0]}::${this.adminModule[1]}::set_default_receive_library`,
1089
1078
  [Number(remoteChainId), receiveLib.toString(), periodSecond],
1090
- multisig,
1091
1079
  ["u32", "address", "u64"],
1092
1080
  gasOptions
1093
1081
  );
@@ -1200,15 +1188,13 @@ var Executor = class {
1200
1188
  * @param {string[]} msgLibs - The list of message libraries.
1201
1189
  * @param {string} feeLib - The fee library address.
1202
1190
  * @param {GasOptions} [gasOptions] - The gas options.
1203
- * @param {string | Uint8Array} [multisig] - The multisig address.
1204
1191
  * @returns {Promise<TransactionResponse>} The transaction response.
1205
1192
  */
1206
- async initialize(signer, workerId, roleAdmin, admins, msgLibs, feeLib, gasOptions, multisig) {
1193
+ async initialize(signer, workerId, roleAdmin, admins, msgLibs, feeLib, gasOptions) {
1207
1194
  return this.sdk.sendAndConfirmTransaction(
1208
1195
  signer,
1209
1196
  `${this.module[0]}::${this.module[1]}::initialize`,
1210
1197
  [workerId, roleAdmin, admins, msgLibs, feeLib],
1211
- multisig,
1212
1198
  ["u8", "address", "vector<address>", "vector<address>", "address"],
1213
1199
  gasOptions
1214
1200
  );
@@ -2083,10 +2069,9 @@ var Oft = class {
2083
2069
  * @param tokenInfo.localDecimals (optional) required only for oft_fa / oft_coin, default is 8
2084
2070
  * @param tokenInfo.monitorSupply (optional) required only for oft_coin, default is false
2085
2071
  * @param gasOptions (optional) @see {@link GasOptions}
2086
- * @param multisig (optional) address of another account to sign the transaction
2087
2072
  * @returns transaction response of initialize function
2088
2073
  */
2089
- async initialize(signer, tokenInfo, gasOptions, multisig) {
2074
+ async initialize(signer, tokenInfo, gasOptions) {
2090
2075
  const {
2091
2076
  tokenName,
2092
2077
  symbol,
@@ -2136,7 +2121,6 @@ var Oft = class {
2136
2121
  signer,
2137
2122
  `${implModule[0]}::${implModule[1]}::initialize`,
2138
2123
  params,
2139
- multisig,
2140
2124
  paramTypes,
2141
2125
  gasOptions
2142
2126
  );
@@ -2247,15 +2231,13 @@ var Oft = class {
2247
2231
  * @param composeMsg (optional) compose message to send in vector<u8>
2248
2232
  * @param oftCmd (optional) oft command to send in vector<u8>
2249
2233
  * @param gasOptions (optional) @see {@link GasOptions}
2250
- * @param multisig (optional) address of another account to sign the transaction
2251
2234
  * @returns transaction response of send_withdraw or send_withdraw_coin function
2252
2235
  */
2253
- async send(signer, dstEid, to, amountLd, minAmountLd, nativeFee, zroFee, extraOptions = EmptyUint8Array, composeMsg = EmptyUint8Array, oftCmd = EmptyUint8Array, gasOptions, multisig) {
2236
+ async send(signer, dstEid, to, amountLd, minAmountLd, nativeFee, zroFee, extraOptions = EmptyUint8Array, composeMsg = EmptyUint8Array, oftCmd = EmptyUint8Array, gasOptions) {
2254
2237
  return this.sdk.sendAndConfirmTransaction(
2255
2238
  signer,
2256
2239
  await this.isCoin() ? `${this.module[0]}::${this.module[1]}::send_withdraw_coin` : `${this.module[0]}::${this.module[1]}::send_withdraw`,
2257
2240
  [dstEid, to, amountLd, minAmountLd, extraOptions, composeMsg, oftCmd, nativeFee, zroFee],
2258
- multisig,
2259
2241
  ["u32", "vector<u8>", "u64", "u64", "vector<u8>", "vector<u8>", "vector<u8>", "u64", "u64"],
2260
2242
  gasOptions
2261
2243
  );
@@ -2281,15 +2263,13 @@ var Oft = class {
2281
2263
  *
2282
2264
  * @param signer oapp account
2283
2265
  * @param gasOptions (optional) @see {@link GasOptions}
2284
- * @param multisig (optional) address of another account to sign the transaction
2285
2266
  * @returns transaction response of claim function
2286
2267
  */
2287
- async claim(signer, gasOptions, multisig) {
2268
+ async claim(signer, gasOptions) {
2288
2269
  return this.sdk.sendAndConfirmTransaction(
2289
2270
  signer,
2290
2271
  `${this.module[0]}::${this.module[1]}::claim`,
2291
2272
  [],
2292
- multisig,
2293
2273
  [],
2294
2274
  gasOptions
2295
2275
  );
@@ -2319,15 +2299,13 @@ var Oft = class {
2319
2299
  * @param configType (CONFIG_TYPE_EXECUTOR=1, CONFIG_TYPE_SEND_ULN=2, CONFIG_TYPE_RECV_ULN=3)
2320
2300
  * @param config configuration in vector<u8> format. (struct UlnConfig or ExecutorConfig)
2321
2301
  * @param gasOptions (optional) @see {@link GasOptions}
2322
- * @param multisig (optional) address of another account to sign the transaction
2323
2302
  * @returns transaction response of set_config function
2324
2303
  */
2325
- async setConfig(signer, msgLib, configType, config, gasOptions, multisig) {
2304
+ async setConfig(signer, msgLib, configType, config, gasOptions) {
2326
2305
  return this.sdk.sendAndConfirmTransaction(
2327
2306
  signer,
2328
2307
  `${this.oappCoreModule[0]}::${this.oappCoreModule[1]}::set_config`,
2329
2308
  [msgLib, configType, config],
2330
- multisig,
2331
2309
  ["address", "u32", "vector<u8>"],
2332
2310
  gasOptions
2333
2311
  );
@@ -2355,15 +2333,13 @@ var Oft = class {
2355
2333
  * @param remoteEid EndpointId details: packages/layerzero-definitions/src/enums/endpoint-id.ts
2356
2334
  * @param msgLib Message Library address
2357
2335
  * @param gasOptions (optional) @see {@link GasOptions}
2358
- * @param multisig (optional) address of another account to sign the transaction
2359
2336
  * @returns transaction response of set_send_library function
2360
2337
  */
2361
- async setSendLibrary(signer, remoteEid, msgLib, gasOptions, multisig) {
2338
+ async setSendLibrary(signer, remoteEid, msgLib, gasOptions) {
2362
2339
  return this.sdk.sendAndConfirmTransaction(
2363
2340
  signer,
2364
2341
  `${this.oappCoreModule[0]}::${this.oappCoreModule[1]}::set_send_library`,
2365
2342
  [remoteEid, msgLib],
2366
- multisig,
2367
2343
  ["u32", "address"],
2368
2344
  gasOptions
2369
2345
  );
@@ -2393,15 +2369,13 @@ var Oft = class {
2393
2369
  * @param msgLib Message Library address
2394
2370
  * @param gracePeriod The block number at which the grace period expires in u64
2395
2371
  * @param gasOptions (optional) @see {@link GasOptions}
2396
- * @param multisig (optional) address of another account to sign the transaction
2397
2372
  * @returns transaction response of set_receive_library function
2398
2373
  */
2399
- async setReceiveLibrary(signer, remoteEid, msgLib, gracePeriod, gasOptions, multisig) {
2374
+ async setReceiveLibrary(signer, remoteEid, msgLib, gracePeriod, gasOptions) {
2400
2375
  return this.sdk.sendAndConfirmTransaction(
2401
2376
  signer,
2402
2377
  `${this.oappCoreModule[0]}::${this.oappCoreModule[1]}::set_receive_library`,
2403
2378
  [remoteEid, msgLib, gracePeriod],
2404
- multisig,
2405
2379
  ["u32", "address", "u64"],
2406
2380
  gasOptions
2407
2381
  );
@@ -2431,15 +2405,13 @@ var Oft = class {
2431
2405
  * @param msgLib Message Library address
2432
2406
  * @param expiry The block number at which the timeout expires in u64
2433
2407
  * @param gasOptions (optional) @see {@link GasOptions}
2434
- * @param multisig (optional) address of another account to sign the transaction
2435
2408
  * @returns transaction response of set_receive_library_timeout function
2436
2409
  */
2437
- async setReceiveLibraryTimeout(signer, remoteEid, msgLib, expiry, gasOptions, multisig) {
2410
+ async setReceiveLibraryTimeout(signer, remoteEid, msgLib, expiry, gasOptions) {
2438
2411
  return this.sdk.sendAndConfirmTransaction(
2439
2412
  signer,
2440
2413
  `${this.oappCoreModule[0]}::${this.oappCoreModule[1]}::set_receive_library_timeout`,
2441
2414
  [remoteEid, msgLib, expiry],
2442
- multisig,
2443
2415
  ["u32", "address", "u64"],
2444
2416
  gasOptions
2445
2417
  );
@@ -2467,15 +2439,13 @@ var Oft = class {
2467
2439
  * @param srcEid Source EndpointId details: packages/layerzero-definitions/src/enums/endpoint-id.ts
2468
2440
  * @param srcOapp Source OApp address
2469
2441
  * @param gasOptions (optional) @see {@link GasOptions}
2470
- * @param multisig (optional) address of another account to sign the transaction
2471
2442
  * @returns transaction response of register_receive_pathway function
2472
2443
  */
2473
- async registerReceivePathway(signer, srcEid, srcOapp, gasOptions, multisig) {
2444
+ async registerReceivePathway(signer, srcEid, srcOapp, gasOptions) {
2474
2445
  return this.sdk.sendAndConfirmTransaction(
2475
2446
  signer,
2476
2447
  `${this.oappCoreModule[0]}::${this.oappCoreModule[1]}::register_receive_pathway`,
2477
2448
  [srcEid, srcOapp],
2478
- multisig,
2479
2449
  ["u32", "vector<u8>"],
2480
2450
  gasOptions
2481
2451
  );
@@ -2505,15 +2475,13 @@ var Oft = class {
2505
2475
  * @param msgType Message type identifier
2506
2476
  * @param enforcedOptions Enforced options in vector<u8> format
2507
2477
  * @param gasOptions (optional) @see {@link GasOptions}
2508
- * @param multisig (optional) address of another account to sign the transaction
2509
2478
  * @returns transaction response of set_enforced_options function
2510
2479
  */
2511
- async setEnforcedOptions(signer, eid, msgType, enforcedOptions, gasOptions, multisig) {
2480
+ async setEnforcedOptions(signer, eid, msgType, enforcedOptions, gasOptions) {
2512
2481
  return this.sdk.sendAndConfirmTransaction(
2513
2482
  signer,
2514
2483
  `${this.oappCoreModule[0]}::${this.oappCoreModule[1]}::set_enforced_options`,
2515
2484
  [eid, msgType, enforcedOptions],
2516
- multisig,
2517
2485
  ["u32", "u16", "vector<u8>"],
2518
2486
  gasOptions
2519
2487
  );
@@ -2539,15 +2507,13 @@ var Oft = class {
2539
2507
  * @param signer oapp account
2540
2508
  * @param newAdmin New admin address
2541
2509
  * @param gasOptions (optional) @see {@link GasOptions}
2542
- * @param multisig (optional) address of another account to sign the transaction
2543
2510
  * @returns transaction response of transfer_admin function
2544
2511
  */
2545
- async transferAdmin(signer, newAdmin, gasOptions, multisig) {
2512
+ async transferAdmin(signer, newAdmin, gasOptions) {
2546
2513
  return this.sdk.sendAndConfirmTransaction(
2547
2514
  signer,
2548
2515
  `${this.oappCoreModule[0]}::${this.oappCoreModule[1]}::transfer_admin`,
2549
2516
  [newAdmin],
2550
- multisig,
2551
2517
  ["address"],
2552
2518
  gasOptions
2553
2519
  );
@@ -2571,15 +2537,13 @@ var Oft = class {
2571
2537
  *
2572
2538
  * @param signer admin account
2573
2539
  * @param gasOptions (optional) @see {@link GasOptions}
2574
- * @param multisig (optional) address of another account to sign the transaction
2575
2540
  * @returns transaction response of renounce_admin function
2576
2541
  */
2577
- async renounceAdmin(signer, gasOptions, multisig) {
2542
+ async renounceAdmin(signer, gasOptions) {
2578
2543
  return this.sdk.sendAndConfirmTransaction(
2579
2544
  signer,
2580
2545
  `${this.oappCoreModule[0]}::${this.oappCoreModule[1]}::renounce_admin`,
2581
2546
  [],
2582
- multisig,
2583
2547
  [],
2584
2548
  gasOptions
2585
2549
  );
@@ -2607,15 +2571,13 @@ var Oft = class {
2607
2571
  * @param eid EndpointId details: packages/layerzero-definitions/src/enums/endpoint-id.ts
2608
2572
  * @param peer Peer address in vector<u8> format
2609
2573
  * @param gasOptions (optional) @see {@link GasOptions}
2610
- * @param multisig (optional) address of another account to sign the transaction
2611
2574
  * @returns transaction response of set_peer function
2612
2575
  */
2613
- async setPeer(signer, eid, peer, gasOptions, multisig) {
2576
+ async setPeer(signer, eid, peer, gasOptions) {
2614
2577
  return this.sdk.sendAndConfirmTransaction(
2615
2578
  signer,
2616
2579
  `${this.oappCoreModule[0]}::${this.oappCoreModule[1]}::set_peer`,
2617
2580
  [eid, peer],
2618
- multisig,
2619
2581
  ["u32", "vector<u8>"],
2620
2582
  gasOptions
2621
2583
  );
@@ -2642,15 +2604,13 @@ var Oft = class {
2642
2604
  * @param signer admin account
2643
2605
  * @param eid EndpointId details: packages/layerzero-definitions/src/enums/endpoint-id.ts
2644
2606
  * @param gasOptions (optional) @see {@link GasOptions}
2645
- * @param multisig (optional) address of another account to sign the transaction
2646
2607
  * @returns transaction response of remove_peer function
2647
2608
  */
2648
- async removePeer(signer, eid, gasOptions, multisig) {
2609
+ async removePeer(signer, eid, gasOptions) {
2649
2610
  return this.sdk.sendAndConfirmTransaction(
2650
2611
  signer,
2651
2612
  `${this.oappCoreModule[0]}::${this.oappCoreModule[1]}::remove_peer`,
2652
2613
  [eid],
2653
- multisig,
2654
2614
  ["u32"],
2655
2615
  gasOptions
2656
2616
  );
@@ -2676,15 +2636,13 @@ var Oft = class {
2676
2636
  * @param signer admin account
2677
2637
  * @param delegate Delegate address
2678
2638
  * @param gasOptions (optional) @see {@link GasOptions}
2679
- * @param multisig (optional) address of another account to sign the transaction
2680
2639
  * @returns transaction response of set_delegate function
2681
2640
  */
2682
- async setDelegate(signer, delegate, gasOptions, multisig) {
2641
+ async setDelegate(signer, delegate, gasOptions) {
2683
2642
  return this.sdk.sendAndConfirmTransaction(
2684
2643
  signer,
2685
2644
  `${this.oappCoreModule[0]}::${this.oappCoreModule[1]}::set_delegate`,
2686
2645
  [delegate],
2687
- multisig,
2688
2646
  ["address"],
2689
2647
  gasOptions
2690
2648
  );
@@ -2720,15 +2678,13 @@ var Oft = class {
2720
2678
  * @param message Message content in vector<u8> format
2721
2679
  * @param extraData Additional data in vector<u8> format
2722
2680
  * @param gasOptions (optional) @see {@link GasOptions}
2723
- * @param multisig (optional) address of another account to sign the transaction
2724
2681
  * @returns transaction response of lz_receive function
2725
2682
  */
2726
- async lzReceive(signer, srcEid, sender, nonce, guid, message, extraData, gasOptions, multisig) {
2683
+ async lzReceive(signer, srcEid, sender, nonce, guid, message, extraData, gasOptions) {
2727
2684
  return this.sdk.sendAndConfirmTransaction(
2728
2685
  signer,
2729
2686
  `${this.oappReceiveModule[0]}::${this.oappReceiveModule[1]}::lz_receive`,
2730
2687
  [srcEid, sender, nonce, guid, message, extraData],
2731
- multisig,
2732
2688
  ["u32", "vector<u8>", "u64", "vector<u8>", "vector<u8>", "vector<u8>"],
2733
2689
  gasOptions
2734
2690
  );
@@ -2762,15 +2718,13 @@ var Oft = class {
2762
2718
  * @param guid Message GUID in vector<u8> format
2763
2719
  * @param message Message content in vector<u8> format
2764
2720
  * @param gasOptions (optional) @see {@link GasOptions}
2765
- * @param multisig (optional) address of another account to sign the transaction
2766
2721
  * @returns transaction response of clear function
2767
2722
  */
2768
- async clear(signer, srcEid, sender, nonce, guid, message, gasOptions, multisig) {
2723
+ async clear(signer, srcEid, sender, nonce, guid, message, gasOptions) {
2769
2724
  return this.sdk.sendAndConfirmTransaction(
2770
2725
  signer,
2771
2726
  `${this.oappCoreModule[0]}::${this.oappCoreModule[1]}::clear`,
2772
2727
  [srcEid, sender, nonce, guid, message],
2773
- multisig,
2774
2728
  ["u32", "vector<u8>", "u64", "vector<u8>", "vector<u8>"],
2775
2729
  gasOptions
2776
2730
  );
@@ -2800,15 +2754,13 @@ var Oft = class {
2800
2754
  * @param sender Sender address in vector<u8> format
2801
2755
  * @param nonce Message nonce in u64
2802
2756
  * @param gasOptions (optional) @see {@link GasOptions}
2803
- * @param multisig (optional) address of another account to sign the transaction
2804
2757
  * @returns transaction response of skip function
2805
2758
  */
2806
- async skip(signer, srcEid, sender, nonce, gasOptions, multisig) {
2759
+ async skip(signer, srcEid, sender, nonce, gasOptions) {
2807
2760
  return this.sdk.sendAndConfirmTransaction(
2808
2761
  signer,
2809
2762
  `${this.oappCoreModule[0]}::${this.oappCoreModule[1]}::skip`,
2810
2763
  [srcEid, sender, nonce],
2811
- multisig,
2812
2764
  ["u32", "vector<u8>", "u64"],
2813
2765
  gasOptions
2814
2766
  );
@@ -2840,15 +2792,13 @@ var Oft = class {
2840
2792
  * @param nonce Message nonce in u64
2841
2793
  * @param payloadHash Hash of the payload in vector<u8> format
2842
2794
  * @param gasOptions (optional) @see {@link GasOptions}
2843
- * @param multisig (optional) address of another account to sign the transaction
2844
2795
  * @returns transaction response of burn function
2845
2796
  */
2846
- async burn(signer, srcEid, sender, nonce, payloadHash, gasOptions, multisig) {
2797
+ async burn(signer, srcEid, sender, nonce, payloadHash, gasOptions) {
2847
2798
  return this.sdk.sendAndConfirmTransaction(
2848
2799
  signer,
2849
2800
  `${this.oappCoreModule[0]}::${this.oappCoreModule[1]}::burn`,
2850
2801
  [srcEid, sender, nonce, payloadHash],
2851
- multisig,
2852
2802
  ["u32", "vector<u8>", "u64", "vector<u8>"],
2853
2803
  gasOptions
2854
2804
  );
@@ -2880,15 +2830,13 @@ var Oft = class {
2880
2830
  * @param nonce Message nonce in u64
2881
2831
  * @param payloadHash Hash of the payload in vector<u8> format
2882
2832
  * @param gasOptions (optional) @see {@link GasOptions}
2883
- * @param multisig (optional) address of another account to sign the transaction
2884
2833
  * @returns transaction response of nilify function
2885
2834
  */
2886
- async nilify(signer, srcEid, sender, nonce, payloadHash, gasOptions, multisig) {
2835
+ async nilify(signer, srcEid, sender, nonce, payloadHash, gasOptions) {
2887
2836
  return this.sdk.sendAndConfirmTransaction(
2888
2837
  signer,
2889
2838
  `${this.oappCoreModule[0]}::${this.oappCoreModule[1]}::nilify`,
2890
2839
  [srcEid, sender, nonce, payloadHash],
2891
- multisig,
2892
2840
  ["u32", "vector<u8>", "u64", "vector<u8>"],
2893
2841
  gasOptions
2894
2842
  );
@@ -3230,15 +3178,13 @@ var SimpleMsgLib = class {
3230
3178
  * @param {AccountType | PrivateKey | MnemonicAndPath} signer - The signer of the transaction.
3231
3179
  * @param {bigint} fee - The native fee.
3232
3180
  * @param {bigint} lz - The LayerZero token fee.
3233
- * @param {string | Uint8Array} [multisig] - The multisig address.
3234
3181
  * @returns {Promise<TransactionResponse>} The transaction response.
3235
3182
  */
3236
- async setMessagingFee(signer, fee, lz, multisig) {
3183
+ async setMessagingFee(signer, fee, lz) {
3237
3184
  return this.sdk.sendAndConfirmTransaction(
3238
3185
  signer,
3239
3186
  `${this.module[0]}::${this.module[1]}::set_messaging_fee`,
3240
3187
  [fee, lz],
3241
- multisig,
3242
3188
  ["u64", "u64"]
3243
3189
  );
3244
3190
  }