@liquid-af/sdk 0.5.9 → 0.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.
@@ -1051,6 +1051,988 @@ export type LiquidSwap = {
1051
1051
  }
1052
1052
  ]
1053
1053
  },
1054
+ {
1055
+ "name": "buyExact",
1056
+ "docs": [
1057
+ "Buys base tokens by providing an exact amount of quote tokens (exact input).",
1058
+ "",
1059
+ "# Arguments",
1060
+ "* `amount_in` - Exact quote tokens to spend.",
1061
+ "* `minimum_amount_out` - Minimum base tokens to receive (slippage protection)."
1062
+ ],
1063
+ "discriminator": [
1064
+ 2,
1065
+ 162,
1066
+ 8,
1067
+ 52,
1068
+ 139,
1069
+ 46,
1070
+ 160,
1071
+ 13
1072
+ ],
1073
+ "accounts": [
1074
+ {
1075
+ "name": "payer",
1076
+ "writable": true,
1077
+ "signer": true
1078
+ },
1079
+ {
1080
+ "name": "pool",
1081
+ "docs": [
1082
+ "The program account of the pool in which the swap will be performed."
1083
+ ],
1084
+ "writable": true,
1085
+ "pda": {
1086
+ "seeds": [
1087
+ {
1088
+ "kind": "const",
1089
+ "value": [
1090
+ 112,
1091
+ 111,
1092
+ 111,
1093
+ 108
1094
+ ]
1095
+ },
1096
+ {
1097
+ "kind": "account",
1098
+ "path": "baseMint"
1099
+ },
1100
+ {
1101
+ "kind": "account",
1102
+ "path": "quoteMint"
1103
+ }
1104
+ ]
1105
+ }
1106
+ },
1107
+ {
1108
+ "name": "baseTokenAccount",
1109
+ "docs": [
1110
+ "The user token account for input token."
1111
+ ],
1112
+ "writable": true
1113
+ },
1114
+ {
1115
+ "name": "quoteTokenAccount",
1116
+ "docs": [
1117
+ "The user token account for output token."
1118
+ ],
1119
+ "writable": true
1120
+ },
1121
+ {
1122
+ "name": "baseVault",
1123
+ "docs": [
1124
+ "The vault token account for input token."
1125
+ ],
1126
+ "writable": true,
1127
+ "pda": {
1128
+ "seeds": [
1129
+ {
1130
+ "kind": "const",
1131
+ "value": [
1132
+ 112,
1133
+ 111,
1134
+ 111,
1135
+ 108,
1136
+ 95,
1137
+ 118,
1138
+ 97,
1139
+ 117,
1140
+ 108,
1141
+ 116
1142
+ ]
1143
+ },
1144
+ {
1145
+ "kind": "account",
1146
+ "path": "pool"
1147
+ },
1148
+ {
1149
+ "kind": "account",
1150
+ "path": "baseMint"
1151
+ }
1152
+ ]
1153
+ }
1154
+ },
1155
+ {
1156
+ "name": "quoteVault",
1157
+ "docs": [
1158
+ "The vault token account for output token."
1159
+ ],
1160
+ "writable": true,
1161
+ "pda": {
1162
+ "seeds": [
1163
+ {
1164
+ "kind": "const",
1165
+ "value": [
1166
+ 112,
1167
+ 111,
1168
+ 111,
1169
+ 108,
1170
+ 95,
1171
+ 118,
1172
+ 97,
1173
+ 117,
1174
+ 108,
1175
+ 116
1176
+ ]
1177
+ },
1178
+ {
1179
+ "kind": "account",
1180
+ "path": "pool"
1181
+ },
1182
+ {
1183
+ "kind": "account",
1184
+ "path": "quoteMint"
1185
+ }
1186
+ ]
1187
+ }
1188
+ },
1189
+ {
1190
+ "name": "observationState",
1191
+ "docs": [
1192
+ "The program account for the most recent oracle observation."
1193
+ ],
1194
+ "writable": true,
1195
+ "pda": {
1196
+ "seeds": [
1197
+ {
1198
+ "kind": "const",
1199
+ "value": [
1200
+ 111,
1201
+ 98,
1202
+ 115,
1203
+ 101,
1204
+ 114,
1205
+ 118,
1206
+ 97,
1207
+ 116,
1208
+ 105,
1209
+ 111,
1210
+ 110
1211
+ ]
1212
+ },
1213
+ {
1214
+ "kind": "account",
1215
+ "path": "pool"
1216
+ }
1217
+ ]
1218
+ }
1219
+ },
1220
+ {
1221
+ "name": "feeRecipient",
1222
+ "docs": [
1223
+ "The protocol fee recipient. Must be one of the allowed recipients in Config.",
1224
+ "",
1225
+ "NOTE: Validation happens in handler by checking against global_config.fee_recipients.",
1226
+ "Fee recipients are admin-controlled pubkeys stored in AmmConfig, so an attacker",
1227
+ "cannot pass an arbitrary account - it must match one of the configured recipients."
1228
+ ],
1229
+ "writable": true
1230
+ },
1231
+ {
1232
+ "name": "protocolFeeVault",
1233
+ "docs": [
1234
+ "The protocol fee vault."
1235
+ ],
1236
+ "writable": true,
1237
+ "pda": {
1238
+ "seeds": [
1239
+ {
1240
+ "kind": "const",
1241
+ "value": [
1242
+ 103,
1243
+ 108,
1244
+ 111,
1245
+ 98,
1246
+ 97,
1247
+ 108,
1248
+ 95,
1249
+ 102,
1250
+ 101,
1251
+ 101
1252
+ ]
1253
+ },
1254
+ {
1255
+ "kind": "account",
1256
+ "path": "feeRecipient"
1257
+ },
1258
+ {
1259
+ "kind": "account",
1260
+ "path": "quoteMint"
1261
+ }
1262
+ ]
1263
+ }
1264
+ },
1265
+ {
1266
+ "name": "feeVault",
1267
+ "docs": [
1268
+ "Fee vault PDA from liquid-fees (authority for fee_vault_token_account)."
1269
+ ],
1270
+ "pda": {
1271
+ "seeds": [
1272
+ {
1273
+ "kind": "const",
1274
+ "value": [
1275
+ 102,
1276
+ 101,
1277
+ 101,
1278
+ 95,
1279
+ 118,
1280
+ 97,
1281
+ 117,
1282
+ 108,
1283
+ 116
1284
+ ]
1285
+ },
1286
+ {
1287
+ "kind": "account",
1288
+ "path": "feeConfig"
1289
+ }
1290
+ ],
1291
+ "program": {
1292
+ "kind": "const",
1293
+ "value": [
1294
+ 217,
1295
+ 168,
1296
+ 237,
1297
+ 183,
1298
+ 0,
1299
+ 44,
1300
+ 187,
1301
+ 171,
1302
+ 53,
1303
+ 87,
1304
+ 202,
1305
+ 162,
1306
+ 64,
1307
+ 131,
1308
+ 189,
1309
+ 106,
1310
+ 187,
1311
+ 249,
1312
+ 130,
1313
+ 171,
1314
+ 56,
1315
+ 202,
1316
+ 127,
1317
+ 190,
1318
+ 143,
1319
+ 121,
1320
+ 30,
1321
+ 195,
1322
+ 25,
1323
+ 86,
1324
+ 241,
1325
+ 242
1326
+ ]
1327
+ }
1328
+ }
1329
+ },
1330
+ {
1331
+ "name": "feeVaultTokenAccount",
1332
+ "docs": [
1333
+ "Fee vault token account for Recipients mode — accumulates quote tokens."
1334
+ ],
1335
+ "writable": true,
1336
+ "pda": {
1337
+ "seeds": [
1338
+ {
1339
+ "kind": "account",
1340
+ "path": "feeVault"
1341
+ },
1342
+ {
1343
+ "kind": "account",
1344
+ "path": "quoteTokenProgram"
1345
+ },
1346
+ {
1347
+ "kind": "account",
1348
+ "path": "quoteMint"
1349
+ }
1350
+ ],
1351
+ "program": {
1352
+ "kind": "const",
1353
+ "value": [
1354
+ 140,
1355
+ 151,
1356
+ 37,
1357
+ 143,
1358
+ 78,
1359
+ 36,
1360
+ 137,
1361
+ 241,
1362
+ 187,
1363
+ 61,
1364
+ 16,
1365
+ 41,
1366
+ 20,
1367
+ 142,
1368
+ 13,
1369
+ 131,
1370
+ 11,
1371
+ 90,
1372
+ 19,
1373
+ 153,
1374
+ 218,
1375
+ 255,
1376
+ 16,
1377
+ 132,
1378
+ 4,
1379
+ 142,
1380
+ 123,
1381
+ 216,
1382
+ 219,
1383
+ 233,
1384
+ 248,
1385
+ 89
1386
+ ]
1387
+ }
1388
+ }
1389
+ },
1390
+ {
1391
+ "name": "buybackVault",
1392
+ "docs": [
1393
+ "Buyback vault (for Revoked mode) — accumulates quote tokens for buy-and-burn.",
1394
+ "Initialized during pool creation."
1395
+ ],
1396
+ "writable": true,
1397
+ "pda": {
1398
+ "seeds": [
1399
+ {
1400
+ "kind": "const",
1401
+ "value": [
1402
+ 98,
1403
+ 117,
1404
+ 121,
1405
+ 98,
1406
+ 97,
1407
+ 99,
1408
+ 107,
1409
+ 95,
1410
+ 118,
1411
+ 97,
1412
+ 117,
1413
+ 108,
1414
+ 116
1415
+ ]
1416
+ },
1417
+ {
1418
+ "kind": "account",
1419
+ "path": "pool"
1420
+ },
1421
+ {
1422
+ "kind": "account",
1423
+ "path": "quoteMint"
1424
+ }
1425
+ ]
1426
+ }
1427
+ },
1428
+ {
1429
+ "name": "authority",
1430
+ "docs": [
1431
+ "Pool vault and LP mint authority."
1432
+ ],
1433
+ "pda": {
1434
+ "seeds": [
1435
+ {
1436
+ "kind": "const",
1437
+ "value": [
1438
+ 118,
1439
+ 97,
1440
+ 117,
1441
+ 108,
1442
+ 116,
1443
+ 95,
1444
+ 97,
1445
+ 110,
1446
+ 100,
1447
+ 95,
1448
+ 108,
1449
+ 112,
1450
+ 95,
1451
+ 109,
1452
+ 105,
1453
+ 110,
1454
+ 116,
1455
+ 95,
1456
+ 97,
1457
+ 117,
1458
+ 116,
1459
+ 104,
1460
+ 95,
1461
+ 115,
1462
+ 101,
1463
+ 101,
1464
+ 100
1465
+ ]
1466
+ }
1467
+ ]
1468
+ }
1469
+ },
1470
+ {
1471
+ "name": "globalConfig",
1472
+ "docs": [
1473
+ "Global configuration for the protocol."
1474
+ ],
1475
+ "pda": {
1476
+ "seeds": [
1477
+ {
1478
+ "kind": "const",
1479
+ "value": [
1480
+ 103,
1481
+ 108,
1482
+ 111,
1483
+ 98,
1484
+ 97,
1485
+ 108,
1486
+ 95,
1487
+ 99,
1488
+ 111,
1489
+ 110,
1490
+ 102,
1491
+ 105,
1492
+ 103
1493
+ ]
1494
+ }
1495
+ ]
1496
+ }
1497
+ },
1498
+ {
1499
+ "name": "creator",
1500
+ "docs": [
1501
+ "Pool creator (needed for fee vault derivation).",
1502
+ "",
1503
+ "NOTE: Validation relies on `has_one = creator` constraint on pool state.",
1504
+ "The creator is whoever signed the original pool creation transaction,",
1505
+ "stored immutably in PoolState. No separate ownership check is needed",
1506
+ "as the pool state is the source of truth for creator identity."
1507
+ ],
1508
+ "relations": [
1509
+ "pool"
1510
+ ]
1511
+ },
1512
+ {
1513
+ "name": "baseMint",
1514
+ "docs": [
1515
+ "The mint of input token."
1516
+ ]
1517
+ },
1518
+ {
1519
+ "name": "quoteMint",
1520
+ "docs": [
1521
+ "The mint of output token."
1522
+ ]
1523
+ },
1524
+ {
1525
+ "name": "feeConfig",
1526
+ "docs": [
1527
+ "The fee configuration for this token (from liquid-fees program).",
1528
+ "base_mint is typically the token that was launched on the bonding curve."
1529
+ ],
1530
+ "pda": {
1531
+ "seeds": [
1532
+ {
1533
+ "kind": "const",
1534
+ "value": [
1535
+ 102,
1536
+ 101,
1537
+ 101,
1538
+ 95,
1539
+ 99,
1540
+ 111,
1541
+ 110,
1542
+ 102,
1543
+ 105,
1544
+ 103
1545
+ ]
1546
+ },
1547
+ {
1548
+ "kind": "account",
1549
+ "path": "baseMint"
1550
+ }
1551
+ ],
1552
+ "program": {
1553
+ "kind": "const",
1554
+ "value": [
1555
+ 217,
1556
+ 168,
1557
+ 237,
1558
+ 183,
1559
+ 0,
1560
+ 44,
1561
+ 187,
1562
+ 171,
1563
+ 53,
1564
+ 87,
1565
+ 202,
1566
+ 162,
1567
+ 64,
1568
+ 131,
1569
+ 189,
1570
+ 106,
1571
+ 187,
1572
+ 249,
1573
+ 130,
1574
+ 171,
1575
+ 56,
1576
+ 202,
1577
+ 127,
1578
+ 190,
1579
+ 143,
1580
+ 121,
1581
+ 30,
1582
+ 195,
1583
+ 25,
1584
+ 86,
1585
+ 241,
1586
+ 242
1587
+ ]
1588
+ }
1589
+ }
1590
+ },
1591
+ {
1592
+ "name": "liquidState",
1593
+ "accounts": [
1594
+ {
1595
+ "name": "userProperties",
1596
+ "docs": [
1597
+ "User properties from liquid-state."
1598
+ ],
1599
+ "writable": true,
1600
+ "pda": {
1601
+ "seeds": [
1602
+ {
1603
+ "kind": "const",
1604
+ "value": [
1605
+ 117,
1606
+ 115,
1607
+ 101,
1608
+ 114,
1609
+ 95,
1610
+ 112,
1611
+ 114,
1612
+ 111,
1613
+ 112,
1614
+ 101,
1615
+ 114,
1616
+ 116,
1617
+ 105,
1618
+ 101,
1619
+ 115
1620
+ ]
1621
+ },
1622
+ {
1623
+ "kind": "account",
1624
+ "path": "user"
1625
+ }
1626
+ ],
1627
+ "program": {
1628
+ "kind": "const",
1629
+ "value": [
1630
+ 6,
1631
+ 161,
1632
+ 216,
1633
+ 199,
1634
+ 206,
1635
+ 40,
1636
+ 40,
1637
+ 163,
1638
+ 177,
1639
+ 19,
1640
+ 1,
1641
+ 21,
1642
+ 164,
1643
+ 67,
1644
+ 81,
1645
+ 132,
1646
+ 164,
1647
+ 22,
1648
+ 81,
1649
+ 177,
1650
+ 201,
1651
+ 45,
1652
+ 170,
1653
+ 138,
1654
+ 70,
1655
+ 214,
1656
+ 218,
1657
+ 76,
1658
+ 85,
1659
+ 222,
1660
+ 216,
1661
+ 214
1662
+ ]
1663
+ }
1664
+ }
1665
+ },
1666
+ {
1667
+ "name": "globalAmmVolume",
1668
+ "docs": [
1669
+ "Global AMM volume accumulator from liquid-state."
1670
+ ],
1671
+ "writable": true,
1672
+ "pda": {
1673
+ "seeds": [
1674
+ {
1675
+ "kind": "const",
1676
+ "value": [
1677
+ 103,
1678
+ 108,
1679
+ 111,
1680
+ 98,
1681
+ 97,
1682
+ 108,
1683
+ 95,
1684
+ 97,
1685
+ 109,
1686
+ 109,
1687
+ 95,
1688
+ 118,
1689
+ 111,
1690
+ 108,
1691
+ 117,
1692
+ 109,
1693
+ 101
1694
+ ]
1695
+ }
1696
+ ],
1697
+ "program": {
1698
+ "kind": "const",
1699
+ "value": [
1700
+ 6,
1701
+ 161,
1702
+ 216,
1703
+ 199,
1704
+ 206,
1705
+ 40,
1706
+ 40,
1707
+ 163,
1708
+ 177,
1709
+ 19,
1710
+ 1,
1711
+ 21,
1712
+ 164,
1713
+ 67,
1714
+ 81,
1715
+ 132,
1716
+ 164,
1717
+ 22,
1718
+ 81,
1719
+ 177,
1720
+ 201,
1721
+ 45,
1722
+ 170,
1723
+ 138,
1724
+ 70,
1725
+ 214,
1726
+ 218,
1727
+ 76,
1728
+ 85,
1729
+ 222,
1730
+ 216,
1731
+ 214
1732
+ ]
1733
+ }
1734
+ }
1735
+ },
1736
+ {
1737
+ "name": "tokenVolume",
1738
+ "docs": [
1739
+ "Token volume accumulator from liquid-state (for base_mint)."
1740
+ ],
1741
+ "writable": true,
1742
+ "pda": {
1743
+ "seeds": [
1744
+ {
1745
+ "kind": "const",
1746
+ "value": [
1747
+ 116,
1748
+ 111,
1749
+ 107,
1750
+ 101,
1751
+ 110,
1752
+ 95,
1753
+ 118,
1754
+ 111,
1755
+ 108,
1756
+ 117,
1757
+ 109,
1758
+ 101
1759
+ ]
1760
+ },
1761
+ {
1762
+ "kind": "account",
1763
+ "path": "tokenMint"
1764
+ }
1765
+ ],
1766
+ "program": {
1767
+ "kind": "const",
1768
+ "value": [
1769
+ 6,
1770
+ 161,
1771
+ 216,
1772
+ 199,
1773
+ 206,
1774
+ 40,
1775
+ 40,
1776
+ 163,
1777
+ 177,
1778
+ 19,
1779
+ 1,
1780
+ 21,
1781
+ 164,
1782
+ 67,
1783
+ 81,
1784
+ 132,
1785
+ 164,
1786
+ 22,
1787
+ 81,
1788
+ 177,
1789
+ 201,
1790
+ 45,
1791
+ 170,
1792
+ 138,
1793
+ 70,
1794
+ 214,
1795
+ 218,
1796
+ 76,
1797
+ 85,
1798
+ 222,
1799
+ 216,
1800
+ 214
1801
+ ]
1802
+ }
1803
+ }
1804
+ },
1805
+ {
1806
+ "name": "user",
1807
+ "docs": [
1808
+ "The user performing the trade."
1809
+ ]
1810
+ },
1811
+ {
1812
+ "name": "tokenMint",
1813
+ "docs": [
1814
+ "The token mint, used for token_volume PDA derivation."
1815
+ ]
1816
+ },
1817
+ {
1818
+ "name": "cashbackConfig",
1819
+ "docs": [
1820
+ "Cashback configuration from liquid-state."
1821
+ ],
1822
+ "pda": {
1823
+ "seeds": [
1824
+ {
1825
+ "kind": "const",
1826
+ "value": [
1827
+ 99,
1828
+ 97,
1829
+ 115,
1830
+ 104,
1831
+ 98,
1832
+ 97,
1833
+ 99,
1834
+ 107,
1835
+ 95,
1836
+ 99,
1837
+ 111,
1838
+ 110,
1839
+ 102,
1840
+ 105,
1841
+ 103
1842
+ ]
1843
+ }
1844
+ ],
1845
+ "program": {
1846
+ "kind": "const",
1847
+ "value": [
1848
+ 6,
1849
+ 161,
1850
+ 216,
1851
+ 199,
1852
+ 206,
1853
+ 40,
1854
+ 40,
1855
+ 163,
1856
+ 177,
1857
+ 19,
1858
+ 1,
1859
+ 21,
1860
+ 164,
1861
+ 67,
1862
+ 81,
1863
+ 132,
1864
+ 164,
1865
+ 22,
1866
+ 81,
1867
+ 177,
1868
+ 201,
1869
+ 45,
1870
+ 170,
1871
+ 138,
1872
+ 70,
1873
+ 214,
1874
+ 218,
1875
+ 76,
1876
+ 85,
1877
+ 222,
1878
+ 216,
1879
+ 214
1880
+ ]
1881
+ }
1882
+ }
1883
+ },
1884
+ {
1885
+ "name": "liquidStateProgram",
1886
+ "docs": [
1887
+ "liquid-state program for unified state management."
1888
+ ],
1889
+ "address": "State3HtEfi7cXdsTpAtRoBvrij8zSFCiGTAVWmYH2d"
1890
+ },
1891
+ {
1892
+ "name": "stateEventsCpiAuthority",
1893
+ "docs": [
1894
+ "CPI authority PDA owned by liquid-state for emitting events via liquid-events."
1895
+ ],
1896
+ "pda": {
1897
+ "seeds": [
1898
+ {
1899
+ "kind": "const",
1900
+ "value": [
1901
+ 99,
1902
+ 112,
1903
+ 105,
1904
+ 95,
1905
+ 97,
1906
+ 117,
1907
+ 116,
1908
+ 104,
1909
+ 111,
1910
+ 114,
1911
+ 105,
1912
+ 116,
1913
+ 121
1914
+ ]
1915
+ }
1916
+ ],
1917
+ "program": {
1918
+ "kind": "const",
1919
+ "value": [
1920
+ 6,
1921
+ 161,
1922
+ 216,
1923
+ 199,
1924
+ 206,
1925
+ 40,
1926
+ 40,
1927
+ 163,
1928
+ 177,
1929
+ 19,
1930
+ 1,
1931
+ 21,
1932
+ 164,
1933
+ 67,
1934
+ 81,
1935
+ 132,
1936
+ 164,
1937
+ 22,
1938
+ 81,
1939
+ 177,
1940
+ 201,
1941
+ 45,
1942
+ 170,
1943
+ 138,
1944
+ 70,
1945
+ 214,
1946
+ 218,
1947
+ 76,
1948
+ 85,
1949
+ 222,
1950
+ 216,
1951
+ 214
1952
+ ]
1953
+ }
1954
+ }
1955
+ }
1956
+ ]
1957
+ },
1958
+ {
1959
+ "name": "baseTokenProgram",
1960
+ "docs": [
1961
+ "SPL program for input token transfers."
1962
+ ]
1963
+ },
1964
+ {
1965
+ "name": "quoteTokenProgram",
1966
+ "docs": [
1967
+ "SPL program for output token transfers."
1968
+ ]
1969
+ },
1970
+ {
1971
+ "name": "systemProgram",
1972
+ "address": "11111111111111111111111111111111"
1973
+ },
1974
+ {
1975
+ "name": "tokenProgram",
1976
+ "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"
1977
+ },
1978
+ {
1979
+ "name": "associatedTokenProgram",
1980
+ "address": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL"
1981
+ },
1982
+ {
1983
+ "name": "cpiAuthority",
1984
+ "docs": [
1985
+ "CPI authority PDA — proves this program's identity in cross-program calls."
1986
+ ],
1987
+ "pda": {
1988
+ "seeds": [
1989
+ {
1990
+ "kind": "const",
1991
+ "value": [
1992
+ 99,
1993
+ 112,
1994
+ 105,
1995
+ 95,
1996
+ 97,
1997
+ 117,
1998
+ 116,
1999
+ 104,
2000
+ 111,
2001
+ 114,
2002
+ 105,
2003
+ 116,
2004
+ 121
2005
+ ]
2006
+ }
2007
+ ]
2008
+ }
2009
+ },
2010
+ {
2011
+ "name": "liquidEventsProgram",
2012
+ "docs": [
2013
+ "Liquid events program for CPI event emission."
2014
+ ],
2015
+ "address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
2016
+ },
2017
+ {
2018
+ "name": "oraclePriceFeed",
2019
+ "docs": [
2020
+ "Pyth SOL/USD price feed (required for tiered fees)."
2021
+ ],
2022
+ "optional": true
2023
+ }
2024
+ ],
2025
+ "args": [
2026
+ {
2027
+ "name": "amountIn",
2028
+ "type": "u64"
2029
+ },
2030
+ {
2031
+ "name": "minimumAmountOut",
2032
+ "type": "u64"
2033
+ }
2034
+ ]
2035
+ },
1054
2036
  {
1055
2037
  "name": "cancelAdminTransfer",
1056
2038
  "docs": [