@wowok/skills 1.1.11 → 1.1.12
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/examples/MyShop/MyShop.md +67 -60
- package/package.json +1 -1
- package/wowok-arbitrator/APPENDIX.md +545 -0
- package/wowok-arbitrator/SKILL.md +8 -535
- package/wowok-auditor/APPENDIX.md +487 -0
- package/wowok-auditor/SKILL.md +9 -480
- package/wowok-guard/APPENDIX.md +428 -0
- package/wowok-guard/SKILL.md +8 -418
- package/wowok-machine/APPENDIX.md +407 -0
- package/wowok-machine/SKILL.md +9 -400
- package/wowok-messenger/APPENDIX.md +550 -0
- package/wowok-messenger/SKILL.md +9 -543
- package/wowok-onboard/APPENDIX.md +472 -0
- package/wowok-onboard/SKILL.md +10 -465
- package/wowok-order/APPENDIX.md +777 -0
- package/wowok-order/SKILL.md +110 -506
- package/wowok-output/APPENDIX.md +575 -0
- package/wowok-output/SKILL.md +9 -568
- package/wowok-planner/APPENDIX.md +700 -0
- package/wowok-planner/SKILL.md +9 -693
- package/wowok-provider/APPENDIX.md +425 -0
- package/wowok-provider/SKILL.md +8 -415
- package/wowok-safety/APPENDIX.md +561 -0
- package/wowok-safety/SKILL.md +9 -554
- package/wowok-scenario/APPENDIX.md +97 -0
- package/wowok-scenario/MODE-DETAILS.md +275 -0
- package/wowok-scenario/SKILL.md +20 -353
- package/wowok-tools/APPENDIX.md +388 -0
- package/wowok-tools/SKILL.md +9 -381
|
@@ -86,7 +86,7 @@ This section guides merchants through setting up their online store.
|
|
|
86
86
|
### Prerequisites
|
|
87
87
|
|
|
88
88
|
Before starting, ensure you have:
|
|
89
|
-
- A WoWok account with
|
|
89
|
+
- A WoWok account with mainnet WOW tokens (gas)
|
|
90
90
|
- Access to the WoWok MCP server
|
|
91
91
|
|
|
92
92
|
**Create merchant account:**
|
|
@@ -102,15 +102,15 @@ Before starting, ensure you have:
|
|
|
102
102
|
}
|
|
103
103
|
```
|
|
104
104
|
|
|
105
|
-
**Get
|
|
105
|
+
**Get mainnet tokens:**
|
|
106
106
|
|
|
107
|
-
**Prompt**:
|
|
107
|
+
**Prompt**: Transfer 1 WOW to account "myshop_merchant" from a funded account for gas fees.
|
|
108
108
|
|
|
109
109
|
```json
|
|
110
110
|
{
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
111
|
+
"transfer": {
|
|
112
|
+
"name_or_address": "myshop_merchant",
|
|
113
|
+
"amount": 1000000000
|
|
114
114
|
}
|
|
115
115
|
}
|
|
116
116
|
```
|
|
@@ -137,7 +137,7 @@ First, create a Permission object to manage access control for your store operat
|
|
|
137
137
|
},
|
|
138
138
|
"env": {
|
|
139
139
|
"account": "myshop_merchant",
|
|
140
|
-
"network": "
|
|
140
|
+
"network": "mainnet"
|
|
141
141
|
}
|
|
142
142
|
}
|
|
143
143
|
```
|
|
@@ -163,7 +163,7 @@ Create a Machine to define the order processing workflow. This includes nodes fo
|
|
|
163
163
|
},
|
|
164
164
|
"env": {
|
|
165
165
|
"account": "myshop_merchant",
|
|
166
|
-
"network": "
|
|
166
|
+
"network": "mainnet"
|
|
167
167
|
}
|
|
168
168
|
}
|
|
169
169
|
```
|
|
@@ -389,7 +389,7 @@ Add the workflow nodes to the Machine for order processing. The initial pair (pr
|
|
|
389
389
|
},
|
|
390
390
|
"env": {
|
|
391
391
|
"account": "myshop_merchant",
|
|
392
|
-
"network": "
|
|
392
|
+
"network": "mainnet"
|
|
393
393
|
}
|
|
394
394
|
}
|
|
395
395
|
```
|
|
@@ -413,7 +413,7 @@ Publish the Machine to make it available for creating orders.
|
|
|
413
413
|
},
|
|
414
414
|
"env": {
|
|
415
415
|
"account": "myshop_merchant",
|
|
416
|
-
"network": "
|
|
416
|
+
"network": "mainnet"
|
|
417
417
|
}
|
|
418
418
|
}
|
|
419
419
|
```
|
|
@@ -463,7 +463,7 @@ Create a Contact object to enable encrypted communication between customers and
|
|
|
463
463
|
},
|
|
464
464
|
"env": {
|
|
465
465
|
"account": "myshop_merchant",
|
|
466
|
-
"network": "
|
|
466
|
+
"network": "mainnet"
|
|
467
467
|
}
|
|
468
468
|
}
|
|
469
469
|
```
|
|
@@ -529,7 +529,7 @@ Create a Guard that validates the order's Progress has reached the "Completed" n
|
|
|
529
529
|
},
|
|
530
530
|
"env": {
|
|
531
531
|
"account": "myshop_merchant",
|
|
532
|
-
"network": "
|
|
532
|
+
"network": "mainnet"
|
|
533
533
|
}
|
|
534
534
|
}
|
|
535
535
|
```
|
|
@@ -596,7 +596,7 @@ Create a Guard for customer refunds when order is cancelled.
|
|
|
596
596
|
},
|
|
597
597
|
"env": {
|
|
598
598
|
"account": "myshop_merchant",
|
|
599
|
-
"network": "
|
|
599
|
+
"network": "mainnet"
|
|
600
600
|
}
|
|
601
601
|
}
|
|
602
602
|
```
|
|
@@ -677,7 +677,7 @@ The `order_allocators` configuration defines how order payments are distributed:
|
|
|
677
677
|
"sales": [
|
|
678
678
|
{
|
|
679
679
|
"name": "Play Purse Set 35PCS",
|
|
680
|
-
"price":
|
|
680
|
+
"price": 50000000,
|
|
681
681
|
"stock": 100,
|
|
682
682
|
"suspension": false,
|
|
683
683
|
"wip": "https://wowok.net/test/three_body.wip",
|
|
@@ -685,7 +685,7 @@ The `order_allocators` configuration defines how order payments are distributed:
|
|
|
685
685
|
},
|
|
686
686
|
{
|
|
687
687
|
"name": "Little Girls Purse with Accessories",
|
|
688
|
-
"price":
|
|
688
|
+
"price": 50000000,
|
|
689
689
|
"stock": 50,
|
|
690
690
|
"suspension": false,
|
|
691
691
|
"wip": "https://wowok.net/test/three_body.wip",
|
|
@@ -693,7 +693,7 @@ The `order_allocators` configuration defines how order payments are distributed:
|
|
|
693
693
|
},
|
|
694
694
|
{
|
|
695
695
|
"name": "Tree House Building Set",
|
|
696
|
-
"price":
|
|
696
|
+
"price": 30000000,
|
|
697
697
|
"stock": 75,
|
|
698
698
|
"suspension": false,
|
|
699
699
|
"wip": "https://wowok.net/test/three_body.wip",
|
|
@@ -706,7 +706,7 @@ The `order_allocators` configuration defines how order payments are distributed:
|
|
|
706
706
|
},
|
|
707
707
|
"env": {
|
|
708
708
|
"account": "myshop_merchant",
|
|
709
|
-
"network": "
|
|
709
|
+
"network": "mainnet"
|
|
710
710
|
}
|
|
711
711
|
}
|
|
712
712
|
```
|
|
@@ -722,7 +722,7 @@ The `order_allocators` configuration defines how order payments are distributed:
|
|
|
722
722
|
|
|
723
723
|
To offer promotional pricing, update product prices using the `sales` operation with `op: "set"`:
|
|
724
724
|
|
|
725
|
-
**Prompt**: Update the price of "Play Purse Set 35PCS" to
|
|
725
|
+
**Prompt**: Update the price of "Play Purse Set 35PCS" to 0.04 WOW for a promotion.
|
|
726
726
|
|
|
727
727
|
```json
|
|
728
728
|
{
|
|
@@ -734,7 +734,7 @@ To offer promotional pricing, update product prices using the `sales` operation
|
|
|
734
734
|
"sales": [
|
|
735
735
|
{
|
|
736
736
|
"name": "Play Purse Set 35PCS",
|
|
737
|
-
"price":
|
|
737
|
+
"price": 40000000,
|
|
738
738
|
"stock": 100,
|
|
739
739
|
"suspension": false,
|
|
740
740
|
"wip": "https://wowok.net/test/three_body.wip",
|
|
@@ -745,7 +745,7 @@ To offer promotional pricing, update product prices using the `sales` operation
|
|
|
745
745
|
},
|
|
746
746
|
"env": {
|
|
747
747
|
"account": "myshop_merchant",
|
|
748
|
-
"network": "
|
|
748
|
+
"network": "mainnet"
|
|
749
749
|
}
|
|
750
750
|
}
|
|
751
751
|
```
|
|
@@ -771,18 +771,20 @@ Create a customer account:
|
|
|
771
771
|
}
|
|
772
772
|
```
|
|
773
773
|
|
|
774
|
-
**Get
|
|
774
|
+
**Get mainnet tokens:**
|
|
775
|
+
|
|
776
|
+
**Prompt**: Transfer 1 WOW to account "myshop_customer" from a funded account for gas fees.
|
|
775
777
|
|
|
776
778
|
```json
|
|
777
779
|
{
|
|
778
|
-
"
|
|
779
|
-
"
|
|
780
|
-
"
|
|
780
|
+
"transfer": {
|
|
781
|
+
"name_or_address": "myshop_customer",
|
|
782
|
+
"amount": 1000000000
|
|
781
783
|
}
|
|
782
784
|
}
|
|
783
785
|
```
|
|
784
786
|
|
|
785
|
-
> **Note**:
|
|
787
|
+
> **Note**: Ensure sufficient WOW balance for order payments plus gas fees. If needed, transfer additional tokens from a funded account.
|
|
786
788
|
|
|
787
789
|
---
|
|
788
790
|
|
|
@@ -800,13 +802,15 @@ Customers can query the Service to see available products.
|
|
|
800
802
|
}
|
|
801
803
|
```
|
|
802
804
|
|
|
805
|
+
> **AI Note**: Capture the `wip_hash` from the Service query result for each product. When the customer places an order, pass the captured `wip_hash` in `buy.items[].wip_hash`. This is a dispute-prevention mechanism — the on-chain contract compares `item.wip_hash` against the Service's current `sale.wip_hash` to ensure the product hasn't been swapped between browse and purchase time.
|
|
806
|
+
|
|
803
807
|
---
|
|
804
808
|
|
|
805
809
|
### Step 2: Create Order (Customer Purchase)
|
|
806
810
|
|
|
807
811
|
Customer creates an order by purchasing products from the Service.
|
|
808
812
|
|
|
809
|
-
**Prompt**: Create an order for customer "myshop_customer" to purchase "Play Purse Set 35PCS" from "myshop_service_v2" with payment of
|
|
813
|
+
**Prompt**: Create an order for customer "myshop_customer" to purchase "Play Purse Set 35PCS" from "myshop_service_v2" with payment of 0.05 WOW.
|
|
810
814
|
|
|
811
815
|
```json
|
|
812
816
|
{
|
|
@@ -823,23 +827,26 @@ Customer creates an order by purchasing products from the Service.
|
|
|
823
827
|
}
|
|
824
828
|
],
|
|
825
829
|
"total_pay": {
|
|
826
|
-
"balance":
|
|
830
|
+
"balance": 50000000
|
|
827
831
|
}
|
|
828
832
|
},
|
|
829
833
|
"namedNewOrder": {
|
|
830
|
-
"name": "myshop_test_order"
|
|
834
|
+
"name": "myshop_test_order",
|
|
835
|
+
"replaceExistName": true
|
|
831
836
|
},
|
|
832
837
|
"namedNewProgress": {
|
|
833
|
-
"name": "myshop_test_progress"
|
|
838
|
+
"name": "myshop_test_progress",
|
|
839
|
+
"replaceExistName": true
|
|
834
840
|
},
|
|
835
841
|
"namedNewAllocation": {
|
|
836
|
-
"name": "myshop_test_allocation"
|
|
842
|
+
"name": "myshop_test_allocation",
|
|
843
|
+
"replaceExistName": true
|
|
837
844
|
}
|
|
838
845
|
}
|
|
839
846
|
},
|
|
840
847
|
"env": {
|
|
841
848
|
"account": "myshop_customer",
|
|
842
|
-
"network": "
|
|
849
|
+
"network": "mainnet"
|
|
843
850
|
}
|
|
844
851
|
}
|
|
845
852
|
```
|
|
@@ -1003,7 +1010,7 @@ Merchant advances the order from initial state to "Order Confirmation" node.
|
|
|
1003
1010
|
},
|
|
1004
1011
|
"env": {
|
|
1005
1012
|
"account": "myshop_merchant",
|
|
1006
|
-
"network": "
|
|
1013
|
+
"network": "mainnet"
|
|
1007
1014
|
}
|
|
1008
1015
|
}
|
|
1009
1016
|
```
|
|
@@ -1032,7 +1039,7 @@ Merchant ships the order and advances from "Order Confirmation" to "Shipping".
|
|
|
1032
1039
|
},
|
|
1033
1040
|
"env": {
|
|
1034
1041
|
"account": "myshop_merchant",
|
|
1035
|
-
"network": "
|
|
1042
|
+
"network": "mainnet"
|
|
1036
1043
|
}
|
|
1037
1044
|
}
|
|
1038
1045
|
```
|
|
@@ -1061,7 +1068,7 @@ Merchant or delivery service confirms the order has been delivered.
|
|
|
1061
1068
|
},
|
|
1062
1069
|
"env": {
|
|
1063
1070
|
"account": "myshop_merchant",
|
|
1064
|
-
"network": "
|
|
1071
|
+
"network": "mainnet"
|
|
1065
1072
|
}
|
|
1066
1073
|
}
|
|
1067
1074
|
```
|
|
@@ -1090,7 +1097,7 @@ Customer confirms receipt and completes the order.
|
|
|
1090
1097
|
},
|
|
1091
1098
|
"env": {
|
|
1092
1099
|
"account": "myshop_customer",
|
|
1093
|
-
"network": "
|
|
1100
|
+
"network": "mainnet"
|
|
1094
1101
|
}
|
|
1095
1102
|
}
|
|
1096
1103
|
```
|
|
@@ -1143,7 +1150,7 @@ First, activate the Allocation by submitting the Guard verification with the Ord
|
|
|
1143
1150
|
},
|
|
1144
1151
|
"env": {
|
|
1145
1152
|
"account": "myshop_merchant",
|
|
1146
|
-
"network": "
|
|
1153
|
+
"network": "mainnet",
|
|
1147
1154
|
"no_cache": true
|
|
1148
1155
|
}
|
|
1149
1156
|
}
|
|
@@ -1166,7 +1173,7 @@ After the Allocation is activated, withdraw the funds from the Service.
|
|
|
1166
1173
|
},
|
|
1167
1174
|
"env": {
|
|
1168
1175
|
"account": "myshop_merchant",
|
|
1169
|
-
"network": "
|
|
1176
|
+
"network": "mainnet"
|
|
1170
1177
|
}
|
|
1171
1178
|
}
|
|
1172
1179
|
```
|
|
@@ -1197,7 +1204,7 @@ Customer can cancel the order after the merchant confirms it. The "Cancel Order"
|
|
|
1197
1204
|
},
|
|
1198
1205
|
"env": {
|
|
1199
1206
|
"account": "myshop_merchant",
|
|
1200
|
-
"network": "
|
|
1207
|
+
"network": "mainnet"
|
|
1201
1208
|
}
|
|
1202
1209
|
}
|
|
1203
1210
|
```
|
|
@@ -1222,7 +1229,7 @@ Customer can cancel the order after the merchant confirms it. The "Cancel Order"
|
|
|
1222
1229
|
},
|
|
1223
1230
|
"env": {
|
|
1224
1231
|
"account": "myshop_customer",
|
|
1225
|
-
"network": "
|
|
1232
|
+
"network": "mainnet"
|
|
1226
1233
|
}
|
|
1227
1234
|
}
|
|
1228
1235
|
```
|
|
@@ -1265,7 +1272,7 @@ After the order is cancelled, the customer can activate the refund allocation us
|
|
|
1265
1272
|
},
|
|
1266
1273
|
"env": {
|
|
1267
1274
|
"account": "myshop_customer",
|
|
1268
|
-
"network": "
|
|
1275
|
+
"network": "mainnet",
|
|
1269
1276
|
"no_cache": true
|
|
1270
1277
|
}
|
|
1271
1278
|
}
|
|
@@ -1290,18 +1297,18 @@ This flow handles order disputes through a formal arbitration process. The arbit
|
|
|
1290
1297
|
|
|
1291
1298
|
The Service must have a compensation fund balance ≥ the arbitration indemnity amount. The merchant pre-funds this before any disputes.
|
|
1292
1299
|
|
|
1293
|
-
**Prompt**: Merchant adds
|
|
1300
|
+
**Prompt**: Merchant adds 0.05 WOW to the Service compensation fund.
|
|
1294
1301
|
|
|
1295
1302
|
```json
|
|
1296
1303
|
{
|
|
1297
1304
|
"operation_type": "service",
|
|
1298
1305
|
"data": {
|
|
1299
1306
|
"object": "myshop_service_v2",
|
|
1300
|
-
"compensation_fund_add": {"balance":
|
|
1307
|
+
"compensation_fund_add": {"balance": 50000000}
|
|
1301
1308
|
},
|
|
1302
1309
|
"env": {
|
|
1303
1310
|
"account": "myshop_merchant",
|
|
1304
|
-
"network": "
|
|
1311
|
+
"network": "mainnet"
|
|
1305
1312
|
}
|
|
1306
1313
|
}
|
|
1307
1314
|
```
|
|
@@ -1325,11 +1332,11 @@ Create an Arbitration object for handling order disputes.
|
|
|
1325
1332
|
},
|
|
1326
1333
|
"description": "Arbitration system for MyShop toy store disputes",
|
|
1327
1334
|
"location": "Online arbitration system",
|
|
1328
|
-
"fee":
|
|
1335
|
+
"fee": 5000000
|
|
1329
1336
|
},
|
|
1330
1337
|
"env": {
|
|
1331
1338
|
"account": "myshop_merchant",
|
|
1332
|
-
"network": "
|
|
1339
|
+
"network": "mainnet"
|
|
1333
1340
|
}
|
|
1334
1341
|
}
|
|
1335
1342
|
```
|
|
@@ -1351,7 +1358,7 @@ The merchant unpauses the Arbitration object to enable dispute submissions.
|
|
|
1351
1358
|
},
|
|
1352
1359
|
"env": {
|
|
1353
1360
|
"account": "myshop_merchant",
|
|
1354
|
-
"network": "
|
|
1361
|
+
"network": "mainnet"
|
|
1355
1362
|
}
|
|
1356
1363
|
}
|
|
1357
1364
|
```
|
|
@@ -1375,7 +1382,7 @@ Create a new order for testing the arbitration flow (if you don't have one alrea
|
|
|
1375
1382
|
"stock": 1
|
|
1376
1383
|
}
|
|
1377
1384
|
],
|
|
1378
|
-
"total_pay": {"balance":
|
|
1385
|
+
"total_pay": {"balance": 30000000}
|
|
1379
1386
|
},
|
|
1380
1387
|
"namedNewOrder": {"name": "myshop_arb_order", "replaceExistName": true},
|
|
1381
1388
|
"namedNewProgress": {"name": "myshop_arb_progress", "replaceExistName": true},
|
|
@@ -1384,7 +1391,7 @@ Create a new order for testing the arbitration flow (if you don't have one alrea
|
|
|
1384
1391
|
},
|
|
1385
1392
|
"env": {
|
|
1386
1393
|
"account": "myshop_customer",
|
|
1387
|
-
"network": "
|
|
1394
|
+
"network": "mainnet"
|
|
1388
1395
|
}
|
|
1389
1396
|
}
|
|
1390
1397
|
```
|
|
@@ -1406,18 +1413,18 @@ The customer submits a dispute against the order, creating an Arb object.
|
|
|
1406
1413
|
"order": "myshop_arb_order",
|
|
1407
1414
|
"description": "Product quality issue - the tree house set arrived damaged",
|
|
1408
1415
|
"proposition": ["Full refund to customer", "Partial refund 50%", "Replace with new product"],
|
|
1409
|
-
"fee": {"balance":
|
|
1416
|
+
"fee": {"balance": 5000000},
|
|
1410
1417
|
"namedArb": {"name": "myshop_arb_case", "replaceExistName": true}
|
|
1411
1418
|
}
|
|
1412
1419
|
},
|
|
1413
1420
|
"env": {
|
|
1414
1421
|
"account": "myshop_customer",
|
|
1415
|
-
"network": "
|
|
1422
|
+
"network": "mainnet"
|
|
1416
1423
|
}
|
|
1417
1424
|
}
|
|
1418
1425
|
```
|
|
1419
1426
|
|
|
1420
|
-
> **Note**: The dispute fee (
|
|
1427
|
+
> **Note**: The dispute fee (5000000 = 0.005 WOW) must be ≥ the Arbitration object's fee setting. The Arb object is created with status=1 (Arbitrator_confirming).
|
|
1421
1428
|
|
|
1422
1429
|
### Step 6: Merchant Confirms Materials
|
|
1423
1430
|
|
|
@@ -1437,7 +1444,7 @@ The merchant confirms the dispute materials are valid and sets the voting deadli
|
|
|
1437
1444
|
},
|
|
1438
1445
|
"env": {
|
|
1439
1446
|
"account": "myshop_merchant",
|
|
1440
|
-
"network": "
|
|
1447
|
+
"network": "mainnet"
|
|
1441
1448
|
}
|
|
1442
1449
|
}
|
|
1443
1450
|
```
|
|
@@ -1448,7 +1455,7 @@ The merchant confirms the dispute materials are valid and sets the voting deadli
|
|
|
1448
1455
|
|
|
1449
1456
|
The merchant provides the final arbitration result with feedback and indemnity amount.
|
|
1450
1457
|
|
|
1451
|
-
**Prompt**: Merchant "myshop_merchant" provides arbitration result for Arb "myshop_arb_case" with
|
|
1458
|
+
**Prompt**: Merchant "myshop_merchant" provides arbitration result for Arb "myshop_arb_case" with 0.03 WOW indemnity.
|
|
1452
1459
|
|
|
1453
1460
|
```json
|
|
1454
1461
|
{
|
|
@@ -1458,12 +1465,12 @@ The merchant provides the final arbitration result with feedback and indemnity a
|
|
|
1458
1465
|
"arbitration": {
|
|
1459
1466
|
"arb": "myshop_arb_case",
|
|
1460
1467
|
"feedback": "After investigation, the product quality issue is confirmed. Full refund to customer and return shipping cost covered by merchant.",
|
|
1461
|
-
"indemnity":
|
|
1468
|
+
"indemnity": 30000000
|
|
1462
1469
|
}
|
|
1463
1470
|
},
|
|
1464
1471
|
"env": {
|
|
1465
1472
|
"account": "myshop_merchant",
|
|
1466
|
-
"network": "
|
|
1473
|
+
"network": "mainnet"
|
|
1467
1474
|
}
|
|
1468
1475
|
}
|
|
1469
1476
|
```
|
|
@@ -1487,12 +1494,12 @@ The customer claims the compensation from the Service's compensation fund.
|
|
|
1487
1494
|
},
|
|
1488
1495
|
"env": {
|
|
1489
1496
|
"account": "myshop_customer",
|
|
1490
|
-
"network": "
|
|
1497
|
+
"network": "mainnet"
|
|
1491
1498
|
}
|
|
1492
1499
|
}
|
|
1493
1500
|
```
|
|
1494
1501
|
|
|
1495
|
-
> **Note**: The customer receives the indemnity amount (
|
|
1502
|
+
> **Note**: The customer receives the indemnity amount (0.03 WOW) from the Service's compensation fund. The Arb status changes to 5 (Finished). The Order's `claimed_by` field is updated with the Arb address.
|
|
1496
1503
|
|
|
1497
1504
|
### Step 9: Query Arbitration Status
|
|
1498
1505
|
|
|
@@ -1505,7 +1512,7 @@ Check the final status of the arbitration.
|
|
|
1505
1512
|
"query_type": "onchain_objects",
|
|
1506
1513
|
"objects": ["myshop_arb_case"],
|
|
1507
1514
|
"no_cache": true,
|
|
1508
|
-
"network": "
|
|
1515
|
+
"network": "mainnet"
|
|
1509
1516
|
}
|
|
1510
1517
|
```
|
|
1511
1518
|
|
|
@@ -1566,7 +1573,7 @@ When advancing order workflows, use `operation_type: "progress"` with the `opera
|
|
|
1566
1573
|
},
|
|
1567
1574
|
"env": {
|
|
1568
1575
|
"account": "operator_account",
|
|
1569
|
-
"network": "
|
|
1576
|
+
"network": "mainnet"
|
|
1570
1577
|
}
|
|
1571
1578
|
}
|
|
1572
1579
|
```
|
|
@@ -1617,5 +1624,5 @@ The operator account depends on the forward definition:
|
|
|
1617
1624
|
|
|
1618
1625
|
- All addresses shown in examples are truncated for readability (format: 0xabcd...efgh)
|
|
1619
1626
|
- Use the full 64-character address in actual operations
|
|
1620
|
-
-
|
|
1627
|
+
- Deploy and run on mainnet
|
|
1621
1628
|
- Ensure sufficient WOW tokens for transaction fees
|
package/package.json
CHANGED