@aztec/node-keystore 2.1.9 → 2.1.11

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/dest/schemas.d.ts CHANGED
@@ -3,7 +3,7 @@ import { z } from 'zod';
3
3
  import type { BLSPrivateKey, EthPrivateKey } from './types.js';
4
4
  export declare const ethPrivateKeySchema: z.ZodEffects<z.ZodString, EthPrivateKey, string>;
5
5
  export declare const blsPrivateKeySchema: z.ZodEffects<z.ZodString, BLSPrivateKey, string>;
6
- export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
6
+ export declare const keystoreSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
7
7
  schemaVersion: z.ZodLiteral<1>;
8
8
  validators: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodArray<z.ZodObject<{
9
9
  attester: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
@@ -1400,5 +1400,1951 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
1400
1400
  password?: string | undefined;
1401
1401
  })[];
1402
1402
  } | undefined;
1403
- }>;
1403
+ }>, z.ZodEffects<z.ZodEffects<z.ZodObject<{
1404
+ schemaVersion: z.ZodLiteral<2>;
1405
+ validators: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodArray<z.ZodObject<{
1406
+ attester: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
1407
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
1408
+ remoteSignerUrl: z.ZodString;
1409
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1410
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1411
+ }, "strict", z.ZodTypeAny, {
1412
+ remoteSignerUrl: string;
1413
+ address: import("@aztec/foundation/schemas").EthAddress;
1414
+ certPath?: string | undefined;
1415
+ certPass?: string | undefined;
1416
+ }, {
1417
+ remoteSignerUrl: string;
1418
+ address: string;
1419
+ certPath?: string | undefined;
1420
+ certPass?: string | undefined;
1421
+ }>]>, z.ZodObject<{
1422
+ path: z.ZodString;
1423
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1424
+ }, "strict", z.ZodTypeAny, {
1425
+ path: string;
1426
+ password?: string | undefined;
1427
+ }, {
1428
+ path: string;
1429
+ password?: string | undefined;
1430
+ }>]>, z.ZodObject<{
1431
+ eth: z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
1432
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
1433
+ remoteSignerUrl: z.ZodString;
1434
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1435
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1436
+ }, "strict", z.ZodTypeAny, {
1437
+ remoteSignerUrl: string;
1438
+ address: import("@aztec/foundation/schemas").EthAddress;
1439
+ certPath?: string | undefined;
1440
+ certPass?: string | undefined;
1441
+ }, {
1442
+ remoteSignerUrl: string;
1443
+ address: string;
1444
+ certPath?: string | undefined;
1445
+ certPass?: string | undefined;
1446
+ }>]>, z.ZodObject<{
1447
+ path: z.ZodString;
1448
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1449
+ }, "strict", z.ZodTypeAny, {
1450
+ path: string;
1451
+ password?: string | undefined;
1452
+ }, {
1453
+ path: string;
1454
+ password?: string | undefined;
1455
+ }>]>;
1456
+ bls: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, BLSPrivateKey, string>, z.ZodObject<{
1457
+ path: z.ZodString;
1458
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1459
+ }, "strict", z.ZodTypeAny, {
1460
+ path: string;
1461
+ password?: string | undefined;
1462
+ }, {
1463
+ path: string;
1464
+ password?: string | undefined;
1465
+ }>]>>;
1466
+ }, "strict", z.ZodTypeAny, {
1467
+ eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
1468
+ remoteSignerUrl: string;
1469
+ address: import("@aztec/foundation/schemas").EthAddress;
1470
+ certPath?: string | undefined;
1471
+ certPass?: string | undefined;
1472
+ } | {
1473
+ path: string;
1474
+ password?: string | undefined;
1475
+ };
1476
+ bls?: BLSPrivateKey | {
1477
+ path: string;
1478
+ password?: string | undefined;
1479
+ } | undefined;
1480
+ }, {
1481
+ eth: string | {
1482
+ remoteSignerUrl: string;
1483
+ address: string;
1484
+ certPath?: string | undefined;
1485
+ certPass?: string | undefined;
1486
+ } | {
1487
+ path: string;
1488
+ password?: string | undefined;
1489
+ };
1490
+ bls?: string | {
1491
+ path: string;
1492
+ password?: string | undefined;
1493
+ } | undefined;
1494
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
1495
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
1496
+ remoteSignerUrl: z.ZodString;
1497
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1498
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1499
+ }, "strict", z.ZodTypeAny, {
1500
+ remoteSignerUrl: string;
1501
+ address: import("@aztec/foundation/schemas").EthAddress;
1502
+ certPath?: string | undefined;
1503
+ certPass?: string | undefined;
1504
+ }, {
1505
+ remoteSignerUrl: string;
1506
+ address: string;
1507
+ certPath?: string | undefined;
1508
+ certPass?: string | undefined;
1509
+ }>]>, z.ZodObject<{
1510
+ path: z.ZodString;
1511
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1512
+ }, "strict", z.ZodTypeAny, {
1513
+ path: string;
1514
+ password?: string | undefined;
1515
+ }, {
1516
+ path: string;
1517
+ password?: string | undefined;
1518
+ }>]>, z.ZodObject<{
1519
+ eth: z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
1520
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
1521
+ remoteSignerUrl: z.ZodString;
1522
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1523
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1524
+ }, "strict", z.ZodTypeAny, {
1525
+ remoteSignerUrl: string;
1526
+ address: import("@aztec/foundation/schemas").EthAddress;
1527
+ certPath?: string | undefined;
1528
+ certPass?: string | undefined;
1529
+ }, {
1530
+ remoteSignerUrl: string;
1531
+ address: string;
1532
+ certPath?: string | undefined;
1533
+ certPass?: string | undefined;
1534
+ }>]>, z.ZodObject<{
1535
+ path: z.ZodString;
1536
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1537
+ }, "strict", z.ZodTypeAny, {
1538
+ path: string;
1539
+ password?: string | undefined;
1540
+ }, {
1541
+ path: string;
1542
+ password?: string | undefined;
1543
+ }>]>;
1544
+ bls: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, BLSPrivateKey, string>, z.ZodObject<{
1545
+ path: z.ZodString;
1546
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1547
+ }, "strict", z.ZodTypeAny, {
1548
+ path: string;
1549
+ password?: string | undefined;
1550
+ }, {
1551
+ path: string;
1552
+ password?: string | undefined;
1553
+ }>]>>;
1554
+ }, "strict", z.ZodTypeAny, {
1555
+ eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
1556
+ remoteSignerUrl: string;
1557
+ address: import("@aztec/foundation/schemas").EthAddress;
1558
+ certPath?: string | undefined;
1559
+ certPass?: string | undefined;
1560
+ } | {
1561
+ path: string;
1562
+ password?: string | undefined;
1563
+ };
1564
+ bls?: BLSPrivateKey | {
1565
+ path: string;
1566
+ password?: string | undefined;
1567
+ } | undefined;
1568
+ }, {
1569
+ eth: string | {
1570
+ remoteSignerUrl: string;
1571
+ address: string;
1572
+ certPath?: string | undefined;
1573
+ certPass?: string | undefined;
1574
+ } | {
1575
+ path: string;
1576
+ password?: string | undefined;
1577
+ };
1578
+ bls?: string | {
1579
+ path: string;
1580
+ password?: string | undefined;
1581
+ } | undefined;
1582
+ }>]>, "many">, z.ZodObject<{
1583
+ mnemonic: z.ZodString;
1584
+ addressIndex: z.ZodDefault<z.ZodNumber>;
1585
+ accountIndex: z.ZodDefault<z.ZodNumber>;
1586
+ addressCount: z.ZodDefault<z.ZodNumber>;
1587
+ accountCount: z.ZodDefault<z.ZodNumber>;
1588
+ }, "strict", z.ZodTypeAny, {
1589
+ mnemonic: string;
1590
+ addressIndex: number;
1591
+ accountIndex: number;
1592
+ addressCount: number;
1593
+ accountCount: number;
1594
+ }, {
1595
+ mnemonic: string;
1596
+ addressIndex?: number | undefined;
1597
+ accountIndex?: number | undefined;
1598
+ addressCount?: number | undefined;
1599
+ accountCount?: number | undefined;
1600
+ }>]>;
1601
+ coinbase: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>>;
1602
+ publisher: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
1603
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
1604
+ remoteSignerUrl: z.ZodString;
1605
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1606
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1607
+ }, "strict", z.ZodTypeAny, {
1608
+ remoteSignerUrl: string;
1609
+ address: import("@aztec/foundation/schemas").EthAddress;
1610
+ certPath?: string | undefined;
1611
+ certPass?: string | undefined;
1612
+ }, {
1613
+ remoteSignerUrl: string;
1614
+ address: string;
1615
+ certPath?: string | undefined;
1616
+ certPass?: string | undefined;
1617
+ }>]>, z.ZodObject<{
1618
+ path: z.ZodString;
1619
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1620
+ }, "strict", z.ZodTypeAny, {
1621
+ path: string;
1622
+ password?: string | undefined;
1623
+ }, {
1624
+ path: string;
1625
+ password?: string | undefined;
1626
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
1627
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
1628
+ remoteSignerUrl: z.ZodString;
1629
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1630
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1631
+ }, "strict", z.ZodTypeAny, {
1632
+ remoteSignerUrl: string;
1633
+ address: import("@aztec/foundation/schemas").EthAddress;
1634
+ certPath?: string | undefined;
1635
+ certPass?: string | undefined;
1636
+ }, {
1637
+ remoteSignerUrl: string;
1638
+ address: string;
1639
+ certPath?: string | undefined;
1640
+ certPass?: string | undefined;
1641
+ }>]>, z.ZodObject<{
1642
+ path: z.ZodString;
1643
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1644
+ }, "strict", z.ZodTypeAny, {
1645
+ path: string;
1646
+ password?: string | undefined;
1647
+ }, {
1648
+ path: string;
1649
+ password?: string | undefined;
1650
+ }>]>, "many">, z.ZodObject<{
1651
+ mnemonic: z.ZodString;
1652
+ addressIndex: z.ZodDefault<z.ZodNumber>;
1653
+ accountIndex: z.ZodDefault<z.ZodNumber>;
1654
+ addressCount: z.ZodDefault<z.ZodNumber>;
1655
+ accountCount: z.ZodDefault<z.ZodNumber>;
1656
+ }, "strict", z.ZodTypeAny, {
1657
+ mnemonic: string;
1658
+ addressIndex: number;
1659
+ accountIndex: number;
1660
+ addressCount: number;
1661
+ accountCount: number;
1662
+ }, {
1663
+ mnemonic: string;
1664
+ addressIndex?: number | undefined;
1665
+ accountIndex?: number | undefined;
1666
+ addressCount?: number | undefined;
1667
+ accountCount?: number | undefined;
1668
+ }>]>>;
1669
+ feeRecipient: import("@aztec/foundation/schemas").ZodNullableOptional<import("@aztec/foundation/schemas").ZodFor<AztecAddress>>;
1670
+ remoteSigner: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1671
+ remoteSignerUrl: z.ZodString;
1672
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1673
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1674
+ }, "strict", z.ZodTypeAny, {
1675
+ remoteSignerUrl: string;
1676
+ certPath?: string | undefined;
1677
+ certPass?: string | undefined;
1678
+ }, {
1679
+ remoteSignerUrl: string;
1680
+ certPath?: string | undefined;
1681
+ certPass?: string | undefined;
1682
+ }>]>>;
1683
+ fundingAccount: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
1684
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
1685
+ remoteSignerUrl: z.ZodString;
1686
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1687
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1688
+ }, "strict", z.ZodTypeAny, {
1689
+ remoteSignerUrl: string;
1690
+ address: import("@aztec/foundation/schemas").EthAddress;
1691
+ certPath?: string | undefined;
1692
+ certPass?: string | undefined;
1693
+ }, {
1694
+ remoteSignerUrl: string;
1695
+ address: string;
1696
+ certPath?: string | undefined;
1697
+ certPass?: string | undefined;
1698
+ }>]>, z.ZodObject<{
1699
+ path: z.ZodString;
1700
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1701
+ }, "strict", z.ZodTypeAny, {
1702
+ path: string;
1703
+ password?: string | undefined;
1704
+ }, {
1705
+ path: string;
1706
+ password?: string | undefined;
1707
+ }>]>>;
1708
+ }, "strict", z.ZodTypeAny, {
1709
+ attester: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
1710
+ remoteSignerUrl: string;
1711
+ address: import("@aztec/foundation/schemas").EthAddress;
1712
+ certPath?: string | undefined;
1713
+ certPass?: string | undefined;
1714
+ } | {
1715
+ path: string;
1716
+ password?: string | undefined;
1717
+ } | {
1718
+ mnemonic: string;
1719
+ addressIndex: number;
1720
+ accountIndex: number;
1721
+ addressCount: number;
1722
+ accountCount: number;
1723
+ } | {
1724
+ eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
1725
+ remoteSignerUrl: string;
1726
+ address: import("@aztec/foundation/schemas").EthAddress;
1727
+ certPath?: string | undefined;
1728
+ certPass?: string | undefined;
1729
+ } | {
1730
+ path: string;
1731
+ password?: string | undefined;
1732
+ };
1733
+ bls?: BLSPrivateKey | {
1734
+ path: string;
1735
+ password?: string | undefined;
1736
+ } | undefined;
1737
+ } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
1738
+ remoteSignerUrl: string;
1739
+ address: import("@aztec/foundation/schemas").EthAddress;
1740
+ certPath?: string | undefined;
1741
+ certPass?: string | undefined;
1742
+ } | {
1743
+ path: string;
1744
+ password?: string | undefined;
1745
+ } | {
1746
+ eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
1747
+ remoteSignerUrl: string;
1748
+ address: import("@aztec/foundation/schemas").EthAddress;
1749
+ certPath?: string | undefined;
1750
+ certPass?: string | undefined;
1751
+ } | {
1752
+ path: string;
1753
+ password?: string | undefined;
1754
+ };
1755
+ bls?: BLSPrivateKey | {
1756
+ path: string;
1757
+ password?: string | undefined;
1758
+ } | undefined;
1759
+ })[];
1760
+ publisher?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
1761
+ remoteSignerUrl: string;
1762
+ address: import("@aztec/foundation/schemas").EthAddress;
1763
+ certPath?: string | undefined;
1764
+ certPass?: string | undefined;
1765
+ } | {
1766
+ path: string;
1767
+ password?: string | undefined;
1768
+ } | {
1769
+ mnemonic: string;
1770
+ addressIndex: number;
1771
+ accountIndex: number;
1772
+ addressCount: number;
1773
+ accountCount: number;
1774
+ } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
1775
+ remoteSignerUrl: string;
1776
+ address: import("@aztec/foundation/schemas").EthAddress;
1777
+ certPath?: string | undefined;
1778
+ certPass?: string | undefined;
1779
+ } | {
1780
+ path: string;
1781
+ password?: string | undefined;
1782
+ })[] | undefined;
1783
+ coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
1784
+ feeRecipient?: AztecAddress | undefined;
1785
+ remoteSigner?: string | {
1786
+ remoteSignerUrl: string;
1787
+ certPath?: string | undefined;
1788
+ certPass?: string | undefined;
1789
+ } | undefined;
1790
+ fundingAccount?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
1791
+ remoteSignerUrl: string;
1792
+ address: import("@aztec/foundation/schemas").EthAddress;
1793
+ certPath?: string | undefined;
1794
+ certPass?: string | undefined;
1795
+ } | {
1796
+ path: string;
1797
+ password?: string | undefined;
1798
+ } | undefined;
1799
+ }, {
1800
+ attester: string | {
1801
+ remoteSignerUrl: string;
1802
+ address: string;
1803
+ certPath?: string | undefined;
1804
+ certPass?: string | undefined;
1805
+ } | {
1806
+ path: string;
1807
+ password?: string | undefined;
1808
+ } | {
1809
+ mnemonic: string;
1810
+ addressIndex?: number | undefined;
1811
+ accountIndex?: number | undefined;
1812
+ addressCount?: number | undefined;
1813
+ accountCount?: number | undefined;
1814
+ } | {
1815
+ eth: string | {
1816
+ remoteSignerUrl: string;
1817
+ address: string;
1818
+ certPath?: string | undefined;
1819
+ certPass?: string | undefined;
1820
+ } | {
1821
+ path: string;
1822
+ password?: string | undefined;
1823
+ };
1824
+ bls?: string | {
1825
+ path: string;
1826
+ password?: string | undefined;
1827
+ } | undefined;
1828
+ } | (string | {
1829
+ remoteSignerUrl: string;
1830
+ address: string;
1831
+ certPath?: string | undefined;
1832
+ certPass?: string | undefined;
1833
+ } | {
1834
+ path: string;
1835
+ password?: string | undefined;
1836
+ } | {
1837
+ eth: string | {
1838
+ remoteSignerUrl: string;
1839
+ address: string;
1840
+ certPath?: string | undefined;
1841
+ certPass?: string | undefined;
1842
+ } | {
1843
+ path: string;
1844
+ password?: string | undefined;
1845
+ };
1846
+ bls?: string | {
1847
+ path: string;
1848
+ password?: string | undefined;
1849
+ } | undefined;
1850
+ })[];
1851
+ publisher?: string | {
1852
+ remoteSignerUrl: string;
1853
+ address: string;
1854
+ certPath?: string | undefined;
1855
+ certPass?: string | undefined;
1856
+ } | {
1857
+ path: string;
1858
+ password?: string | undefined;
1859
+ } | {
1860
+ mnemonic: string;
1861
+ addressIndex?: number | undefined;
1862
+ accountIndex?: number | undefined;
1863
+ addressCount?: number | undefined;
1864
+ accountCount?: number | undefined;
1865
+ } | (string | {
1866
+ remoteSignerUrl: string;
1867
+ address: string;
1868
+ certPath?: string | undefined;
1869
+ certPass?: string | undefined;
1870
+ } | {
1871
+ path: string;
1872
+ password?: string | undefined;
1873
+ })[] | undefined;
1874
+ coinbase?: string | undefined;
1875
+ feeRecipient?: any;
1876
+ remoteSigner?: string | {
1877
+ remoteSignerUrl: string;
1878
+ certPath?: string | undefined;
1879
+ certPass?: string | undefined;
1880
+ } | undefined;
1881
+ fundingAccount?: string | {
1882
+ remoteSignerUrl: string;
1883
+ address: string;
1884
+ certPath?: string | undefined;
1885
+ certPass?: string | undefined;
1886
+ } | {
1887
+ path: string;
1888
+ password?: string | undefined;
1889
+ } | undefined;
1890
+ }>, "many">>;
1891
+ slasher: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
1892
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
1893
+ remoteSignerUrl: z.ZodString;
1894
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1895
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1896
+ }, "strict", z.ZodTypeAny, {
1897
+ remoteSignerUrl: string;
1898
+ address: import("@aztec/foundation/schemas").EthAddress;
1899
+ certPath?: string | undefined;
1900
+ certPass?: string | undefined;
1901
+ }, {
1902
+ remoteSignerUrl: string;
1903
+ address: string;
1904
+ certPath?: string | undefined;
1905
+ certPass?: string | undefined;
1906
+ }>]>, z.ZodObject<{
1907
+ path: z.ZodString;
1908
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1909
+ }, "strict", z.ZodTypeAny, {
1910
+ path: string;
1911
+ password?: string | undefined;
1912
+ }, {
1913
+ path: string;
1914
+ password?: string | undefined;
1915
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
1916
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
1917
+ remoteSignerUrl: z.ZodString;
1918
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1919
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1920
+ }, "strict", z.ZodTypeAny, {
1921
+ remoteSignerUrl: string;
1922
+ address: import("@aztec/foundation/schemas").EthAddress;
1923
+ certPath?: string | undefined;
1924
+ certPass?: string | undefined;
1925
+ }, {
1926
+ remoteSignerUrl: string;
1927
+ address: string;
1928
+ certPath?: string | undefined;
1929
+ certPass?: string | undefined;
1930
+ }>]>, z.ZodObject<{
1931
+ path: z.ZodString;
1932
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1933
+ }, "strict", z.ZodTypeAny, {
1934
+ path: string;
1935
+ password?: string | undefined;
1936
+ }, {
1937
+ path: string;
1938
+ password?: string | undefined;
1939
+ }>]>, "many">, z.ZodObject<{
1940
+ mnemonic: z.ZodString;
1941
+ addressIndex: z.ZodDefault<z.ZodNumber>;
1942
+ accountIndex: z.ZodDefault<z.ZodNumber>;
1943
+ addressCount: z.ZodDefault<z.ZodNumber>;
1944
+ accountCount: z.ZodDefault<z.ZodNumber>;
1945
+ }, "strict", z.ZodTypeAny, {
1946
+ mnemonic: string;
1947
+ addressIndex: number;
1948
+ accountIndex: number;
1949
+ addressCount: number;
1950
+ accountCount: number;
1951
+ }, {
1952
+ mnemonic: string;
1953
+ addressIndex?: number | undefined;
1954
+ accountIndex?: number | undefined;
1955
+ addressCount?: number | undefined;
1956
+ accountCount?: number | undefined;
1957
+ }>]>>;
1958
+ remoteSigner: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1959
+ remoteSignerUrl: z.ZodString;
1960
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1961
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1962
+ }, "strict", z.ZodTypeAny, {
1963
+ remoteSignerUrl: string;
1964
+ certPath?: string | undefined;
1965
+ certPass?: string | undefined;
1966
+ }, {
1967
+ remoteSignerUrl: string;
1968
+ certPath?: string | undefined;
1969
+ certPass?: string | undefined;
1970
+ }>]>>;
1971
+ prover: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
1972
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
1973
+ remoteSignerUrl: z.ZodString;
1974
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1975
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1976
+ }, "strict", z.ZodTypeAny, {
1977
+ remoteSignerUrl: string;
1978
+ address: import("@aztec/foundation/schemas").EthAddress;
1979
+ certPath?: string | undefined;
1980
+ certPass?: string | undefined;
1981
+ }, {
1982
+ remoteSignerUrl: string;
1983
+ address: string;
1984
+ certPath?: string | undefined;
1985
+ certPass?: string | undefined;
1986
+ }>]>, z.ZodObject<{
1987
+ path: z.ZodString;
1988
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1989
+ }, "strict", z.ZodTypeAny, {
1990
+ path: string;
1991
+ password?: string | undefined;
1992
+ }, {
1993
+ path: string;
1994
+ password?: string | undefined;
1995
+ }>]>, z.ZodObject<{
1996
+ id: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
1997
+ publisher: z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
1998
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
1999
+ remoteSignerUrl: z.ZodString;
2000
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2001
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2002
+ }, "strict", z.ZodTypeAny, {
2003
+ remoteSignerUrl: string;
2004
+ address: import("@aztec/foundation/schemas").EthAddress;
2005
+ certPath?: string | undefined;
2006
+ certPass?: string | undefined;
2007
+ }, {
2008
+ remoteSignerUrl: string;
2009
+ address: string;
2010
+ certPath?: string | undefined;
2011
+ certPass?: string | undefined;
2012
+ }>]>, z.ZodObject<{
2013
+ path: z.ZodString;
2014
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2015
+ }, "strict", z.ZodTypeAny, {
2016
+ path: string;
2017
+ password?: string | undefined;
2018
+ }, {
2019
+ path: string;
2020
+ password?: string | undefined;
2021
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
2022
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
2023
+ remoteSignerUrl: z.ZodString;
2024
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2025
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2026
+ }, "strict", z.ZodTypeAny, {
2027
+ remoteSignerUrl: string;
2028
+ address: import("@aztec/foundation/schemas").EthAddress;
2029
+ certPath?: string | undefined;
2030
+ certPass?: string | undefined;
2031
+ }, {
2032
+ remoteSignerUrl: string;
2033
+ address: string;
2034
+ certPath?: string | undefined;
2035
+ certPass?: string | undefined;
2036
+ }>]>, z.ZodObject<{
2037
+ path: z.ZodString;
2038
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2039
+ }, "strict", z.ZodTypeAny, {
2040
+ path: string;
2041
+ password?: string | undefined;
2042
+ }, {
2043
+ path: string;
2044
+ password?: string | undefined;
2045
+ }>]>, "many">, z.ZodObject<{
2046
+ mnemonic: z.ZodString;
2047
+ addressIndex: z.ZodDefault<z.ZodNumber>;
2048
+ accountIndex: z.ZodDefault<z.ZodNumber>;
2049
+ addressCount: z.ZodDefault<z.ZodNumber>;
2050
+ accountCount: z.ZodDefault<z.ZodNumber>;
2051
+ }, "strict", z.ZodTypeAny, {
2052
+ mnemonic: string;
2053
+ addressIndex: number;
2054
+ accountIndex: number;
2055
+ addressCount: number;
2056
+ accountCount: number;
2057
+ }, {
2058
+ mnemonic: string;
2059
+ addressIndex?: number | undefined;
2060
+ accountIndex?: number | undefined;
2061
+ addressCount?: number | undefined;
2062
+ accountCount?: number | undefined;
2063
+ }>]>;
2064
+ }, "strict", z.ZodTypeAny, {
2065
+ id: import("@aztec/foundation/schemas").EthAddress;
2066
+ publisher: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2067
+ remoteSignerUrl: string;
2068
+ address: import("@aztec/foundation/schemas").EthAddress;
2069
+ certPath?: string | undefined;
2070
+ certPass?: string | undefined;
2071
+ } | {
2072
+ path: string;
2073
+ password?: string | undefined;
2074
+ } | {
2075
+ mnemonic: string;
2076
+ addressIndex: number;
2077
+ accountIndex: number;
2078
+ addressCount: number;
2079
+ accountCount: number;
2080
+ } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2081
+ remoteSignerUrl: string;
2082
+ address: import("@aztec/foundation/schemas").EthAddress;
2083
+ certPath?: string | undefined;
2084
+ certPass?: string | undefined;
2085
+ } | {
2086
+ path: string;
2087
+ password?: string | undefined;
2088
+ })[];
2089
+ }, {
2090
+ id: string;
2091
+ publisher: string | {
2092
+ remoteSignerUrl: string;
2093
+ address: string;
2094
+ certPath?: string | undefined;
2095
+ certPass?: string | undefined;
2096
+ } | {
2097
+ path: string;
2098
+ password?: string | undefined;
2099
+ } | {
2100
+ mnemonic: string;
2101
+ addressIndex?: number | undefined;
2102
+ accountIndex?: number | undefined;
2103
+ addressCount?: number | undefined;
2104
+ accountCount?: number | undefined;
2105
+ } | (string | {
2106
+ remoteSignerUrl: string;
2107
+ address: string;
2108
+ certPath?: string | undefined;
2109
+ certPass?: string | undefined;
2110
+ } | {
2111
+ path: string;
2112
+ password?: string | undefined;
2113
+ })[];
2114
+ }>]>>;
2115
+ fundingAccount: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
2116
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
2117
+ remoteSignerUrl: z.ZodString;
2118
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2119
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2120
+ }, "strict", z.ZodTypeAny, {
2121
+ remoteSignerUrl: string;
2122
+ address: import("@aztec/foundation/schemas").EthAddress;
2123
+ certPath?: string | undefined;
2124
+ certPass?: string | undefined;
2125
+ }, {
2126
+ remoteSignerUrl: string;
2127
+ address: string;
2128
+ certPath?: string | undefined;
2129
+ certPass?: string | undefined;
2130
+ }>]>, z.ZodObject<{
2131
+ path: z.ZodString;
2132
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2133
+ }, "strict", z.ZodTypeAny, {
2134
+ path: string;
2135
+ password?: string | undefined;
2136
+ }, {
2137
+ path: string;
2138
+ password?: string | undefined;
2139
+ }>]>>;
2140
+ publisher: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
2141
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
2142
+ remoteSignerUrl: z.ZodString;
2143
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2144
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2145
+ }, "strict", z.ZodTypeAny, {
2146
+ remoteSignerUrl: string;
2147
+ address: import("@aztec/foundation/schemas").EthAddress;
2148
+ certPath?: string | undefined;
2149
+ certPass?: string | undefined;
2150
+ }, {
2151
+ remoteSignerUrl: string;
2152
+ address: string;
2153
+ certPath?: string | undefined;
2154
+ certPass?: string | undefined;
2155
+ }>]>, z.ZodObject<{
2156
+ path: z.ZodString;
2157
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2158
+ }, "strict", z.ZodTypeAny, {
2159
+ path: string;
2160
+ password?: string | undefined;
2161
+ }, {
2162
+ path: string;
2163
+ password?: string | undefined;
2164
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
2165
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
2166
+ remoteSignerUrl: z.ZodString;
2167
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2168
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2169
+ }, "strict", z.ZodTypeAny, {
2170
+ remoteSignerUrl: string;
2171
+ address: import("@aztec/foundation/schemas").EthAddress;
2172
+ certPath?: string | undefined;
2173
+ certPass?: string | undefined;
2174
+ }, {
2175
+ remoteSignerUrl: string;
2176
+ address: string;
2177
+ certPath?: string | undefined;
2178
+ certPass?: string | undefined;
2179
+ }>]>, z.ZodObject<{
2180
+ path: z.ZodString;
2181
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2182
+ }, "strict", z.ZodTypeAny, {
2183
+ path: string;
2184
+ password?: string | undefined;
2185
+ }, {
2186
+ path: string;
2187
+ password?: string | undefined;
2188
+ }>]>, "many">, z.ZodObject<{
2189
+ mnemonic: z.ZodString;
2190
+ addressIndex: z.ZodDefault<z.ZodNumber>;
2191
+ accountIndex: z.ZodDefault<z.ZodNumber>;
2192
+ addressCount: z.ZodDefault<z.ZodNumber>;
2193
+ accountCount: z.ZodDefault<z.ZodNumber>;
2194
+ }, "strict", z.ZodTypeAny, {
2195
+ mnemonic: string;
2196
+ addressIndex: number;
2197
+ accountIndex: number;
2198
+ addressCount: number;
2199
+ accountCount: number;
2200
+ }, {
2201
+ mnemonic: string;
2202
+ addressIndex?: number | undefined;
2203
+ accountIndex?: number | undefined;
2204
+ addressCount?: number | undefined;
2205
+ accountCount?: number | undefined;
2206
+ }>]>>;
2207
+ coinbase: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>>;
2208
+ feeRecipient: import("@aztec/foundation/schemas").ZodNullableOptional<import("@aztec/foundation/schemas").ZodFor<AztecAddress>>;
2209
+ }, "strict", z.ZodTypeAny, {
2210
+ schemaVersion: 2;
2211
+ publisher?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2212
+ remoteSignerUrl: string;
2213
+ address: import("@aztec/foundation/schemas").EthAddress;
2214
+ certPath?: string | undefined;
2215
+ certPass?: string | undefined;
2216
+ } | {
2217
+ path: string;
2218
+ password?: string | undefined;
2219
+ } | {
2220
+ mnemonic: string;
2221
+ addressIndex: number;
2222
+ accountIndex: number;
2223
+ addressCount: number;
2224
+ accountCount: number;
2225
+ } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2226
+ remoteSignerUrl: string;
2227
+ address: import("@aztec/foundation/schemas").EthAddress;
2228
+ certPath?: string | undefined;
2229
+ certPass?: string | undefined;
2230
+ } | {
2231
+ path: string;
2232
+ password?: string | undefined;
2233
+ })[] | undefined;
2234
+ coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
2235
+ feeRecipient?: AztecAddress | undefined;
2236
+ remoteSigner?: string | {
2237
+ remoteSignerUrl: string;
2238
+ certPath?: string | undefined;
2239
+ certPass?: string | undefined;
2240
+ } | undefined;
2241
+ fundingAccount?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2242
+ remoteSignerUrl: string;
2243
+ address: import("@aztec/foundation/schemas").EthAddress;
2244
+ certPath?: string | undefined;
2245
+ certPass?: string | undefined;
2246
+ } | {
2247
+ path: string;
2248
+ password?: string | undefined;
2249
+ } | undefined;
2250
+ validators?: {
2251
+ attester: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2252
+ remoteSignerUrl: string;
2253
+ address: import("@aztec/foundation/schemas").EthAddress;
2254
+ certPath?: string | undefined;
2255
+ certPass?: string | undefined;
2256
+ } | {
2257
+ path: string;
2258
+ password?: string | undefined;
2259
+ } | {
2260
+ mnemonic: string;
2261
+ addressIndex: number;
2262
+ accountIndex: number;
2263
+ addressCount: number;
2264
+ accountCount: number;
2265
+ } | {
2266
+ eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2267
+ remoteSignerUrl: string;
2268
+ address: import("@aztec/foundation/schemas").EthAddress;
2269
+ certPath?: string | undefined;
2270
+ certPass?: string | undefined;
2271
+ } | {
2272
+ path: string;
2273
+ password?: string | undefined;
2274
+ };
2275
+ bls?: BLSPrivateKey | {
2276
+ path: string;
2277
+ password?: string | undefined;
2278
+ } | undefined;
2279
+ } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2280
+ remoteSignerUrl: string;
2281
+ address: import("@aztec/foundation/schemas").EthAddress;
2282
+ certPath?: string | undefined;
2283
+ certPass?: string | undefined;
2284
+ } | {
2285
+ path: string;
2286
+ password?: string | undefined;
2287
+ } | {
2288
+ eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2289
+ remoteSignerUrl: string;
2290
+ address: import("@aztec/foundation/schemas").EthAddress;
2291
+ certPath?: string | undefined;
2292
+ certPass?: string | undefined;
2293
+ } | {
2294
+ path: string;
2295
+ password?: string | undefined;
2296
+ };
2297
+ bls?: BLSPrivateKey | {
2298
+ path: string;
2299
+ password?: string | undefined;
2300
+ } | undefined;
2301
+ })[];
2302
+ publisher?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2303
+ remoteSignerUrl: string;
2304
+ address: import("@aztec/foundation/schemas").EthAddress;
2305
+ certPath?: string | undefined;
2306
+ certPass?: string | undefined;
2307
+ } | {
2308
+ path: string;
2309
+ password?: string | undefined;
2310
+ } | {
2311
+ mnemonic: string;
2312
+ addressIndex: number;
2313
+ accountIndex: number;
2314
+ addressCount: number;
2315
+ accountCount: number;
2316
+ } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2317
+ remoteSignerUrl: string;
2318
+ address: import("@aztec/foundation/schemas").EthAddress;
2319
+ certPath?: string | undefined;
2320
+ certPass?: string | undefined;
2321
+ } | {
2322
+ path: string;
2323
+ password?: string | undefined;
2324
+ })[] | undefined;
2325
+ coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
2326
+ feeRecipient?: AztecAddress | undefined;
2327
+ remoteSigner?: string | {
2328
+ remoteSignerUrl: string;
2329
+ certPath?: string | undefined;
2330
+ certPass?: string | undefined;
2331
+ } | undefined;
2332
+ fundingAccount?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2333
+ remoteSignerUrl: string;
2334
+ address: import("@aztec/foundation/schemas").EthAddress;
2335
+ certPath?: string | undefined;
2336
+ certPass?: string | undefined;
2337
+ } | {
2338
+ path: string;
2339
+ password?: string | undefined;
2340
+ } | undefined;
2341
+ }[] | undefined;
2342
+ slasher?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2343
+ remoteSignerUrl: string;
2344
+ address: import("@aztec/foundation/schemas").EthAddress;
2345
+ certPath?: string | undefined;
2346
+ certPass?: string | undefined;
2347
+ } | {
2348
+ path: string;
2349
+ password?: string | undefined;
2350
+ } | {
2351
+ mnemonic: string;
2352
+ addressIndex: number;
2353
+ accountIndex: number;
2354
+ addressCount: number;
2355
+ accountCount: number;
2356
+ } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2357
+ remoteSignerUrl: string;
2358
+ address: import("@aztec/foundation/schemas").EthAddress;
2359
+ certPath?: string | undefined;
2360
+ certPass?: string | undefined;
2361
+ } | {
2362
+ path: string;
2363
+ password?: string | undefined;
2364
+ })[] | undefined;
2365
+ prover?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2366
+ remoteSignerUrl: string;
2367
+ address: import("@aztec/foundation/schemas").EthAddress;
2368
+ certPath?: string | undefined;
2369
+ certPass?: string | undefined;
2370
+ } | {
2371
+ path: string;
2372
+ password?: string | undefined;
2373
+ } | {
2374
+ id: import("@aztec/foundation/schemas").EthAddress;
2375
+ publisher: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2376
+ remoteSignerUrl: string;
2377
+ address: import("@aztec/foundation/schemas").EthAddress;
2378
+ certPath?: string | undefined;
2379
+ certPass?: string | undefined;
2380
+ } | {
2381
+ path: string;
2382
+ password?: string | undefined;
2383
+ } | {
2384
+ mnemonic: string;
2385
+ addressIndex: number;
2386
+ accountIndex: number;
2387
+ addressCount: number;
2388
+ accountCount: number;
2389
+ } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2390
+ remoteSignerUrl: string;
2391
+ address: import("@aztec/foundation/schemas").EthAddress;
2392
+ certPath?: string | undefined;
2393
+ certPass?: string | undefined;
2394
+ } | {
2395
+ path: string;
2396
+ password?: string | undefined;
2397
+ })[];
2398
+ } | undefined;
2399
+ }, {
2400
+ schemaVersion: 2;
2401
+ publisher?: string | {
2402
+ remoteSignerUrl: string;
2403
+ address: string;
2404
+ certPath?: string | undefined;
2405
+ certPass?: string | undefined;
2406
+ } | {
2407
+ path: string;
2408
+ password?: string | undefined;
2409
+ } | {
2410
+ mnemonic: string;
2411
+ addressIndex?: number | undefined;
2412
+ accountIndex?: number | undefined;
2413
+ addressCount?: number | undefined;
2414
+ accountCount?: number | undefined;
2415
+ } | (string | {
2416
+ remoteSignerUrl: string;
2417
+ address: string;
2418
+ certPath?: string | undefined;
2419
+ certPass?: string | undefined;
2420
+ } | {
2421
+ path: string;
2422
+ password?: string | undefined;
2423
+ })[] | undefined;
2424
+ coinbase?: string | undefined;
2425
+ feeRecipient?: any;
2426
+ remoteSigner?: string | {
2427
+ remoteSignerUrl: string;
2428
+ certPath?: string | undefined;
2429
+ certPass?: string | undefined;
2430
+ } | undefined;
2431
+ fundingAccount?: string | {
2432
+ remoteSignerUrl: string;
2433
+ address: string;
2434
+ certPath?: string | undefined;
2435
+ certPass?: string | undefined;
2436
+ } | {
2437
+ path: string;
2438
+ password?: string | undefined;
2439
+ } | undefined;
2440
+ validators?: {
2441
+ attester: string | {
2442
+ remoteSignerUrl: string;
2443
+ address: string;
2444
+ certPath?: string | undefined;
2445
+ certPass?: string | undefined;
2446
+ } | {
2447
+ path: string;
2448
+ password?: string | undefined;
2449
+ } | {
2450
+ mnemonic: string;
2451
+ addressIndex?: number | undefined;
2452
+ accountIndex?: number | undefined;
2453
+ addressCount?: number | undefined;
2454
+ accountCount?: number | undefined;
2455
+ } | {
2456
+ eth: string | {
2457
+ remoteSignerUrl: string;
2458
+ address: string;
2459
+ certPath?: string | undefined;
2460
+ certPass?: string | undefined;
2461
+ } | {
2462
+ path: string;
2463
+ password?: string | undefined;
2464
+ };
2465
+ bls?: string | {
2466
+ path: string;
2467
+ password?: string | undefined;
2468
+ } | undefined;
2469
+ } | (string | {
2470
+ remoteSignerUrl: string;
2471
+ address: string;
2472
+ certPath?: string | undefined;
2473
+ certPass?: string | undefined;
2474
+ } | {
2475
+ path: string;
2476
+ password?: string | undefined;
2477
+ } | {
2478
+ eth: string | {
2479
+ remoteSignerUrl: string;
2480
+ address: string;
2481
+ certPath?: string | undefined;
2482
+ certPass?: string | undefined;
2483
+ } | {
2484
+ path: string;
2485
+ password?: string | undefined;
2486
+ };
2487
+ bls?: string | {
2488
+ path: string;
2489
+ password?: string | undefined;
2490
+ } | undefined;
2491
+ })[];
2492
+ publisher?: string | {
2493
+ remoteSignerUrl: string;
2494
+ address: string;
2495
+ certPath?: string | undefined;
2496
+ certPass?: string | undefined;
2497
+ } | {
2498
+ path: string;
2499
+ password?: string | undefined;
2500
+ } | {
2501
+ mnemonic: string;
2502
+ addressIndex?: number | undefined;
2503
+ accountIndex?: number | undefined;
2504
+ addressCount?: number | undefined;
2505
+ accountCount?: number | undefined;
2506
+ } | (string | {
2507
+ remoteSignerUrl: string;
2508
+ address: string;
2509
+ certPath?: string | undefined;
2510
+ certPass?: string | undefined;
2511
+ } | {
2512
+ path: string;
2513
+ password?: string | undefined;
2514
+ })[] | undefined;
2515
+ coinbase?: string | undefined;
2516
+ feeRecipient?: any;
2517
+ remoteSigner?: string | {
2518
+ remoteSignerUrl: string;
2519
+ certPath?: string | undefined;
2520
+ certPass?: string | undefined;
2521
+ } | undefined;
2522
+ fundingAccount?: string | {
2523
+ remoteSignerUrl: string;
2524
+ address: string;
2525
+ certPath?: string | undefined;
2526
+ certPass?: string | undefined;
2527
+ } | {
2528
+ path: string;
2529
+ password?: string | undefined;
2530
+ } | undefined;
2531
+ }[] | undefined;
2532
+ slasher?: string | {
2533
+ remoteSignerUrl: string;
2534
+ address: string;
2535
+ certPath?: string | undefined;
2536
+ certPass?: string | undefined;
2537
+ } | {
2538
+ path: string;
2539
+ password?: string | undefined;
2540
+ } | {
2541
+ mnemonic: string;
2542
+ addressIndex?: number | undefined;
2543
+ accountIndex?: number | undefined;
2544
+ addressCount?: number | undefined;
2545
+ accountCount?: number | undefined;
2546
+ } | (string | {
2547
+ remoteSignerUrl: string;
2548
+ address: string;
2549
+ certPath?: string | undefined;
2550
+ certPass?: string | undefined;
2551
+ } | {
2552
+ path: string;
2553
+ password?: string | undefined;
2554
+ })[] | undefined;
2555
+ prover?: string | {
2556
+ remoteSignerUrl: string;
2557
+ address: string;
2558
+ certPath?: string | undefined;
2559
+ certPass?: string | undefined;
2560
+ } | {
2561
+ path: string;
2562
+ password?: string | undefined;
2563
+ } | {
2564
+ id: string;
2565
+ publisher: string | {
2566
+ remoteSignerUrl: string;
2567
+ address: string;
2568
+ certPath?: string | undefined;
2569
+ certPass?: string | undefined;
2570
+ } | {
2571
+ path: string;
2572
+ password?: string | undefined;
2573
+ } | {
2574
+ mnemonic: string;
2575
+ addressIndex?: number | undefined;
2576
+ accountIndex?: number | undefined;
2577
+ addressCount?: number | undefined;
2578
+ accountCount?: number | undefined;
2579
+ } | (string | {
2580
+ remoteSignerUrl: string;
2581
+ address: string;
2582
+ certPath?: string | undefined;
2583
+ certPass?: string | undefined;
2584
+ } | {
2585
+ path: string;
2586
+ password?: string | undefined;
2587
+ })[];
2588
+ } | undefined;
2589
+ }>, {
2590
+ schemaVersion: 2;
2591
+ publisher?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2592
+ remoteSignerUrl: string;
2593
+ address: import("@aztec/foundation/schemas").EthAddress;
2594
+ certPath?: string | undefined;
2595
+ certPass?: string | undefined;
2596
+ } | {
2597
+ path: string;
2598
+ password?: string | undefined;
2599
+ } | {
2600
+ mnemonic: string;
2601
+ addressIndex: number;
2602
+ accountIndex: number;
2603
+ addressCount: number;
2604
+ accountCount: number;
2605
+ } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2606
+ remoteSignerUrl: string;
2607
+ address: import("@aztec/foundation/schemas").EthAddress;
2608
+ certPath?: string | undefined;
2609
+ certPass?: string | undefined;
2610
+ } | {
2611
+ path: string;
2612
+ password?: string | undefined;
2613
+ })[] | undefined;
2614
+ coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
2615
+ feeRecipient?: AztecAddress | undefined;
2616
+ remoteSigner?: string | {
2617
+ remoteSignerUrl: string;
2618
+ certPath?: string | undefined;
2619
+ certPass?: string | undefined;
2620
+ } | undefined;
2621
+ fundingAccount?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2622
+ remoteSignerUrl: string;
2623
+ address: import("@aztec/foundation/schemas").EthAddress;
2624
+ certPath?: string | undefined;
2625
+ certPass?: string | undefined;
2626
+ } | {
2627
+ path: string;
2628
+ password?: string | undefined;
2629
+ } | undefined;
2630
+ validators?: {
2631
+ attester: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2632
+ remoteSignerUrl: string;
2633
+ address: import("@aztec/foundation/schemas").EthAddress;
2634
+ certPath?: string | undefined;
2635
+ certPass?: string | undefined;
2636
+ } | {
2637
+ path: string;
2638
+ password?: string | undefined;
2639
+ } | {
2640
+ mnemonic: string;
2641
+ addressIndex: number;
2642
+ accountIndex: number;
2643
+ addressCount: number;
2644
+ accountCount: number;
2645
+ } | {
2646
+ eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2647
+ remoteSignerUrl: string;
2648
+ address: import("@aztec/foundation/schemas").EthAddress;
2649
+ certPath?: string | undefined;
2650
+ certPass?: string | undefined;
2651
+ } | {
2652
+ path: string;
2653
+ password?: string | undefined;
2654
+ };
2655
+ bls?: BLSPrivateKey | {
2656
+ path: string;
2657
+ password?: string | undefined;
2658
+ } | undefined;
2659
+ } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2660
+ remoteSignerUrl: string;
2661
+ address: import("@aztec/foundation/schemas").EthAddress;
2662
+ certPath?: string | undefined;
2663
+ certPass?: string | undefined;
2664
+ } | {
2665
+ path: string;
2666
+ password?: string | undefined;
2667
+ } | {
2668
+ eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2669
+ remoteSignerUrl: string;
2670
+ address: import("@aztec/foundation/schemas").EthAddress;
2671
+ certPath?: string | undefined;
2672
+ certPass?: string | undefined;
2673
+ } | {
2674
+ path: string;
2675
+ password?: string | undefined;
2676
+ };
2677
+ bls?: BLSPrivateKey | {
2678
+ path: string;
2679
+ password?: string | undefined;
2680
+ } | undefined;
2681
+ })[];
2682
+ publisher?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2683
+ remoteSignerUrl: string;
2684
+ address: import("@aztec/foundation/schemas").EthAddress;
2685
+ certPath?: string | undefined;
2686
+ certPass?: string | undefined;
2687
+ } | {
2688
+ path: string;
2689
+ password?: string | undefined;
2690
+ } | {
2691
+ mnemonic: string;
2692
+ addressIndex: number;
2693
+ accountIndex: number;
2694
+ addressCount: number;
2695
+ accountCount: number;
2696
+ } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2697
+ remoteSignerUrl: string;
2698
+ address: import("@aztec/foundation/schemas").EthAddress;
2699
+ certPath?: string | undefined;
2700
+ certPass?: string | undefined;
2701
+ } | {
2702
+ path: string;
2703
+ password?: string | undefined;
2704
+ })[] | undefined;
2705
+ coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
2706
+ feeRecipient?: AztecAddress | undefined;
2707
+ remoteSigner?: string | {
2708
+ remoteSignerUrl: string;
2709
+ certPath?: string | undefined;
2710
+ certPass?: string | undefined;
2711
+ } | undefined;
2712
+ fundingAccount?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2713
+ remoteSignerUrl: string;
2714
+ address: import("@aztec/foundation/schemas").EthAddress;
2715
+ certPath?: string | undefined;
2716
+ certPass?: string | undefined;
2717
+ } | {
2718
+ path: string;
2719
+ password?: string | undefined;
2720
+ } | undefined;
2721
+ }[] | undefined;
2722
+ slasher?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2723
+ remoteSignerUrl: string;
2724
+ address: import("@aztec/foundation/schemas").EthAddress;
2725
+ certPath?: string | undefined;
2726
+ certPass?: string | undefined;
2727
+ } | {
2728
+ path: string;
2729
+ password?: string | undefined;
2730
+ } | {
2731
+ mnemonic: string;
2732
+ addressIndex: number;
2733
+ accountIndex: number;
2734
+ addressCount: number;
2735
+ accountCount: number;
2736
+ } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2737
+ remoteSignerUrl: string;
2738
+ address: import("@aztec/foundation/schemas").EthAddress;
2739
+ certPath?: string | undefined;
2740
+ certPass?: string | undefined;
2741
+ } | {
2742
+ path: string;
2743
+ password?: string | undefined;
2744
+ })[] | undefined;
2745
+ prover?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2746
+ remoteSignerUrl: string;
2747
+ address: import("@aztec/foundation/schemas").EthAddress;
2748
+ certPath?: string | undefined;
2749
+ certPass?: string | undefined;
2750
+ } | {
2751
+ path: string;
2752
+ password?: string | undefined;
2753
+ } | {
2754
+ id: import("@aztec/foundation/schemas").EthAddress;
2755
+ publisher: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2756
+ remoteSignerUrl: string;
2757
+ address: import("@aztec/foundation/schemas").EthAddress;
2758
+ certPath?: string | undefined;
2759
+ certPass?: string | undefined;
2760
+ } | {
2761
+ path: string;
2762
+ password?: string | undefined;
2763
+ } | {
2764
+ mnemonic: string;
2765
+ addressIndex: number;
2766
+ accountIndex: number;
2767
+ addressCount: number;
2768
+ accountCount: number;
2769
+ } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2770
+ remoteSignerUrl: string;
2771
+ address: import("@aztec/foundation/schemas").EthAddress;
2772
+ certPath?: string | undefined;
2773
+ certPass?: string | undefined;
2774
+ } | {
2775
+ path: string;
2776
+ password?: string | undefined;
2777
+ })[];
2778
+ } | undefined;
2779
+ }, {
2780
+ schemaVersion: 2;
2781
+ publisher?: string | {
2782
+ remoteSignerUrl: string;
2783
+ address: string;
2784
+ certPath?: string | undefined;
2785
+ certPass?: string | undefined;
2786
+ } | {
2787
+ path: string;
2788
+ password?: string | undefined;
2789
+ } | {
2790
+ mnemonic: string;
2791
+ addressIndex?: number | undefined;
2792
+ accountIndex?: number | undefined;
2793
+ addressCount?: number | undefined;
2794
+ accountCount?: number | undefined;
2795
+ } | (string | {
2796
+ remoteSignerUrl: string;
2797
+ address: string;
2798
+ certPath?: string | undefined;
2799
+ certPass?: string | undefined;
2800
+ } | {
2801
+ path: string;
2802
+ password?: string | undefined;
2803
+ })[] | undefined;
2804
+ coinbase?: string | undefined;
2805
+ feeRecipient?: any;
2806
+ remoteSigner?: string | {
2807
+ remoteSignerUrl: string;
2808
+ certPath?: string | undefined;
2809
+ certPass?: string | undefined;
2810
+ } | undefined;
2811
+ fundingAccount?: string | {
2812
+ remoteSignerUrl: string;
2813
+ address: string;
2814
+ certPath?: string | undefined;
2815
+ certPass?: string | undefined;
2816
+ } | {
2817
+ path: string;
2818
+ password?: string | undefined;
2819
+ } | undefined;
2820
+ validators?: {
2821
+ attester: string | {
2822
+ remoteSignerUrl: string;
2823
+ address: string;
2824
+ certPath?: string | undefined;
2825
+ certPass?: string | undefined;
2826
+ } | {
2827
+ path: string;
2828
+ password?: string | undefined;
2829
+ } | {
2830
+ mnemonic: string;
2831
+ addressIndex?: number | undefined;
2832
+ accountIndex?: number | undefined;
2833
+ addressCount?: number | undefined;
2834
+ accountCount?: number | undefined;
2835
+ } | {
2836
+ eth: string | {
2837
+ remoteSignerUrl: string;
2838
+ address: string;
2839
+ certPath?: string | undefined;
2840
+ certPass?: string | undefined;
2841
+ } | {
2842
+ path: string;
2843
+ password?: string | undefined;
2844
+ };
2845
+ bls?: string | {
2846
+ path: string;
2847
+ password?: string | undefined;
2848
+ } | undefined;
2849
+ } | (string | {
2850
+ remoteSignerUrl: string;
2851
+ address: string;
2852
+ certPath?: string | undefined;
2853
+ certPass?: string | undefined;
2854
+ } | {
2855
+ path: string;
2856
+ password?: string | undefined;
2857
+ } | {
2858
+ eth: string | {
2859
+ remoteSignerUrl: string;
2860
+ address: string;
2861
+ certPath?: string | undefined;
2862
+ certPass?: string | undefined;
2863
+ } | {
2864
+ path: string;
2865
+ password?: string | undefined;
2866
+ };
2867
+ bls?: string | {
2868
+ path: string;
2869
+ password?: string | undefined;
2870
+ } | undefined;
2871
+ })[];
2872
+ publisher?: string | {
2873
+ remoteSignerUrl: string;
2874
+ address: string;
2875
+ certPath?: string | undefined;
2876
+ certPass?: string | undefined;
2877
+ } | {
2878
+ path: string;
2879
+ password?: string | undefined;
2880
+ } | {
2881
+ mnemonic: string;
2882
+ addressIndex?: number | undefined;
2883
+ accountIndex?: number | undefined;
2884
+ addressCount?: number | undefined;
2885
+ accountCount?: number | undefined;
2886
+ } | (string | {
2887
+ remoteSignerUrl: string;
2888
+ address: string;
2889
+ certPath?: string | undefined;
2890
+ certPass?: string | undefined;
2891
+ } | {
2892
+ path: string;
2893
+ password?: string | undefined;
2894
+ })[] | undefined;
2895
+ coinbase?: string | undefined;
2896
+ feeRecipient?: any;
2897
+ remoteSigner?: string | {
2898
+ remoteSignerUrl: string;
2899
+ certPath?: string | undefined;
2900
+ certPass?: string | undefined;
2901
+ } | undefined;
2902
+ fundingAccount?: string | {
2903
+ remoteSignerUrl: string;
2904
+ address: string;
2905
+ certPath?: string | undefined;
2906
+ certPass?: string | undefined;
2907
+ } | {
2908
+ path: string;
2909
+ password?: string | undefined;
2910
+ } | undefined;
2911
+ }[] | undefined;
2912
+ slasher?: string | {
2913
+ remoteSignerUrl: string;
2914
+ address: string;
2915
+ certPath?: string | undefined;
2916
+ certPass?: string | undefined;
2917
+ } | {
2918
+ path: string;
2919
+ password?: string | undefined;
2920
+ } | {
2921
+ mnemonic: string;
2922
+ addressIndex?: number | undefined;
2923
+ accountIndex?: number | undefined;
2924
+ addressCount?: number | undefined;
2925
+ accountCount?: number | undefined;
2926
+ } | (string | {
2927
+ remoteSignerUrl: string;
2928
+ address: string;
2929
+ certPath?: string | undefined;
2930
+ certPass?: string | undefined;
2931
+ } | {
2932
+ path: string;
2933
+ password?: string | undefined;
2934
+ })[] | undefined;
2935
+ prover?: string | {
2936
+ remoteSignerUrl: string;
2937
+ address: string;
2938
+ certPath?: string | undefined;
2939
+ certPass?: string | undefined;
2940
+ } | {
2941
+ path: string;
2942
+ password?: string | undefined;
2943
+ } | {
2944
+ id: string;
2945
+ publisher: string | {
2946
+ remoteSignerUrl: string;
2947
+ address: string;
2948
+ certPath?: string | undefined;
2949
+ certPass?: string | undefined;
2950
+ } | {
2951
+ path: string;
2952
+ password?: string | undefined;
2953
+ } | {
2954
+ mnemonic: string;
2955
+ addressIndex?: number | undefined;
2956
+ accountIndex?: number | undefined;
2957
+ addressCount?: number | undefined;
2958
+ accountCount?: number | undefined;
2959
+ } | (string | {
2960
+ remoteSignerUrl: string;
2961
+ address: string;
2962
+ certPath?: string | undefined;
2963
+ certPass?: string | undefined;
2964
+ } | {
2965
+ path: string;
2966
+ password?: string | undefined;
2967
+ })[];
2968
+ } | undefined;
2969
+ }>, {
2970
+ schemaVersion: 2;
2971
+ publisher?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2972
+ remoteSignerUrl: string;
2973
+ address: import("@aztec/foundation/schemas").EthAddress;
2974
+ certPath?: string | undefined;
2975
+ certPass?: string | undefined;
2976
+ } | {
2977
+ path: string;
2978
+ password?: string | undefined;
2979
+ } | {
2980
+ mnemonic: string;
2981
+ addressIndex: number;
2982
+ accountIndex: number;
2983
+ addressCount: number;
2984
+ accountCount: number;
2985
+ } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2986
+ remoteSignerUrl: string;
2987
+ address: import("@aztec/foundation/schemas").EthAddress;
2988
+ certPath?: string | undefined;
2989
+ certPass?: string | undefined;
2990
+ } | {
2991
+ path: string;
2992
+ password?: string | undefined;
2993
+ })[] | undefined;
2994
+ coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
2995
+ feeRecipient?: AztecAddress | undefined;
2996
+ remoteSigner?: string | {
2997
+ remoteSignerUrl: string;
2998
+ certPath?: string | undefined;
2999
+ certPass?: string | undefined;
3000
+ } | undefined;
3001
+ fundingAccount?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3002
+ remoteSignerUrl: string;
3003
+ address: import("@aztec/foundation/schemas").EthAddress;
3004
+ certPath?: string | undefined;
3005
+ certPass?: string | undefined;
3006
+ } | {
3007
+ path: string;
3008
+ password?: string | undefined;
3009
+ } | undefined;
3010
+ validators?: {
3011
+ attester: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3012
+ remoteSignerUrl: string;
3013
+ address: import("@aztec/foundation/schemas").EthAddress;
3014
+ certPath?: string | undefined;
3015
+ certPass?: string | undefined;
3016
+ } | {
3017
+ path: string;
3018
+ password?: string | undefined;
3019
+ } | {
3020
+ mnemonic: string;
3021
+ addressIndex: number;
3022
+ accountIndex: number;
3023
+ addressCount: number;
3024
+ accountCount: number;
3025
+ } | {
3026
+ eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3027
+ remoteSignerUrl: string;
3028
+ address: import("@aztec/foundation/schemas").EthAddress;
3029
+ certPath?: string | undefined;
3030
+ certPass?: string | undefined;
3031
+ } | {
3032
+ path: string;
3033
+ password?: string | undefined;
3034
+ };
3035
+ bls?: BLSPrivateKey | {
3036
+ path: string;
3037
+ password?: string | undefined;
3038
+ } | undefined;
3039
+ } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3040
+ remoteSignerUrl: string;
3041
+ address: import("@aztec/foundation/schemas").EthAddress;
3042
+ certPath?: string | undefined;
3043
+ certPass?: string | undefined;
3044
+ } | {
3045
+ path: string;
3046
+ password?: string | undefined;
3047
+ } | {
3048
+ eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3049
+ remoteSignerUrl: string;
3050
+ address: import("@aztec/foundation/schemas").EthAddress;
3051
+ certPath?: string | undefined;
3052
+ certPass?: string | undefined;
3053
+ } | {
3054
+ path: string;
3055
+ password?: string | undefined;
3056
+ };
3057
+ bls?: BLSPrivateKey | {
3058
+ path: string;
3059
+ password?: string | undefined;
3060
+ } | undefined;
3061
+ })[];
3062
+ publisher?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3063
+ remoteSignerUrl: string;
3064
+ address: import("@aztec/foundation/schemas").EthAddress;
3065
+ certPath?: string | undefined;
3066
+ certPass?: string | undefined;
3067
+ } | {
3068
+ path: string;
3069
+ password?: string | undefined;
3070
+ } | {
3071
+ mnemonic: string;
3072
+ addressIndex: number;
3073
+ accountIndex: number;
3074
+ addressCount: number;
3075
+ accountCount: number;
3076
+ } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3077
+ remoteSignerUrl: string;
3078
+ address: import("@aztec/foundation/schemas").EthAddress;
3079
+ certPath?: string | undefined;
3080
+ certPass?: string | undefined;
3081
+ } | {
3082
+ path: string;
3083
+ password?: string | undefined;
3084
+ })[] | undefined;
3085
+ coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
3086
+ feeRecipient?: AztecAddress | undefined;
3087
+ remoteSigner?: string | {
3088
+ remoteSignerUrl: string;
3089
+ certPath?: string | undefined;
3090
+ certPass?: string | undefined;
3091
+ } | undefined;
3092
+ fundingAccount?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3093
+ remoteSignerUrl: string;
3094
+ address: import("@aztec/foundation/schemas").EthAddress;
3095
+ certPath?: string | undefined;
3096
+ certPass?: string | undefined;
3097
+ } | {
3098
+ path: string;
3099
+ password?: string | undefined;
3100
+ } | undefined;
3101
+ }[] | undefined;
3102
+ slasher?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3103
+ remoteSignerUrl: string;
3104
+ address: import("@aztec/foundation/schemas").EthAddress;
3105
+ certPath?: string | undefined;
3106
+ certPass?: string | undefined;
3107
+ } | {
3108
+ path: string;
3109
+ password?: string | undefined;
3110
+ } | {
3111
+ mnemonic: string;
3112
+ addressIndex: number;
3113
+ accountIndex: number;
3114
+ addressCount: number;
3115
+ accountCount: number;
3116
+ } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3117
+ remoteSignerUrl: string;
3118
+ address: import("@aztec/foundation/schemas").EthAddress;
3119
+ certPath?: string | undefined;
3120
+ certPass?: string | undefined;
3121
+ } | {
3122
+ path: string;
3123
+ password?: string | undefined;
3124
+ })[] | undefined;
3125
+ prover?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3126
+ remoteSignerUrl: string;
3127
+ address: import("@aztec/foundation/schemas").EthAddress;
3128
+ certPath?: string | undefined;
3129
+ certPass?: string | undefined;
3130
+ } | {
3131
+ path: string;
3132
+ password?: string | undefined;
3133
+ } | {
3134
+ id: import("@aztec/foundation/schemas").EthAddress;
3135
+ publisher: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3136
+ remoteSignerUrl: string;
3137
+ address: import("@aztec/foundation/schemas").EthAddress;
3138
+ certPath?: string | undefined;
3139
+ certPass?: string | undefined;
3140
+ } | {
3141
+ path: string;
3142
+ password?: string | undefined;
3143
+ } | {
3144
+ mnemonic: string;
3145
+ addressIndex: number;
3146
+ accountIndex: number;
3147
+ addressCount: number;
3148
+ accountCount: number;
3149
+ } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3150
+ remoteSignerUrl: string;
3151
+ address: import("@aztec/foundation/schemas").EthAddress;
3152
+ certPath?: string | undefined;
3153
+ certPass?: string | undefined;
3154
+ } | {
3155
+ path: string;
3156
+ password?: string | undefined;
3157
+ })[];
3158
+ } | undefined;
3159
+ }, {
3160
+ schemaVersion: 2;
3161
+ publisher?: string | {
3162
+ remoteSignerUrl: string;
3163
+ address: string;
3164
+ certPath?: string | undefined;
3165
+ certPass?: string | undefined;
3166
+ } | {
3167
+ path: string;
3168
+ password?: string | undefined;
3169
+ } | {
3170
+ mnemonic: string;
3171
+ addressIndex?: number | undefined;
3172
+ accountIndex?: number | undefined;
3173
+ addressCount?: number | undefined;
3174
+ accountCount?: number | undefined;
3175
+ } | (string | {
3176
+ remoteSignerUrl: string;
3177
+ address: string;
3178
+ certPath?: string | undefined;
3179
+ certPass?: string | undefined;
3180
+ } | {
3181
+ path: string;
3182
+ password?: string | undefined;
3183
+ })[] | undefined;
3184
+ coinbase?: string | undefined;
3185
+ feeRecipient?: any;
3186
+ remoteSigner?: string | {
3187
+ remoteSignerUrl: string;
3188
+ certPath?: string | undefined;
3189
+ certPass?: string | undefined;
3190
+ } | undefined;
3191
+ fundingAccount?: string | {
3192
+ remoteSignerUrl: string;
3193
+ address: string;
3194
+ certPath?: string | undefined;
3195
+ certPass?: string | undefined;
3196
+ } | {
3197
+ path: string;
3198
+ password?: string | undefined;
3199
+ } | undefined;
3200
+ validators?: {
3201
+ attester: string | {
3202
+ remoteSignerUrl: string;
3203
+ address: string;
3204
+ certPath?: string | undefined;
3205
+ certPass?: string | undefined;
3206
+ } | {
3207
+ path: string;
3208
+ password?: string | undefined;
3209
+ } | {
3210
+ mnemonic: string;
3211
+ addressIndex?: number | undefined;
3212
+ accountIndex?: number | undefined;
3213
+ addressCount?: number | undefined;
3214
+ accountCount?: number | undefined;
3215
+ } | {
3216
+ eth: string | {
3217
+ remoteSignerUrl: string;
3218
+ address: string;
3219
+ certPath?: string | undefined;
3220
+ certPass?: string | undefined;
3221
+ } | {
3222
+ path: string;
3223
+ password?: string | undefined;
3224
+ };
3225
+ bls?: string | {
3226
+ path: string;
3227
+ password?: string | undefined;
3228
+ } | undefined;
3229
+ } | (string | {
3230
+ remoteSignerUrl: string;
3231
+ address: string;
3232
+ certPath?: string | undefined;
3233
+ certPass?: string | undefined;
3234
+ } | {
3235
+ path: string;
3236
+ password?: string | undefined;
3237
+ } | {
3238
+ eth: string | {
3239
+ remoteSignerUrl: string;
3240
+ address: string;
3241
+ certPath?: string | undefined;
3242
+ certPass?: string | undefined;
3243
+ } | {
3244
+ path: string;
3245
+ password?: string | undefined;
3246
+ };
3247
+ bls?: string | {
3248
+ path: string;
3249
+ password?: string | undefined;
3250
+ } | undefined;
3251
+ })[];
3252
+ publisher?: string | {
3253
+ remoteSignerUrl: string;
3254
+ address: string;
3255
+ certPath?: string | undefined;
3256
+ certPass?: string | undefined;
3257
+ } | {
3258
+ path: string;
3259
+ password?: string | undefined;
3260
+ } | {
3261
+ mnemonic: string;
3262
+ addressIndex?: number | undefined;
3263
+ accountIndex?: number | undefined;
3264
+ addressCount?: number | undefined;
3265
+ accountCount?: number | undefined;
3266
+ } | (string | {
3267
+ remoteSignerUrl: string;
3268
+ address: string;
3269
+ certPath?: string | undefined;
3270
+ certPass?: string | undefined;
3271
+ } | {
3272
+ path: string;
3273
+ password?: string | undefined;
3274
+ })[] | undefined;
3275
+ coinbase?: string | undefined;
3276
+ feeRecipient?: any;
3277
+ remoteSigner?: string | {
3278
+ remoteSignerUrl: string;
3279
+ certPath?: string | undefined;
3280
+ certPass?: string | undefined;
3281
+ } | undefined;
3282
+ fundingAccount?: string | {
3283
+ remoteSignerUrl: string;
3284
+ address: string;
3285
+ certPath?: string | undefined;
3286
+ certPass?: string | undefined;
3287
+ } | {
3288
+ path: string;
3289
+ password?: string | undefined;
3290
+ } | undefined;
3291
+ }[] | undefined;
3292
+ slasher?: string | {
3293
+ remoteSignerUrl: string;
3294
+ address: string;
3295
+ certPath?: string | undefined;
3296
+ certPass?: string | undefined;
3297
+ } | {
3298
+ path: string;
3299
+ password?: string | undefined;
3300
+ } | {
3301
+ mnemonic: string;
3302
+ addressIndex?: number | undefined;
3303
+ accountIndex?: number | undefined;
3304
+ addressCount?: number | undefined;
3305
+ accountCount?: number | undefined;
3306
+ } | (string | {
3307
+ remoteSignerUrl: string;
3308
+ address: string;
3309
+ certPath?: string | undefined;
3310
+ certPass?: string | undefined;
3311
+ } | {
3312
+ path: string;
3313
+ password?: string | undefined;
3314
+ })[] | undefined;
3315
+ prover?: string | {
3316
+ remoteSignerUrl: string;
3317
+ address: string;
3318
+ certPath?: string | undefined;
3319
+ certPass?: string | undefined;
3320
+ } | {
3321
+ path: string;
3322
+ password?: string | undefined;
3323
+ } | {
3324
+ id: string;
3325
+ publisher: string | {
3326
+ remoteSignerUrl: string;
3327
+ address: string;
3328
+ certPath?: string | undefined;
3329
+ certPass?: string | undefined;
3330
+ } | {
3331
+ path: string;
3332
+ password?: string | undefined;
3333
+ } | {
3334
+ mnemonic: string;
3335
+ addressIndex?: number | undefined;
3336
+ accountIndex?: number | undefined;
3337
+ addressCount?: number | undefined;
3338
+ accountCount?: number | undefined;
3339
+ } | (string | {
3340
+ remoteSignerUrl: string;
3341
+ address: string;
3342
+ certPath?: string | undefined;
3343
+ certPass?: string | undefined;
3344
+ } | {
3345
+ path: string;
3346
+ password?: string | undefined;
3347
+ })[];
3348
+ } | undefined;
3349
+ }>]>;
1404
3350
  //# sourceMappingURL=schemas.d.ts.map