@super-protocol/sdk-js 3.5.0-beta.2 → 3.6.0
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/dist/cjs/contracts/abi.d.ts +347 -140
- package/dist/cjs/contracts/abi.js +435 -168
- package/dist/cjs/staticModels/Orders.d.ts +6 -2
- package/dist/cjs/staticModels/Orders.js +66 -17
- package/dist/cjs/types/Order.d.ts +20 -0
- package/dist/cjs/utils/TxManager.d.ts +1 -0
- package/dist/cjs/utils/TxManager.js +21 -9
- package/dist/mjs/contracts/abi.d.ts +347 -140
- package/dist/mjs/contracts/abi.js +435 -168
- package/dist/mjs/staticModels/Orders.d.ts +6 -2
- package/dist/mjs/staticModels/Orders.js +66 -17
- package/dist/mjs/types/Order.d.ts +20 -0
- package/dist/mjs/utils/TxManager.d.ts +1 -0
- package/dist/mjs/utils/TxManager.js +21 -9
- package/package.json +1 -1
|
@@ -3594,6 +3594,25 @@ export declare const abi: readonly [{
|
|
|
3594
3594
|
}];
|
|
3595
3595
|
readonly name: "OrderProfitWithdrawn";
|
|
3596
3596
|
readonly type: "event";
|
|
3597
|
+
}, {
|
|
3598
|
+
readonly inputs: readonly [{
|
|
3599
|
+
readonly components: readonly [{
|
|
3600
|
+
readonly internalType: "uint256";
|
|
3601
|
+
readonly name: "orderId";
|
|
3602
|
+
readonly type: "uint256";
|
|
3603
|
+
}, {
|
|
3604
|
+
readonly internalType: "uint256";
|
|
3605
|
+
readonly name: "amount";
|
|
3606
|
+
readonly type: "uint256";
|
|
3607
|
+
}];
|
|
3608
|
+
readonly internalType: "struct OrdersFinance.RefillArgs[]";
|
|
3609
|
+
readonly name: "args";
|
|
3610
|
+
readonly type: "tuple[]";
|
|
3611
|
+
}];
|
|
3612
|
+
readonly name: "batchRefillOrder";
|
|
3613
|
+
readonly outputs: readonly [];
|
|
3614
|
+
readonly stateMutability: "nonpayable";
|
|
3615
|
+
readonly type: "function";
|
|
3597
3616
|
}, {
|
|
3598
3617
|
readonly inputs: readonly [{
|
|
3599
3618
|
readonly internalType: "uint256[]";
|
|
@@ -8300,171 +8319,359 @@ export declare const abi: readonly [{
|
|
|
8300
8319
|
readonly outputs: readonly [];
|
|
8301
8320
|
readonly stateMutability: "nonpayable";
|
|
8302
8321
|
readonly type: "function";
|
|
8322
|
+
}, {
|
|
8323
|
+
readonly inputs: readonly [{
|
|
8324
|
+
readonly internalType: "uint256[]";
|
|
8325
|
+
readonly name: "parentOrderIds";
|
|
8326
|
+
readonly type: "uint256[]";
|
|
8327
|
+
}];
|
|
8328
|
+
readonly name: "cancelWorkflows";
|
|
8329
|
+
readonly outputs: readonly [];
|
|
8330
|
+
readonly stateMutability: "nonpayable";
|
|
8331
|
+
readonly type: "function";
|
|
8303
8332
|
}, {
|
|
8304
8333
|
readonly inputs: readonly [{
|
|
8305
8334
|
readonly components: readonly [{
|
|
8306
|
-
readonly
|
|
8307
|
-
|
|
8308
|
-
|
|
8309
|
-
|
|
8310
|
-
|
|
8311
|
-
|
|
8312
|
-
|
|
8313
|
-
|
|
8314
|
-
|
|
8315
|
-
|
|
8316
|
-
|
|
8317
|
-
|
|
8318
|
-
|
|
8319
|
-
|
|
8320
|
-
|
|
8321
|
-
|
|
8322
|
-
|
|
8323
|
-
|
|
8324
|
-
|
|
8335
|
+
readonly components: readonly [{
|
|
8336
|
+
readonly internalType: "uint256";
|
|
8337
|
+
readonly name: "offerId";
|
|
8338
|
+
readonly type: "uint256";
|
|
8339
|
+
}, {
|
|
8340
|
+
readonly internalType: "string";
|
|
8341
|
+
readonly name: "resultInfo";
|
|
8342
|
+
readonly type: "string";
|
|
8343
|
+
}, {
|
|
8344
|
+
readonly internalType: "bytes32";
|
|
8345
|
+
readonly name: "externalId";
|
|
8346
|
+
readonly type: "bytes32";
|
|
8347
|
+
}, {
|
|
8348
|
+
readonly internalType: "uint256";
|
|
8349
|
+
readonly name: "expectedPrice";
|
|
8350
|
+
readonly type: "uint256";
|
|
8351
|
+
}, {
|
|
8352
|
+
readonly internalType: "uint256";
|
|
8353
|
+
readonly name: "maxPriceSlippage";
|
|
8354
|
+
readonly type: "uint256";
|
|
8355
|
+
}, {
|
|
8356
|
+
readonly internalType: "address";
|
|
8357
|
+
readonly name: "tokenAddress";
|
|
8358
|
+
readonly type: "address";
|
|
8359
|
+
}, {
|
|
8360
|
+
readonly internalType: "uint64";
|
|
8361
|
+
readonly name: "offerVersion";
|
|
8362
|
+
readonly type: "uint64";
|
|
8363
|
+
}, {
|
|
8364
|
+
readonly internalType: "enum OrderStatus";
|
|
8365
|
+
readonly name: "status";
|
|
8366
|
+
readonly type: "uint8";
|
|
8367
|
+
}];
|
|
8368
|
+
readonly internalType: "struct OrderInfo";
|
|
8369
|
+
readonly name: "parentOrderInfo";
|
|
8370
|
+
readonly type: "tuple";
|
|
8325
8371
|
}, {
|
|
8326
|
-
readonly
|
|
8327
|
-
|
|
8328
|
-
|
|
8372
|
+
readonly components: readonly [{
|
|
8373
|
+
readonly internalType: "uint256";
|
|
8374
|
+
readonly name: "slotId";
|
|
8375
|
+
readonly type: "uint256";
|
|
8376
|
+
}, {
|
|
8377
|
+
readonly internalType: "uint32";
|
|
8378
|
+
readonly name: "slotCount";
|
|
8379
|
+
readonly type: "uint32";
|
|
8380
|
+
}, {
|
|
8381
|
+
readonly internalType: "uint256[]";
|
|
8382
|
+
readonly name: "optionsIds";
|
|
8383
|
+
readonly type: "uint256[]";
|
|
8384
|
+
}, {
|
|
8385
|
+
readonly internalType: "uint32[]";
|
|
8386
|
+
readonly name: "optionsCount";
|
|
8387
|
+
readonly type: "uint32[]";
|
|
8388
|
+
}];
|
|
8389
|
+
readonly internalType: "struct OrderSlots";
|
|
8390
|
+
readonly name: "parentOrderSlots";
|
|
8391
|
+
readonly type: "tuple";
|
|
8329
8392
|
}, {
|
|
8330
|
-
readonly
|
|
8331
|
-
|
|
8332
|
-
|
|
8393
|
+
readonly components: readonly [{
|
|
8394
|
+
readonly internalType: "uint256[]";
|
|
8395
|
+
readonly name: "inputOffersIds";
|
|
8396
|
+
readonly type: "uint256[]";
|
|
8397
|
+
}, {
|
|
8398
|
+
readonly internalType: "uint256";
|
|
8399
|
+
readonly name: "outputOfferId";
|
|
8400
|
+
readonly type: "uint256";
|
|
8401
|
+
}, {
|
|
8402
|
+
readonly internalType: "uint64[]";
|
|
8403
|
+
readonly name: "inputOffersVersions";
|
|
8404
|
+
readonly type: "uint64[]";
|
|
8405
|
+
}, {
|
|
8406
|
+
readonly internalType: "uint64";
|
|
8407
|
+
readonly name: "outputOfferVersion";
|
|
8408
|
+
readonly type: "uint64";
|
|
8409
|
+
}];
|
|
8410
|
+
readonly internalType: "struct OrderArgs";
|
|
8411
|
+
readonly name: "parentOrderArgs";
|
|
8412
|
+
readonly type: "tuple";
|
|
8333
8413
|
}, {
|
|
8334
|
-
readonly internalType: "enum OrderStatus";
|
|
8335
|
-
readonly name: "status";
|
|
8336
|
-
readonly type: "uint8";
|
|
8337
|
-
}];
|
|
8338
|
-
readonly internalType: "struct OrderInfo";
|
|
8339
|
-
readonly name: "parentOrderInfo";
|
|
8340
|
-
readonly type: "tuple";
|
|
8341
|
-
}, {
|
|
8342
|
-
readonly components: readonly [{
|
|
8343
8414
|
readonly internalType: "uint256";
|
|
8344
|
-
readonly name: "
|
|
8415
|
+
readonly name: "workflowDeposit";
|
|
8345
8416
|
readonly type: "uint256";
|
|
8346
8417
|
}, {
|
|
8347
|
-
readonly
|
|
8348
|
-
|
|
8349
|
-
|
|
8350
|
-
|
|
8351
|
-
|
|
8352
|
-
|
|
8353
|
-
|
|
8354
|
-
|
|
8355
|
-
|
|
8356
|
-
|
|
8357
|
-
|
|
8358
|
-
|
|
8359
|
-
|
|
8360
|
-
|
|
8361
|
-
|
|
8362
|
-
|
|
8363
|
-
|
|
8364
|
-
|
|
8365
|
-
|
|
8366
|
-
|
|
8367
|
-
|
|
8368
|
-
|
|
8369
|
-
|
|
8370
|
-
|
|
8418
|
+
readonly components: readonly [{
|
|
8419
|
+
readonly internalType: "uint256";
|
|
8420
|
+
readonly name: "offerId";
|
|
8421
|
+
readonly type: "uint256";
|
|
8422
|
+
}, {
|
|
8423
|
+
readonly internalType: "string";
|
|
8424
|
+
readonly name: "resultInfo";
|
|
8425
|
+
readonly type: "string";
|
|
8426
|
+
}, {
|
|
8427
|
+
readonly internalType: "bytes32";
|
|
8428
|
+
readonly name: "externalId";
|
|
8429
|
+
readonly type: "bytes32";
|
|
8430
|
+
}, {
|
|
8431
|
+
readonly internalType: "uint256";
|
|
8432
|
+
readonly name: "expectedPrice";
|
|
8433
|
+
readonly type: "uint256";
|
|
8434
|
+
}, {
|
|
8435
|
+
readonly internalType: "uint256";
|
|
8436
|
+
readonly name: "maxPriceSlippage";
|
|
8437
|
+
readonly type: "uint256";
|
|
8438
|
+
}, {
|
|
8439
|
+
readonly internalType: "address";
|
|
8440
|
+
readonly name: "tokenAddress";
|
|
8441
|
+
readonly type: "address";
|
|
8442
|
+
}, {
|
|
8443
|
+
readonly internalType: "uint64";
|
|
8444
|
+
readonly name: "offerVersion";
|
|
8445
|
+
readonly type: "uint64";
|
|
8446
|
+
}, {
|
|
8447
|
+
readonly internalType: "enum OrderStatus";
|
|
8448
|
+
readonly name: "status";
|
|
8449
|
+
readonly type: "uint8";
|
|
8450
|
+
}];
|
|
8451
|
+
readonly internalType: "struct OrderInfo[]";
|
|
8452
|
+
readonly name: "subOrdersInfos";
|
|
8453
|
+
readonly type: "tuple[]";
|
|
8371
8454
|
}, {
|
|
8372
|
-
readonly
|
|
8373
|
-
|
|
8374
|
-
|
|
8455
|
+
readonly components: readonly [{
|
|
8456
|
+
readonly internalType: "uint256";
|
|
8457
|
+
readonly name: "slotId";
|
|
8458
|
+
readonly type: "uint256";
|
|
8459
|
+
}, {
|
|
8460
|
+
readonly internalType: "uint32";
|
|
8461
|
+
readonly name: "slotCount";
|
|
8462
|
+
readonly type: "uint32";
|
|
8463
|
+
}, {
|
|
8464
|
+
readonly internalType: "uint256[]";
|
|
8465
|
+
readonly name: "optionsIds";
|
|
8466
|
+
readonly type: "uint256[]";
|
|
8467
|
+
}, {
|
|
8468
|
+
readonly internalType: "uint32[]";
|
|
8469
|
+
readonly name: "optionsCount";
|
|
8470
|
+
readonly type: "uint32[]";
|
|
8471
|
+
}];
|
|
8472
|
+
readonly internalType: "struct OrderSlots[]";
|
|
8473
|
+
readonly name: "subOrdersSlots";
|
|
8474
|
+
readonly type: "tuple[]";
|
|
8375
8475
|
}, {
|
|
8376
|
-
readonly
|
|
8377
|
-
|
|
8378
|
-
|
|
8476
|
+
readonly components: readonly [{
|
|
8477
|
+
readonly internalType: "uint256[]";
|
|
8478
|
+
readonly name: "inputOffersIds";
|
|
8479
|
+
readonly type: "uint256[]";
|
|
8480
|
+
}, {
|
|
8481
|
+
readonly internalType: "uint256";
|
|
8482
|
+
readonly name: "outputOfferId";
|
|
8483
|
+
readonly type: "uint256";
|
|
8484
|
+
}, {
|
|
8485
|
+
readonly internalType: "uint64[]";
|
|
8486
|
+
readonly name: "inputOffersVersions";
|
|
8487
|
+
readonly type: "uint64[]";
|
|
8488
|
+
}, {
|
|
8489
|
+
readonly internalType: "uint64";
|
|
8490
|
+
readonly name: "outputOfferVersion";
|
|
8491
|
+
readonly type: "uint64";
|
|
8492
|
+
}];
|
|
8493
|
+
readonly internalType: "struct OrderArgs[]";
|
|
8494
|
+
readonly name: "subOrdersArgs";
|
|
8495
|
+
readonly type: "tuple[]";
|
|
8379
8496
|
}];
|
|
8380
|
-
readonly internalType: "struct
|
|
8381
|
-
readonly name: "
|
|
8497
|
+
readonly internalType: "struct Workflow.WorkflowArgs";
|
|
8498
|
+
readonly name: "args";
|
|
8382
8499
|
readonly type: "tuple";
|
|
8383
|
-
}
|
|
8384
|
-
|
|
8385
|
-
|
|
8386
|
-
|
|
8387
|
-
|
|
8500
|
+
}];
|
|
8501
|
+
readonly name: "createWorkflow";
|
|
8502
|
+
readonly outputs: readonly [];
|
|
8503
|
+
readonly stateMutability: "nonpayable";
|
|
8504
|
+
readonly type: "function";
|
|
8505
|
+
}, {
|
|
8506
|
+
readonly inputs: readonly [{
|
|
8388
8507
|
readonly components: readonly [{
|
|
8389
|
-
readonly
|
|
8390
|
-
|
|
8391
|
-
|
|
8392
|
-
|
|
8393
|
-
|
|
8394
|
-
|
|
8395
|
-
|
|
8396
|
-
|
|
8397
|
-
|
|
8398
|
-
|
|
8399
|
-
|
|
8400
|
-
|
|
8401
|
-
|
|
8402
|
-
|
|
8403
|
-
|
|
8404
|
-
|
|
8405
|
-
|
|
8406
|
-
|
|
8407
|
-
|
|
8508
|
+
readonly components: readonly [{
|
|
8509
|
+
readonly internalType: "uint256";
|
|
8510
|
+
readonly name: "offerId";
|
|
8511
|
+
readonly type: "uint256";
|
|
8512
|
+
}, {
|
|
8513
|
+
readonly internalType: "string";
|
|
8514
|
+
readonly name: "resultInfo";
|
|
8515
|
+
readonly type: "string";
|
|
8516
|
+
}, {
|
|
8517
|
+
readonly internalType: "bytes32";
|
|
8518
|
+
readonly name: "externalId";
|
|
8519
|
+
readonly type: "bytes32";
|
|
8520
|
+
}, {
|
|
8521
|
+
readonly internalType: "uint256";
|
|
8522
|
+
readonly name: "expectedPrice";
|
|
8523
|
+
readonly type: "uint256";
|
|
8524
|
+
}, {
|
|
8525
|
+
readonly internalType: "uint256";
|
|
8526
|
+
readonly name: "maxPriceSlippage";
|
|
8527
|
+
readonly type: "uint256";
|
|
8528
|
+
}, {
|
|
8529
|
+
readonly internalType: "address";
|
|
8530
|
+
readonly name: "tokenAddress";
|
|
8531
|
+
readonly type: "address";
|
|
8532
|
+
}, {
|
|
8533
|
+
readonly internalType: "uint64";
|
|
8534
|
+
readonly name: "offerVersion";
|
|
8535
|
+
readonly type: "uint64";
|
|
8536
|
+
}, {
|
|
8537
|
+
readonly internalType: "enum OrderStatus";
|
|
8538
|
+
readonly name: "status";
|
|
8539
|
+
readonly type: "uint8";
|
|
8540
|
+
}];
|
|
8541
|
+
readonly internalType: "struct OrderInfo";
|
|
8542
|
+
readonly name: "parentOrderInfo";
|
|
8543
|
+
readonly type: "tuple";
|
|
8408
8544
|
}, {
|
|
8409
|
-
readonly
|
|
8410
|
-
|
|
8411
|
-
|
|
8545
|
+
readonly components: readonly [{
|
|
8546
|
+
readonly internalType: "uint256";
|
|
8547
|
+
readonly name: "slotId";
|
|
8548
|
+
readonly type: "uint256";
|
|
8549
|
+
}, {
|
|
8550
|
+
readonly internalType: "uint32";
|
|
8551
|
+
readonly name: "slotCount";
|
|
8552
|
+
readonly type: "uint32";
|
|
8553
|
+
}, {
|
|
8554
|
+
readonly internalType: "uint256[]";
|
|
8555
|
+
readonly name: "optionsIds";
|
|
8556
|
+
readonly type: "uint256[]";
|
|
8557
|
+
}, {
|
|
8558
|
+
readonly internalType: "uint32[]";
|
|
8559
|
+
readonly name: "optionsCount";
|
|
8560
|
+
readonly type: "uint32[]";
|
|
8561
|
+
}];
|
|
8562
|
+
readonly internalType: "struct OrderSlots";
|
|
8563
|
+
readonly name: "parentOrderSlots";
|
|
8564
|
+
readonly type: "tuple";
|
|
8412
8565
|
}, {
|
|
8413
|
-
readonly
|
|
8414
|
-
|
|
8415
|
-
|
|
8566
|
+
readonly components: readonly [{
|
|
8567
|
+
readonly internalType: "uint256[]";
|
|
8568
|
+
readonly name: "inputOffersIds";
|
|
8569
|
+
readonly type: "uint256[]";
|
|
8570
|
+
}, {
|
|
8571
|
+
readonly internalType: "uint256";
|
|
8572
|
+
readonly name: "outputOfferId";
|
|
8573
|
+
readonly type: "uint256";
|
|
8574
|
+
}, {
|
|
8575
|
+
readonly internalType: "uint64[]";
|
|
8576
|
+
readonly name: "inputOffersVersions";
|
|
8577
|
+
readonly type: "uint64[]";
|
|
8578
|
+
}, {
|
|
8579
|
+
readonly internalType: "uint64";
|
|
8580
|
+
readonly name: "outputOfferVersion";
|
|
8581
|
+
readonly type: "uint64";
|
|
8582
|
+
}];
|
|
8583
|
+
readonly internalType: "struct OrderArgs";
|
|
8584
|
+
readonly name: "parentOrderArgs";
|
|
8585
|
+
readonly type: "tuple";
|
|
8416
8586
|
}, {
|
|
8417
|
-
readonly internalType: "enum OrderStatus";
|
|
8418
|
-
readonly name: "status";
|
|
8419
|
-
readonly type: "uint8";
|
|
8420
|
-
}];
|
|
8421
|
-
readonly internalType: "struct OrderInfo[]";
|
|
8422
|
-
readonly name: "subOrdersInfos";
|
|
8423
|
-
readonly type: "tuple[]";
|
|
8424
|
-
}, {
|
|
8425
|
-
readonly components: readonly [{
|
|
8426
8587
|
readonly internalType: "uint256";
|
|
8427
|
-
readonly name: "
|
|
8588
|
+
readonly name: "workflowDeposit";
|
|
8428
8589
|
readonly type: "uint256";
|
|
8429
8590
|
}, {
|
|
8430
|
-
readonly
|
|
8431
|
-
|
|
8432
|
-
|
|
8433
|
-
|
|
8434
|
-
|
|
8435
|
-
|
|
8436
|
-
|
|
8437
|
-
|
|
8438
|
-
|
|
8439
|
-
|
|
8440
|
-
|
|
8441
|
-
|
|
8442
|
-
|
|
8443
|
-
|
|
8444
|
-
|
|
8445
|
-
|
|
8446
|
-
|
|
8447
|
-
|
|
8448
|
-
|
|
8449
|
-
|
|
8450
|
-
|
|
8451
|
-
|
|
8452
|
-
|
|
8453
|
-
|
|
8591
|
+
readonly components: readonly [{
|
|
8592
|
+
readonly internalType: "uint256";
|
|
8593
|
+
readonly name: "offerId";
|
|
8594
|
+
readonly type: "uint256";
|
|
8595
|
+
}, {
|
|
8596
|
+
readonly internalType: "string";
|
|
8597
|
+
readonly name: "resultInfo";
|
|
8598
|
+
readonly type: "string";
|
|
8599
|
+
}, {
|
|
8600
|
+
readonly internalType: "bytes32";
|
|
8601
|
+
readonly name: "externalId";
|
|
8602
|
+
readonly type: "bytes32";
|
|
8603
|
+
}, {
|
|
8604
|
+
readonly internalType: "uint256";
|
|
8605
|
+
readonly name: "expectedPrice";
|
|
8606
|
+
readonly type: "uint256";
|
|
8607
|
+
}, {
|
|
8608
|
+
readonly internalType: "uint256";
|
|
8609
|
+
readonly name: "maxPriceSlippage";
|
|
8610
|
+
readonly type: "uint256";
|
|
8611
|
+
}, {
|
|
8612
|
+
readonly internalType: "address";
|
|
8613
|
+
readonly name: "tokenAddress";
|
|
8614
|
+
readonly type: "address";
|
|
8615
|
+
}, {
|
|
8616
|
+
readonly internalType: "uint64";
|
|
8617
|
+
readonly name: "offerVersion";
|
|
8618
|
+
readonly type: "uint64";
|
|
8619
|
+
}, {
|
|
8620
|
+
readonly internalType: "enum OrderStatus";
|
|
8621
|
+
readonly name: "status";
|
|
8622
|
+
readonly type: "uint8";
|
|
8623
|
+
}];
|
|
8624
|
+
readonly internalType: "struct OrderInfo[]";
|
|
8625
|
+
readonly name: "subOrdersInfos";
|
|
8626
|
+
readonly type: "tuple[]";
|
|
8454
8627
|
}, {
|
|
8455
|
-
readonly
|
|
8456
|
-
|
|
8457
|
-
|
|
8628
|
+
readonly components: readonly [{
|
|
8629
|
+
readonly internalType: "uint256";
|
|
8630
|
+
readonly name: "slotId";
|
|
8631
|
+
readonly type: "uint256";
|
|
8632
|
+
}, {
|
|
8633
|
+
readonly internalType: "uint32";
|
|
8634
|
+
readonly name: "slotCount";
|
|
8635
|
+
readonly type: "uint32";
|
|
8636
|
+
}, {
|
|
8637
|
+
readonly internalType: "uint256[]";
|
|
8638
|
+
readonly name: "optionsIds";
|
|
8639
|
+
readonly type: "uint256[]";
|
|
8640
|
+
}, {
|
|
8641
|
+
readonly internalType: "uint32[]";
|
|
8642
|
+
readonly name: "optionsCount";
|
|
8643
|
+
readonly type: "uint32[]";
|
|
8644
|
+
}];
|
|
8645
|
+
readonly internalType: "struct OrderSlots[]";
|
|
8646
|
+
readonly name: "subOrdersSlots";
|
|
8647
|
+
readonly type: "tuple[]";
|
|
8458
8648
|
}, {
|
|
8459
|
-
readonly
|
|
8460
|
-
|
|
8461
|
-
|
|
8649
|
+
readonly components: readonly [{
|
|
8650
|
+
readonly internalType: "uint256[]";
|
|
8651
|
+
readonly name: "inputOffersIds";
|
|
8652
|
+
readonly type: "uint256[]";
|
|
8653
|
+
}, {
|
|
8654
|
+
readonly internalType: "uint256";
|
|
8655
|
+
readonly name: "outputOfferId";
|
|
8656
|
+
readonly type: "uint256";
|
|
8657
|
+
}, {
|
|
8658
|
+
readonly internalType: "uint64[]";
|
|
8659
|
+
readonly name: "inputOffersVersions";
|
|
8660
|
+
readonly type: "uint64[]";
|
|
8661
|
+
}, {
|
|
8662
|
+
readonly internalType: "uint64";
|
|
8663
|
+
readonly name: "outputOfferVersion";
|
|
8664
|
+
readonly type: "uint64";
|
|
8665
|
+
}];
|
|
8666
|
+
readonly internalType: "struct OrderArgs[]";
|
|
8667
|
+
readonly name: "subOrdersArgs";
|
|
8668
|
+
readonly type: "tuple[]";
|
|
8462
8669
|
}];
|
|
8463
|
-
readonly internalType: "struct
|
|
8464
|
-
readonly name: "
|
|
8670
|
+
readonly internalType: "struct Workflow.WorkflowArgs[]";
|
|
8671
|
+
readonly name: "args";
|
|
8465
8672
|
readonly type: "tuple[]";
|
|
8466
8673
|
}];
|
|
8467
|
-
readonly name: "
|
|
8674
|
+
readonly name: "createWorkflows";
|
|
8468
8675
|
readonly outputs: readonly [];
|
|
8469
8676
|
readonly stateMutability: "nonpayable";
|
|
8470
8677
|
readonly type: "function";
|