@apibara/starknet 2.0.0-beta.32 → 2.0.0-beta.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.cts +259 -259
- package/dist/index.d.mts +259 -259
- package/dist/index.d.ts +259 -259
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -1663,130 +1663,130 @@ declare const Filter: Schema.Struct<{
|
|
|
1663
1663
|
}>;
|
|
1664
1664
|
type Filter = typeof Filter.Type;
|
|
1665
1665
|
declare const filterToProto: (a: {
|
|
1666
|
-
readonly header?: "
|
|
1666
|
+
readonly header?: "unknown" | "always" | "on_data" | "on_data_or_on_new_block" | undefined;
|
|
1667
1667
|
readonly transactions?: readonly {
|
|
1668
|
+
readonly transactionStatus?: "succeeded" | "reverted" | "unknown" | "all" | undefined;
|
|
1668
1669
|
readonly id?: number | undefined;
|
|
1669
|
-
readonly transactionStatus?: "unknown" | "succeeded" | "reverted" | "all" | undefined;
|
|
1670
1670
|
readonly includeReceipt?: boolean | undefined;
|
|
1671
1671
|
readonly includeMessages?: boolean | undefined;
|
|
1672
1672
|
readonly includeEvents?: boolean | undefined;
|
|
1673
1673
|
readonly transactionType?: {
|
|
1674
|
-
readonly _tag: "invokeV0";
|
|
1675
1674
|
readonly invokeV0: {};
|
|
1675
|
+
readonly _tag: "invokeV0";
|
|
1676
1676
|
} | {
|
|
1677
|
-
readonly _tag: "invokeV1";
|
|
1678
1677
|
readonly invokeV1: {};
|
|
1678
|
+
readonly _tag: "invokeV1";
|
|
1679
1679
|
} | {
|
|
1680
|
-
readonly _tag: "invokeV3";
|
|
1681
1680
|
readonly invokeV3: {};
|
|
1681
|
+
readonly _tag: "invokeV3";
|
|
1682
1682
|
} | {
|
|
1683
|
-
readonly _tag: "deploy";
|
|
1684
1683
|
readonly deploy: {};
|
|
1684
|
+
readonly _tag: "deploy";
|
|
1685
1685
|
} | {
|
|
1686
|
-
readonly _tag: "declareV0";
|
|
1687
1686
|
readonly declareV0: {};
|
|
1687
|
+
readonly _tag: "declareV0";
|
|
1688
1688
|
} | {
|
|
1689
|
-
readonly _tag: "declareV1";
|
|
1690
1689
|
readonly declareV1: {};
|
|
1690
|
+
readonly _tag: "declareV1";
|
|
1691
1691
|
} | {
|
|
1692
|
-
readonly _tag: "declareV2";
|
|
1693
1692
|
readonly declareV2: {};
|
|
1693
|
+
readonly _tag: "declareV2";
|
|
1694
1694
|
} | {
|
|
1695
|
-
readonly _tag: "declareV3";
|
|
1696
1695
|
readonly declareV3: {};
|
|
1696
|
+
readonly _tag: "declareV3";
|
|
1697
1697
|
} | {
|
|
1698
|
-
readonly _tag: "l1Handler";
|
|
1699
1698
|
readonly l1Handler: {};
|
|
1699
|
+
readonly _tag: "l1Handler";
|
|
1700
1700
|
} | {
|
|
1701
|
-
readonly _tag: "deployAccountV1";
|
|
1702
1701
|
readonly deployAccountV1: {};
|
|
1702
|
+
readonly _tag: "deployAccountV1";
|
|
1703
1703
|
} | {
|
|
1704
|
-
readonly _tag: "deployAccountV3";
|
|
1705
1704
|
readonly deployAccountV3: {};
|
|
1705
|
+
readonly _tag: "deployAccountV3";
|
|
1706
1706
|
} | undefined;
|
|
1707
1707
|
}[] | undefined;
|
|
1708
1708
|
readonly events?: readonly {
|
|
1709
1709
|
readonly keys?: readonly (`0x${string}` | null)[] | undefined;
|
|
1710
|
-
readonly
|
|
1711
|
-
readonly transactionStatus?: "unknown" | "succeeded" | "reverted" | "all" | undefined;
|
|
1712
|
-
readonly includeReceipt?: boolean | undefined;
|
|
1713
|
-
readonly includeMessages?: boolean | undefined;
|
|
1710
|
+
readonly transactionStatus?: "succeeded" | "reverted" | "unknown" | "all" | undefined;
|
|
1714
1711
|
readonly address?: `0x${string}` | undefined;
|
|
1712
|
+
readonly id?: number | undefined;
|
|
1715
1713
|
readonly strict?: boolean | undefined;
|
|
1716
1714
|
readonly includeTransaction?: boolean | undefined;
|
|
1715
|
+
readonly includeReceipt?: boolean | undefined;
|
|
1716
|
+
readonly includeMessages?: boolean | undefined;
|
|
1717
1717
|
readonly includeSiblings?: boolean | undefined;
|
|
1718
1718
|
}[] | undefined;
|
|
1719
1719
|
readonly messages?: readonly {
|
|
1720
|
+
readonly transactionStatus?: "succeeded" | "reverted" | "unknown" | "all" | undefined;
|
|
1721
|
+
readonly fromAddress?: `0x${string}` | undefined;
|
|
1722
|
+
readonly toAddress?: `0x${string}` | undefined;
|
|
1720
1723
|
readonly id?: number | undefined;
|
|
1721
|
-
readonly
|
|
1724
|
+
readonly includeTransaction?: boolean | undefined;
|
|
1722
1725
|
readonly includeReceipt?: boolean | undefined;
|
|
1723
1726
|
readonly includeEvents?: boolean | undefined;
|
|
1724
|
-
readonly includeTransaction?: boolean | undefined;
|
|
1725
|
-
readonly fromAddress?: `0x${string}` | undefined;
|
|
1726
|
-
readonly toAddress?: `0x${string}` | undefined;
|
|
1727
1727
|
}[] | undefined;
|
|
1728
1728
|
readonly storageDiffs?: readonly {
|
|
1729
|
-
readonly id?: number | undefined;
|
|
1730
1729
|
readonly contractAddress?: `0x${string}` | undefined;
|
|
1730
|
+
readonly id?: number | undefined;
|
|
1731
1731
|
}[] | undefined;
|
|
1732
1732
|
readonly contractChanges?: readonly {
|
|
1733
|
-
readonly id?: number | undefined;
|
|
1734
1733
|
readonly change?: {
|
|
1735
|
-
readonly _tag: "declaredClass";
|
|
1736
1734
|
readonly declaredClass: {};
|
|
1735
|
+
readonly _tag: "declaredClass";
|
|
1737
1736
|
} | {
|
|
1738
|
-
readonly _tag: "replacedClass";
|
|
1739
1737
|
readonly replacedClass: {};
|
|
1738
|
+
readonly _tag: "replacedClass";
|
|
1740
1739
|
} | {
|
|
1741
|
-
readonly _tag: "deployedContract";
|
|
1742
1740
|
readonly deployedContract: {};
|
|
1741
|
+
readonly _tag: "deployedContract";
|
|
1743
1742
|
} | undefined;
|
|
1743
|
+
readonly id?: number | undefined;
|
|
1744
1744
|
}[] | undefined;
|
|
1745
1745
|
readonly nonceUpdates?: readonly {
|
|
1746
|
-
readonly id?: number | undefined;
|
|
1747
1746
|
readonly contractAddress?: `0x${string}` | undefined;
|
|
1747
|
+
readonly id?: number | undefined;
|
|
1748
1748
|
}[] | undefined;
|
|
1749
1749
|
}, overrideOptions?: _effect_schema_AST.ParseOptions) => {
|
|
1750
1750
|
readonly header?: HeaderFilter$1 | undefined;
|
|
1751
1751
|
readonly transactions?: readonly {
|
|
1752
|
-
readonly id?: number | undefined;
|
|
1753
1752
|
readonly transactionStatus?: TransactionStatusFilter$1 | undefined;
|
|
1753
|
+
readonly id?: number | undefined;
|
|
1754
1754
|
readonly includeReceipt?: boolean | undefined;
|
|
1755
1755
|
readonly includeMessages?: boolean | undefined;
|
|
1756
1756
|
readonly includeEvents?: boolean | undefined;
|
|
1757
1757
|
readonly transactionType?: {
|
|
1758
|
-
readonly $case: "invokeV0";
|
|
1759
1758
|
readonly invokeV0: {};
|
|
1759
|
+
readonly $case: "invokeV0";
|
|
1760
1760
|
} | {
|
|
1761
|
-
readonly $case: "invokeV1";
|
|
1762
1761
|
readonly invokeV1: {};
|
|
1762
|
+
readonly $case: "invokeV1";
|
|
1763
1763
|
} | {
|
|
1764
|
-
readonly $case: "invokeV3";
|
|
1765
1764
|
readonly invokeV3: {};
|
|
1765
|
+
readonly $case: "invokeV3";
|
|
1766
1766
|
} | {
|
|
1767
|
-
readonly $case: "deploy";
|
|
1768
1767
|
readonly deploy: {};
|
|
1768
|
+
readonly $case: "deploy";
|
|
1769
1769
|
} | {
|
|
1770
|
-
readonly $case: "declareV0";
|
|
1771
1770
|
readonly declareV0: {};
|
|
1771
|
+
readonly $case: "declareV0";
|
|
1772
1772
|
} | {
|
|
1773
|
-
readonly $case: "declareV1";
|
|
1774
1773
|
readonly declareV1: {};
|
|
1774
|
+
readonly $case: "declareV1";
|
|
1775
1775
|
} | {
|
|
1776
|
-
readonly $case: "declareV2";
|
|
1777
1776
|
readonly declareV2: {};
|
|
1777
|
+
readonly $case: "declareV2";
|
|
1778
1778
|
} | {
|
|
1779
|
-
readonly $case: "declareV3";
|
|
1780
1779
|
readonly declareV3: {};
|
|
1780
|
+
readonly $case: "declareV3";
|
|
1781
1781
|
} | {
|
|
1782
|
-
readonly $case: "l1Handler";
|
|
1783
1782
|
readonly l1Handler: {};
|
|
1783
|
+
readonly $case: "l1Handler";
|
|
1784
1784
|
} | {
|
|
1785
|
-
readonly $case: "deployAccountV1";
|
|
1786
1785
|
readonly deployAccountV1: {};
|
|
1786
|
+
readonly $case: "deployAccountV1";
|
|
1787
1787
|
} | {
|
|
1788
|
-
readonly $case: "deployAccountV3";
|
|
1789
1788
|
readonly deployAccountV3: {};
|
|
1789
|
+
readonly $case: "deployAccountV3";
|
|
1790
1790
|
} | undefined;
|
|
1791
1791
|
}[] | undefined;
|
|
1792
1792
|
readonly events?: readonly {
|
|
@@ -1798,26 +1798,22 @@ declare const filterToProto: (a: {
|
|
|
1798
1798
|
readonly x3: bigint;
|
|
1799
1799
|
} | undefined;
|
|
1800
1800
|
}[] | undefined;
|
|
1801
|
-
readonly id?: number | undefined;
|
|
1802
1801
|
readonly transactionStatus?: TransactionStatusFilter$1 | undefined;
|
|
1803
|
-
readonly includeReceipt?: boolean | undefined;
|
|
1804
|
-
readonly includeMessages?: boolean | undefined;
|
|
1805
1802
|
readonly address?: {
|
|
1806
1803
|
readonly x0: bigint;
|
|
1807
1804
|
readonly x1: bigint;
|
|
1808
1805
|
readonly x2: bigint;
|
|
1809
1806
|
readonly x3: bigint;
|
|
1810
1807
|
} | undefined;
|
|
1808
|
+
readonly id?: number | undefined;
|
|
1811
1809
|
readonly strict?: boolean | undefined;
|
|
1812
1810
|
readonly includeTransaction?: boolean | undefined;
|
|
1811
|
+
readonly includeReceipt?: boolean | undefined;
|
|
1812
|
+
readonly includeMessages?: boolean | undefined;
|
|
1813
1813
|
readonly includeSiblings?: boolean | undefined;
|
|
1814
1814
|
}[] | undefined;
|
|
1815
1815
|
readonly messages?: readonly {
|
|
1816
|
-
readonly id?: number | undefined;
|
|
1817
1816
|
readonly transactionStatus?: TransactionStatusFilter$1 | undefined;
|
|
1818
|
-
readonly includeReceipt?: boolean | undefined;
|
|
1819
|
-
readonly includeEvents?: boolean | undefined;
|
|
1820
|
-
readonly includeTransaction?: boolean | undefined;
|
|
1821
1817
|
readonly fromAddress?: {
|
|
1822
1818
|
readonly x0: bigint;
|
|
1823
1819
|
readonly x1: bigint;
|
|
@@ -1830,80 +1826,84 @@ declare const filterToProto: (a: {
|
|
|
1830
1826
|
readonly x2: bigint;
|
|
1831
1827
|
readonly x3: bigint;
|
|
1832
1828
|
} | undefined;
|
|
1829
|
+
readonly id?: number | undefined;
|
|
1830
|
+
readonly includeTransaction?: boolean | undefined;
|
|
1831
|
+
readonly includeReceipt?: boolean | undefined;
|
|
1832
|
+
readonly includeEvents?: boolean | undefined;
|
|
1833
1833
|
}[] | undefined;
|
|
1834
1834
|
readonly storageDiffs?: readonly {
|
|
1835
|
-
readonly id?: number | undefined;
|
|
1836
1835
|
readonly contractAddress?: {
|
|
1837
1836
|
readonly x0: bigint;
|
|
1838
1837
|
readonly x1: bigint;
|
|
1839
1838
|
readonly x2: bigint;
|
|
1840
1839
|
readonly x3: bigint;
|
|
1841
1840
|
} | undefined;
|
|
1841
|
+
readonly id?: number | undefined;
|
|
1842
1842
|
}[] | undefined;
|
|
1843
1843
|
readonly contractChanges?: readonly {
|
|
1844
|
-
readonly id?: number | undefined;
|
|
1845
1844
|
readonly change?: {
|
|
1846
|
-
readonly $case: "declaredClass";
|
|
1847
1845
|
readonly declaredClass: {};
|
|
1846
|
+
readonly $case: "declaredClass";
|
|
1848
1847
|
} | {
|
|
1849
|
-
readonly $case: "replacedClass";
|
|
1850
1848
|
readonly replacedClass: {};
|
|
1849
|
+
readonly $case: "replacedClass";
|
|
1851
1850
|
} | {
|
|
1852
|
-
readonly $case: "deployedContract";
|
|
1853
1851
|
readonly deployedContract: {};
|
|
1852
|
+
readonly $case: "deployedContract";
|
|
1854
1853
|
} | undefined;
|
|
1854
|
+
readonly id?: number | undefined;
|
|
1855
1855
|
}[] | undefined;
|
|
1856
1856
|
readonly nonceUpdates?: readonly {
|
|
1857
|
-
readonly id?: number | undefined;
|
|
1858
1857
|
readonly contractAddress?: {
|
|
1859
1858
|
readonly x0: bigint;
|
|
1860
1859
|
readonly x1: bigint;
|
|
1861
1860
|
readonly x2: bigint;
|
|
1862
1861
|
readonly x3: bigint;
|
|
1863
1862
|
} | undefined;
|
|
1863
|
+
readonly id?: number | undefined;
|
|
1864
1864
|
}[] | undefined;
|
|
1865
1865
|
};
|
|
1866
1866
|
declare const filterFromProto: (i: {
|
|
1867
1867
|
readonly header?: HeaderFilter$1 | undefined;
|
|
1868
1868
|
readonly transactions?: readonly {
|
|
1869
|
-
readonly id?: number | undefined;
|
|
1870
1869
|
readonly transactionStatus?: TransactionStatusFilter$1 | undefined;
|
|
1870
|
+
readonly id?: number | undefined;
|
|
1871
1871
|
readonly includeReceipt?: boolean | undefined;
|
|
1872
1872
|
readonly includeMessages?: boolean | undefined;
|
|
1873
1873
|
readonly includeEvents?: boolean | undefined;
|
|
1874
1874
|
readonly transactionType?: {
|
|
1875
|
-
readonly $case: "invokeV0";
|
|
1876
1875
|
readonly invokeV0: {};
|
|
1876
|
+
readonly $case: "invokeV0";
|
|
1877
1877
|
} | {
|
|
1878
|
-
readonly $case: "invokeV1";
|
|
1879
1878
|
readonly invokeV1: {};
|
|
1879
|
+
readonly $case: "invokeV1";
|
|
1880
1880
|
} | {
|
|
1881
|
-
readonly $case: "invokeV3";
|
|
1882
1881
|
readonly invokeV3: {};
|
|
1882
|
+
readonly $case: "invokeV3";
|
|
1883
1883
|
} | {
|
|
1884
|
-
readonly $case: "deploy";
|
|
1885
1884
|
readonly deploy: {};
|
|
1885
|
+
readonly $case: "deploy";
|
|
1886
1886
|
} | {
|
|
1887
|
-
readonly $case: "declareV0";
|
|
1888
1887
|
readonly declareV0: {};
|
|
1888
|
+
readonly $case: "declareV0";
|
|
1889
1889
|
} | {
|
|
1890
|
-
readonly $case: "declareV1";
|
|
1891
1890
|
readonly declareV1: {};
|
|
1891
|
+
readonly $case: "declareV1";
|
|
1892
1892
|
} | {
|
|
1893
|
-
readonly $case: "declareV2";
|
|
1894
1893
|
readonly declareV2: {};
|
|
1894
|
+
readonly $case: "declareV2";
|
|
1895
1895
|
} | {
|
|
1896
|
-
readonly $case: "declareV3";
|
|
1897
1896
|
readonly declareV3: {};
|
|
1897
|
+
readonly $case: "declareV3";
|
|
1898
1898
|
} | {
|
|
1899
|
-
readonly $case: "l1Handler";
|
|
1900
1899
|
readonly l1Handler: {};
|
|
1900
|
+
readonly $case: "l1Handler";
|
|
1901
1901
|
} | {
|
|
1902
|
-
readonly $case: "deployAccountV1";
|
|
1903
1902
|
readonly deployAccountV1: {};
|
|
1903
|
+
readonly $case: "deployAccountV1";
|
|
1904
1904
|
} | {
|
|
1905
|
-
readonly $case: "deployAccountV3";
|
|
1906
1905
|
readonly deployAccountV3: {};
|
|
1906
|
+
readonly $case: "deployAccountV3";
|
|
1907
1907
|
} | undefined;
|
|
1908
1908
|
}[] | undefined;
|
|
1909
1909
|
readonly events?: readonly {
|
|
@@ -1915,26 +1915,22 @@ declare const filterFromProto: (i: {
|
|
|
1915
1915
|
readonly x3: bigint;
|
|
1916
1916
|
} | undefined;
|
|
1917
1917
|
}[] | undefined;
|
|
1918
|
-
readonly id?: number | undefined;
|
|
1919
1918
|
readonly transactionStatus?: TransactionStatusFilter$1 | undefined;
|
|
1920
|
-
readonly includeReceipt?: boolean | undefined;
|
|
1921
|
-
readonly includeMessages?: boolean | undefined;
|
|
1922
1919
|
readonly address?: {
|
|
1923
1920
|
readonly x0: bigint;
|
|
1924
1921
|
readonly x1: bigint;
|
|
1925
1922
|
readonly x2: bigint;
|
|
1926
1923
|
readonly x3: bigint;
|
|
1927
1924
|
} | undefined;
|
|
1925
|
+
readonly id?: number | undefined;
|
|
1928
1926
|
readonly strict?: boolean | undefined;
|
|
1929
1927
|
readonly includeTransaction?: boolean | undefined;
|
|
1928
|
+
readonly includeReceipt?: boolean | undefined;
|
|
1929
|
+
readonly includeMessages?: boolean | undefined;
|
|
1930
1930
|
readonly includeSiblings?: boolean | undefined;
|
|
1931
1931
|
}[] | undefined;
|
|
1932
1932
|
readonly messages?: readonly {
|
|
1933
|
-
readonly id?: number | undefined;
|
|
1934
1933
|
readonly transactionStatus?: TransactionStatusFilter$1 | undefined;
|
|
1935
|
-
readonly includeReceipt?: boolean | undefined;
|
|
1936
|
-
readonly includeEvents?: boolean | undefined;
|
|
1937
|
-
readonly includeTransaction?: boolean | undefined;
|
|
1938
1934
|
readonly fromAddress?: {
|
|
1939
1935
|
readonly x0: bigint;
|
|
1940
1936
|
readonly x1: bigint;
|
|
@@ -1947,121 +1943,125 @@ declare const filterFromProto: (i: {
|
|
|
1947
1943
|
readonly x2: bigint;
|
|
1948
1944
|
readonly x3: bigint;
|
|
1949
1945
|
} | undefined;
|
|
1946
|
+
readonly id?: number | undefined;
|
|
1947
|
+
readonly includeTransaction?: boolean | undefined;
|
|
1948
|
+
readonly includeReceipt?: boolean | undefined;
|
|
1949
|
+
readonly includeEvents?: boolean | undefined;
|
|
1950
1950
|
}[] | undefined;
|
|
1951
1951
|
readonly storageDiffs?: readonly {
|
|
1952
|
-
readonly id?: number | undefined;
|
|
1953
1952
|
readonly contractAddress?: {
|
|
1954
1953
|
readonly x0: bigint;
|
|
1955
1954
|
readonly x1: bigint;
|
|
1956
1955
|
readonly x2: bigint;
|
|
1957
1956
|
readonly x3: bigint;
|
|
1958
1957
|
} | undefined;
|
|
1958
|
+
readonly id?: number | undefined;
|
|
1959
1959
|
}[] | undefined;
|
|
1960
1960
|
readonly contractChanges?: readonly {
|
|
1961
|
-
readonly id?: number | undefined;
|
|
1962
1961
|
readonly change?: {
|
|
1963
|
-
readonly $case: "declaredClass";
|
|
1964
1962
|
readonly declaredClass: {};
|
|
1963
|
+
readonly $case: "declaredClass";
|
|
1965
1964
|
} | {
|
|
1966
|
-
readonly $case: "replacedClass";
|
|
1967
1965
|
readonly replacedClass: {};
|
|
1966
|
+
readonly $case: "replacedClass";
|
|
1968
1967
|
} | {
|
|
1969
|
-
readonly $case: "deployedContract";
|
|
1970
1968
|
readonly deployedContract: {};
|
|
1969
|
+
readonly $case: "deployedContract";
|
|
1971
1970
|
} | undefined;
|
|
1971
|
+
readonly id?: number | undefined;
|
|
1972
1972
|
}[] | undefined;
|
|
1973
1973
|
readonly nonceUpdates?: readonly {
|
|
1974
|
-
readonly id?: number | undefined;
|
|
1975
1974
|
readonly contractAddress?: {
|
|
1976
1975
|
readonly x0: bigint;
|
|
1977
1976
|
readonly x1: bigint;
|
|
1978
1977
|
readonly x2: bigint;
|
|
1979
1978
|
readonly x3: bigint;
|
|
1980
1979
|
} | undefined;
|
|
1980
|
+
readonly id?: number | undefined;
|
|
1981
1981
|
}[] | undefined;
|
|
1982
1982
|
}, overrideOptions?: _effect_schema_AST.ParseOptions) => {
|
|
1983
|
-
readonly header?: "
|
|
1983
|
+
readonly header?: "unknown" | "always" | "on_data" | "on_data_or_on_new_block" | undefined;
|
|
1984
1984
|
readonly transactions?: readonly {
|
|
1985
|
+
readonly transactionStatus?: "succeeded" | "reverted" | "unknown" | "all" | undefined;
|
|
1985
1986
|
readonly id?: number | undefined;
|
|
1986
|
-
readonly transactionStatus?: "unknown" | "succeeded" | "reverted" | "all" | undefined;
|
|
1987
1987
|
readonly includeReceipt?: boolean | undefined;
|
|
1988
1988
|
readonly includeMessages?: boolean | undefined;
|
|
1989
1989
|
readonly includeEvents?: boolean | undefined;
|
|
1990
1990
|
readonly transactionType?: {
|
|
1991
|
-
readonly _tag: "invokeV0";
|
|
1992
1991
|
readonly invokeV0: {};
|
|
1992
|
+
readonly _tag: "invokeV0";
|
|
1993
1993
|
} | {
|
|
1994
|
-
readonly _tag: "invokeV1";
|
|
1995
1994
|
readonly invokeV1: {};
|
|
1995
|
+
readonly _tag: "invokeV1";
|
|
1996
1996
|
} | {
|
|
1997
|
-
readonly _tag: "invokeV3";
|
|
1998
1997
|
readonly invokeV3: {};
|
|
1998
|
+
readonly _tag: "invokeV3";
|
|
1999
1999
|
} | {
|
|
2000
|
-
readonly _tag: "deploy";
|
|
2001
2000
|
readonly deploy: {};
|
|
2001
|
+
readonly _tag: "deploy";
|
|
2002
2002
|
} | {
|
|
2003
|
-
readonly _tag: "declareV0";
|
|
2004
2003
|
readonly declareV0: {};
|
|
2004
|
+
readonly _tag: "declareV0";
|
|
2005
2005
|
} | {
|
|
2006
|
-
readonly _tag: "declareV1";
|
|
2007
2006
|
readonly declareV1: {};
|
|
2007
|
+
readonly _tag: "declareV1";
|
|
2008
2008
|
} | {
|
|
2009
|
-
readonly _tag: "declareV2";
|
|
2010
2009
|
readonly declareV2: {};
|
|
2010
|
+
readonly _tag: "declareV2";
|
|
2011
2011
|
} | {
|
|
2012
|
-
readonly _tag: "declareV3";
|
|
2013
2012
|
readonly declareV3: {};
|
|
2013
|
+
readonly _tag: "declareV3";
|
|
2014
2014
|
} | {
|
|
2015
|
-
readonly _tag: "l1Handler";
|
|
2016
2015
|
readonly l1Handler: {};
|
|
2016
|
+
readonly _tag: "l1Handler";
|
|
2017
2017
|
} | {
|
|
2018
|
-
readonly _tag: "deployAccountV1";
|
|
2019
2018
|
readonly deployAccountV1: {};
|
|
2019
|
+
readonly _tag: "deployAccountV1";
|
|
2020
2020
|
} | {
|
|
2021
|
-
readonly _tag: "deployAccountV3";
|
|
2022
2021
|
readonly deployAccountV3: {};
|
|
2022
|
+
readonly _tag: "deployAccountV3";
|
|
2023
2023
|
} | undefined;
|
|
2024
2024
|
}[] | undefined;
|
|
2025
2025
|
readonly events?: readonly {
|
|
2026
2026
|
readonly keys?: readonly (`0x${string}` | null)[] | undefined;
|
|
2027
|
-
readonly
|
|
2028
|
-
readonly transactionStatus?: "unknown" | "succeeded" | "reverted" | "all" | undefined;
|
|
2029
|
-
readonly includeReceipt?: boolean | undefined;
|
|
2030
|
-
readonly includeMessages?: boolean | undefined;
|
|
2027
|
+
readonly transactionStatus?: "succeeded" | "reverted" | "unknown" | "all" | undefined;
|
|
2031
2028
|
readonly address?: `0x${string}` | undefined;
|
|
2029
|
+
readonly id?: number | undefined;
|
|
2032
2030
|
readonly strict?: boolean | undefined;
|
|
2033
2031
|
readonly includeTransaction?: boolean | undefined;
|
|
2032
|
+
readonly includeReceipt?: boolean | undefined;
|
|
2033
|
+
readonly includeMessages?: boolean | undefined;
|
|
2034
2034
|
readonly includeSiblings?: boolean | undefined;
|
|
2035
2035
|
}[] | undefined;
|
|
2036
2036
|
readonly messages?: readonly {
|
|
2037
|
+
readonly transactionStatus?: "succeeded" | "reverted" | "unknown" | "all" | undefined;
|
|
2038
|
+
readonly fromAddress?: `0x${string}` | undefined;
|
|
2039
|
+
readonly toAddress?: `0x${string}` | undefined;
|
|
2037
2040
|
readonly id?: number | undefined;
|
|
2038
|
-
readonly
|
|
2041
|
+
readonly includeTransaction?: boolean | undefined;
|
|
2039
2042
|
readonly includeReceipt?: boolean | undefined;
|
|
2040
2043
|
readonly includeEvents?: boolean | undefined;
|
|
2041
|
-
readonly includeTransaction?: boolean | undefined;
|
|
2042
|
-
readonly fromAddress?: `0x${string}` | undefined;
|
|
2043
|
-
readonly toAddress?: `0x${string}` | undefined;
|
|
2044
2044
|
}[] | undefined;
|
|
2045
2045
|
readonly storageDiffs?: readonly {
|
|
2046
|
-
readonly id?: number | undefined;
|
|
2047
2046
|
readonly contractAddress?: `0x${string}` | undefined;
|
|
2047
|
+
readonly id?: number | undefined;
|
|
2048
2048
|
}[] | undefined;
|
|
2049
2049
|
readonly contractChanges?: readonly {
|
|
2050
|
-
readonly id?: number | undefined;
|
|
2051
2050
|
readonly change?: {
|
|
2052
|
-
readonly _tag: "declaredClass";
|
|
2053
2051
|
readonly declaredClass: {};
|
|
2052
|
+
readonly _tag: "declaredClass";
|
|
2054
2053
|
} | {
|
|
2055
|
-
readonly _tag: "replacedClass";
|
|
2056
2054
|
readonly replacedClass: {};
|
|
2055
|
+
readonly _tag: "replacedClass";
|
|
2057
2056
|
} | {
|
|
2058
|
-
readonly _tag: "deployedContract";
|
|
2059
2057
|
readonly deployedContract: {};
|
|
2058
|
+
readonly _tag: "deployedContract";
|
|
2060
2059
|
} | undefined;
|
|
2060
|
+
readonly id?: number | undefined;
|
|
2061
2061
|
}[] | undefined;
|
|
2062
2062
|
readonly nonceUpdates?: readonly {
|
|
2063
|
-
readonly id?: number | undefined;
|
|
2064
2063
|
readonly contractAddress?: `0x${string}` | undefined;
|
|
2064
|
+
readonly id?: number | undefined;
|
|
2065
2065
|
}[] | undefined;
|
|
2066
2066
|
};
|
|
2067
2067
|
declare const FilterFromBytes: Schema.transform<Schema.Schema<Uint8Array, Uint8Array, never>, Schema.Struct<{
|
|
@@ -2190,173 +2190,173 @@ declare const FilterFromBytes: Schema.transform<Schema.Schema<Uint8Array, Uint8A
|
|
|
2190
2190
|
}>>>;
|
|
2191
2191
|
}>>;
|
|
2192
2192
|
declare const filterToBytes: (a: {
|
|
2193
|
-
readonly header?: "
|
|
2193
|
+
readonly header?: "unknown" | "always" | "on_data" | "on_data_or_on_new_block" | undefined;
|
|
2194
2194
|
readonly transactions?: readonly {
|
|
2195
|
+
readonly transactionStatus?: "succeeded" | "reverted" | "unknown" | "all" | undefined;
|
|
2195
2196
|
readonly id?: number | undefined;
|
|
2196
|
-
readonly transactionStatus?: "unknown" | "succeeded" | "reverted" | "all" | undefined;
|
|
2197
2197
|
readonly includeReceipt?: boolean | undefined;
|
|
2198
2198
|
readonly includeMessages?: boolean | undefined;
|
|
2199
2199
|
readonly includeEvents?: boolean | undefined;
|
|
2200
2200
|
readonly transactionType?: {
|
|
2201
|
-
readonly _tag: "invokeV0";
|
|
2202
2201
|
readonly invokeV0: {};
|
|
2202
|
+
readonly _tag: "invokeV0";
|
|
2203
2203
|
} | {
|
|
2204
|
-
readonly _tag: "invokeV1";
|
|
2205
2204
|
readonly invokeV1: {};
|
|
2205
|
+
readonly _tag: "invokeV1";
|
|
2206
2206
|
} | {
|
|
2207
|
-
readonly _tag: "invokeV3";
|
|
2208
2207
|
readonly invokeV3: {};
|
|
2208
|
+
readonly _tag: "invokeV3";
|
|
2209
2209
|
} | {
|
|
2210
|
-
readonly _tag: "deploy";
|
|
2211
2210
|
readonly deploy: {};
|
|
2211
|
+
readonly _tag: "deploy";
|
|
2212
2212
|
} | {
|
|
2213
|
-
readonly _tag: "declareV0";
|
|
2214
2213
|
readonly declareV0: {};
|
|
2214
|
+
readonly _tag: "declareV0";
|
|
2215
2215
|
} | {
|
|
2216
|
-
readonly _tag: "declareV1";
|
|
2217
2216
|
readonly declareV1: {};
|
|
2217
|
+
readonly _tag: "declareV1";
|
|
2218
2218
|
} | {
|
|
2219
|
-
readonly _tag: "declareV2";
|
|
2220
2219
|
readonly declareV2: {};
|
|
2220
|
+
readonly _tag: "declareV2";
|
|
2221
2221
|
} | {
|
|
2222
|
-
readonly _tag: "declareV3";
|
|
2223
2222
|
readonly declareV3: {};
|
|
2223
|
+
readonly _tag: "declareV3";
|
|
2224
2224
|
} | {
|
|
2225
|
-
readonly _tag: "l1Handler";
|
|
2226
2225
|
readonly l1Handler: {};
|
|
2226
|
+
readonly _tag: "l1Handler";
|
|
2227
2227
|
} | {
|
|
2228
|
-
readonly _tag: "deployAccountV1";
|
|
2229
2228
|
readonly deployAccountV1: {};
|
|
2229
|
+
readonly _tag: "deployAccountV1";
|
|
2230
2230
|
} | {
|
|
2231
|
-
readonly _tag: "deployAccountV3";
|
|
2232
2231
|
readonly deployAccountV3: {};
|
|
2232
|
+
readonly _tag: "deployAccountV3";
|
|
2233
2233
|
} | undefined;
|
|
2234
2234
|
}[] | undefined;
|
|
2235
2235
|
readonly events?: readonly {
|
|
2236
2236
|
readonly keys?: readonly (`0x${string}` | null)[] | undefined;
|
|
2237
|
-
readonly
|
|
2238
|
-
readonly transactionStatus?: "unknown" | "succeeded" | "reverted" | "all" | undefined;
|
|
2239
|
-
readonly includeReceipt?: boolean | undefined;
|
|
2240
|
-
readonly includeMessages?: boolean | undefined;
|
|
2237
|
+
readonly transactionStatus?: "succeeded" | "reverted" | "unknown" | "all" | undefined;
|
|
2241
2238
|
readonly address?: `0x${string}` | undefined;
|
|
2239
|
+
readonly id?: number | undefined;
|
|
2242
2240
|
readonly strict?: boolean | undefined;
|
|
2243
2241
|
readonly includeTransaction?: boolean | undefined;
|
|
2242
|
+
readonly includeReceipt?: boolean | undefined;
|
|
2243
|
+
readonly includeMessages?: boolean | undefined;
|
|
2244
2244
|
readonly includeSiblings?: boolean | undefined;
|
|
2245
2245
|
}[] | undefined;
|
|
2246
2246
|
readonly messages?: readonly {
|
|
2247
|
+
readonly transactionStatus?: "succeeded" | "reverted" | "unknown" | "all" | undefined;
|
|
2248
|
+
readonly fromAddress?: `0x${string}` | undefined;
|
|
2249
|
+
readonly toAddress?: `0x${string}` | undefined;
|
|
2247
2250
|
readonly id?: number | undefined;
|
|
2248
|
-
readonly
|
|
2251
|
+
readonly includeTransaction?: boolean | undefined;
|
|
2249
2252
|
readonly includeReceipt?: boolean | undefined;
|
|
2250
2253
|
readonly includeEvents?: boolean | undefined;
|
|
2251
|
-
readonly includeTransaction?: boolean | undefined;
|
|
2252
|
-
readonly fromAddress?: `0x${string}` | undefined;
|
|
2253
|
-
readonly toAddress?: `0x${string}` | undefined;
|
|
2254
2254
|
}[] | undefined;
|
|
2255
2255
|
readonly storageDiffs?: readonly {
|
|
2256
|
-
readonly id?: number | undefined;
|
|
2257
2256
|
readonly contractAddress?: `0x${string}` | undefined;
|
|
2257
|
+
readonly id?: number | undefined;
|
|
2258
2258
|
}[] | undefined;
|
|
2259
2259
|
readonly contractChanges?: readonly {
|
|
2260
|
-
readonly id?: number | undefined;
|
|
2261
2260
|
readonly change?: {
|
|
2262
|
-
readonly _tag: "declaredClass";
|
|
2263
2261
|
readonly declaredClass: {};
|
|
2262
|
+
readonly _tag: "declaredClass";
|
|
2264
2263
|
} | {
|
|
2265
|
-
readonly _tag: "replacedClass";
|
|
2266
2264
|
readonly replacedClass: {};
|
|
2265
|
+
readonly _tag: "replacedClass";
|
|
2267
2266
|
} | {
|
|
2268
|
-
readonly _tag: "deployedContract";
|
|
2269
2267
|
readonly deployedContract: {};
|
|
2268
|
+
readonly _tag: "deployedContract";
|
|
2270
2269
|
} | undefined;
|
|
2270
|
+
readonly id?: number | undefined;
|
|
2271
2271
|
}[] | undefined;
|
|
2272
2272
|
readonly nonceUpdates?: readonly {
|
|
2273
|
-
readonly id?: number | undefined;
|
|
2274
2273
|
readonly contractAddress?: `0x${string}` | undefined;
|
|
2274
|
+
readonly id?: number | undefined;
|
|
2275
2275
|
}[] | undefined;
|
|
2276
2276
|
}, overrideOptions?: _effect_schema_AST.ParseOptions) => Uint8Array;
|
|
2277
2277
|
declare const filterFromBytes: (i: Uint8Array, overrideOptions?: _effect_schema_AST.ParseOptions) => {
|
|
2278
|
-
readonly header?: "
|
|
2278
|
+
readonly header?: "unknown" | "always" | "on_data" | "on_data_or_on_new_block" | undefined;
|
|
2279
2279
|
readonly transactions?: readonly {
|
|
2280
|
+
readonly transactionStatus?: "succeeded" | "reverted" | "unknown" | "all" | undefined;
|
|
2280
2281
|
readonly id?: number | undefined;
|
|
2281
|
-
readonly transactionStatus?: "unknown" | "succeeded" | "reverted" | "all" | undefined;
|
|
2282
2282
|
readonly includeReceipt?: boolean | undefined;
|
|
2283
2283
|
readonly includeMessages?: boolean | undefined;
|
|
2284
2284
|
readonly includeEvents?: boolean | undefined;
|
|
2285
2285
|
readonly transactionType?: {
|
|
2286
|
-
readonly _tag: "invokeV0";
|
|
2287
2286
|
readonly invokeV0: {};
|
|
2287
|
+
readonly _tag: "invokeV0";
|
|
2288
2288
|
} | {
|
|
2289
|
-
readonly _tag: "invokeV1";
|
|
2290
2289
|
readonly invokeV1: {};
|
|
2290
|
+
readonly _tag: "invokeV1";
|
|
2291
2291
|
} | {
|
|
2292
|
-
readonly _tag: "invokeV3";
|
|
2293
2292
|
readonly invokeV3: {};
|
|
2293
|
+
readonly _tag: "invokeV3";
|
|
2294
2294
|
} | {
|
|
2295
|
-
readonly _tag: "deploy";
|
|
2296
2295
|
readonly deploy: {};
|
|
2296
|
+
readonly _tag: "deploy";
|
|
2297
2297
|
} | {
|
|
2298
|
-
readonly _tag: "declareV0";
|
|
2299
2298
|
readonly declareV0: {};
|
|
2299
|
+
readonly _tag: "declareV0";
|
|
2300
2300
|
} | {
|
|
2301
|
-
readonly _tag: "declareV1";
|
|
2302
2301
|
readonly declareV1: {};
|
|
2302
|
+
readonly _tag: "declareV1";
|
|
2303
2303
|
} | {
|
|
2304
|
-
readonly _tag: "declareV2";
|
|
2305
2304
|
readonly declareV2: {};
|
|
2305
|
+
readonly _tag: "declareV2";
|
|
2306
2306
|
} | {
|
|
2307
|
-
readonly _tag: "declareV3";
|
|
2308
2307
|
readonly declareV3: {};
|
|
2308
|
+
readonly _tag: "declareV3";
|
|
2309
2309
|
} | {
|
|
2310
|
-
readonly _tag: "l1Handler";
|
|
2311
2310
|
readonly l1Handler: {};
|
|
2311
|
+
readonly _tag: "l1Handler";
|
|
2312
2312
|
} | {
|
|
2313
|
-
readonly _tag: "deployAccountV1";
|
|
2314
2313
|
readonly deployAccountV1: {};
|
|
2314
|
+
readonly _tag: "deployAccountV1";
|
|
2315
2315
|
} | {
|
|
2316
|
-
readonly _tag: "deployAccountV3";
|
|
2317
2316
|
readonly deployAccountV3: {};
|
|
2317
|
+
readonly _tag: "deployAccountV3";
|
|
2318
2318
|
} | undefined;
|
|
2319
2319
|
}[] | undefined;
|
|
2320
2320
|
readonly events?: readonly {
|
|
2321
2321
|
readonly keys?: readonly (`0x${string}` | null)[] | undefined;
|
|
2322
|
-
readonly
|
|
2323
|
-
readonly transactionStatus?: "unknown" | "succeeded" | "reverted" | "all" | undefined;
|
|
2324
|
-
readonly includeReceipt?: boolean | undefined;
|
|
2325
|
-
readonly includeMessages?: boolean | undefined;
|
|
2322
|
+
readonly transactionStatus?: "succeeded" | "reverted" | "unknown" | "all" | undefined;
|
|
2326
2323
|
readonly address?: `0x${string}` | undefined;
|
|
2324
|
+
readonly id?: number | undefined;
|
|
2327
2325
|
readonly strict?: boolean | undefined;
|
|
2328
2326
|
readonly includeTransaction?: boolean | undefined;
|
|
2327
|
+
readonly includeReceipt?: boolean | undefined;
|
|
2328
|
+
readonly includeMessages?: boolean | undefined;
|
|
2329
2329
|
readonly includeSiblings?: boolean | undefined;
|
|
2330
2330
|
}[] | undefined;
|
|
2331
2331
|
readonly messages?: readonly {
|
|
2332
|
+
readonly transactionStatus?: "succeeded" | "reverted" | "unknown" | "all" | undefined;
|
|
2333
|
+
readonly fromAddress?: `0x${string}` | undefined;
|
|
2334
|
+
readonly toAddress?: `0x${string}` | undefined;
|
|
2332
2335
|
readonly id?: number | undefined;
|
|
2333
|
-
readonly
|
|
2336
|
+
readonly includeTransaction?: boolean | undefined;
|
|
2334
2337
|
readonly includeReceipt?: boolean | undefined;
|
|
2335
2338
|
readonly includeEvents?: boolean | undefined;
|
|
2336
|
-
readonly includeTransaction?: boolean | undefined;
|
|
2337
|
-
readonly fromAddress?: `0x${string}` | undefined;
|
|
2338
|
-
readonly toAddress?: `0x${string}` | undefined;
|
|
2339
2339
|
}[] | undefined;
|
|
2340
2340
|
readonly storageDiffs?: readonly {
|
|
2341
|
-
readonly id?: number | undefined;
|
|
2342
2341
|
readonly contractAddress?: `0x${string}` | undefined;
|
|
2342
|
+
readonly id?: number | undefined;
|
|
2343
2343
|
}[] | undefined;
|
|
2344
2344
|
readonly contractChanges?: readonly {
|
|
2345
|
-
readonly id?: number | undefined;
|
|
2346
2345
|
readonly change?: {
|
|
2347
|
-
readonly _tag: "declaredClass";
|
|
2348
2346
|
readonly declaredClass: {};
|
|
2347
|
+
readonly _tag: "declaredClass";
|
|
2349
2348
|
} | {
|
|
2350
|
-
readonly _tag: "replacedClass";
|
|
2351
2349
|
readonly replacedClass: {};
|
|
2350
|
+
readonly _tag: "replacedClass";
|
|
2352
2351
|
} | {
|
|
2353
|
-
readonly _tag: "deployedContract";
|
|
2354
2352
|
readonly deployedContract: {};
|
|
2353
|
+
readonly _tag: "deployedContract";
|
|
2355
2354
|
} | undefined;
|
|
2355
|
+
readonly id?: number | undefined;
|
|
2356
2356
|
}[] | undefined;
|
|
2357
2357
|
readonly nonceUpdates?: readonly {
|
|
2358
|
-
readonly id?: number | undefined;
|
|
2359
2358
|
readonly contractAddress?: `0x${string}` | undefined;
|
|
2359
|
+
readonly id?: number | undefined;
|
|
2360
2360
|
}[] | undefined;
|
|
2361
2361
|
};
|
|
2362
2362
|
declare function mergeFilter(a: Filter, b: Filter): Filter;
|
|
@@ -5453,88 +5453,88 @@ declare module "abi-wan-kanabi" {
|
|
|
5453
5453
|
}
|
|
5454
5454
|
}
|
|
5455
5455
|
declare const StarknetStream: StreamConfig<{
|
|
5456
|
-
readonly header?: "
|
|
5456
|
+
readonly header?: "unknown" | "always" | "on_data" | "on_data_or_on_new_block" | undefined;
|
|
5457
5457
|
readonly transactions?: readonly {
|
|
5458
|
+
readonly transactionStatus?: "succeeded" | "reverted" | "unknown" | "all" | undefined;
|
|
5458
5459
|
readonly id?: number | undefined;
|
|
5459
|
-
readonly transactionStatus?: "unknown" | "succeeded" | "reverted" | "all" | undefined;
|
|
5460
5460
|
readonly includeReceipt?: boolean | undefined;
|
|
5461
5461
|
readonly includeMessages?: boolean | undefined;
|
|
5462
5462
|
readonly includeEvents?: boolean | undefined;
|
|
5463
5463
|
readonly transactionType?: {
|
|
5464
|
-
readonly _tag: "invokeV0";
|
|
5465
5464
|
readonly invokeV0: {};
|
|
5465
|
+
readonly _tag: "invokeV0";
|
|
5466
5466
|
} | {
|
|
5467
|
-
readonly _tag: "invokeV1";
|
|
5468
5467
|
readonly invokeV1: {};
|
|
5468
|
+
readonly _tag: "invokeV1";
|
|
5469
5469
|
} | {
|
|
5470
|
-
readonly _tag: "invokeV3";
|
|
5471
5470
|
readonly invokeV3: {};
|
|
5471
|
+
readonly _tag: "invokeV3";
|
|
5472
5472
|
} | {
|
|
5473
|
-
readonly _tag: "deploy";
|
|
5474
5473
|
readonly deploy: {};
|
|
5474
|
+
readonly _tag: "deploy";
|
|
5475
5475
|
} | {
|
|
5476
|
-
readonly _tag: "declareV0";
|
|
5477
5476
|
readonly declareV0: {};
|
|
5477
|
+
readonly _tag: "declareV0";
|
|
5478
5478
|
} | {
|
|
5479
|
-
readonly _tag: "declareV1";
|
|
5480
5479
|
readonly declareV1: {};
|
|
5480
|
+
readonly _tag: "declareV1";
|
|
5481
5481
|
} | {
|
|
5482
|
-
readonly _tag: "declareV2";
|
|
5483
5482
|
readonly declareV2: {};
|
|
5483
|
+
readonly _tag: "declareV2";
|
|
5484
5484
|
} | {
|
|
5485
|
-
readonly _tag: "declareV3";
|
|
5486
5485
|
readonly declareV3: {};
|
|
5486
|
+
readonly _tag: "declareV3";
|
|
5487
5487
|
} | {
|
|
5488
|
-
readonly _tag: "l1Handler";
|
|
5489
5488
|
readonly l1Handler: {};
|
|
5489
|
+
readonly _tag: "l1Handler";
|
|
5490
5490
|
} | {
|
|
5491
|
-
readonly _tag: "deployAccountV1";
|
|
5492
5491
|
readonly deployAccountV1: {};
|
|
5492
|
+
readonly _tag: "deployAccountV1";
|
|
5493
5493
|
} | {
|
|
5494
|
-
readonly _tag: "deployAccountV3";
|
|
5495
5494
|
readonly deployAccountV3: {};
|
|
5495
|
+
readonly _tag: "deployAccountV3";
|
|
5496
5496
|
} | undefined;
|
|
5497
5497
|
}[] | undefined;
|
|
5498
5498
|
readonly events?: readonly {
|
|
5499
5499
|
readonly keys?: readonly (`0x${string}` | null)[] | undefined;
|
|
5500
|
-
readonly
|
|
5501
|
-
readonly transactionStatus?: "unknown" | "succeeded" | "reverted" | "all" | undefined;
|
|
5502
|
-
readonly includeReceipt?: boolean | undefined;
|
|
5503
|
-
readonly includeMessages?: boolean | undefined;
|
|
5500
|
+
readonly transactionStatus?: "succeeded" | "reverted" | "unknown" | "all" | undefined;
|
|
5504
5501
|
readonly address?: `0x${string}` | undefined;
|
|
5502
|
+
readonly id?: number | undefined;
|
|
5505
5503
|
readonly strict?: boolean | undefined;
|
|
5506
5504
|
readonly includeTransaction?: boolean | undefined;
|
|
5505
|
+
readonly includeReceipt?: boolean | undefined;
|
|
5506
|
+
readonly includeMessages?: boolean | undefined;
|
|
5507
5507
|
readonly includeSiblings?: boolean | undefined;
|
|
5508
5508
|
}[] | undefined;
|
|
5509
5509
|
readonly messages?: readonly {
|
|
5510
|
+
readonly transactionStatus?: "succeeded" | "reverted" | "unknown" | "all" | undefined;
|
|
5511
|
+
readonly fromAddress?: `0x${string}` | undefined;
|
|
5512
|
+
readonly toAddress?: `0x${string}` | undefined;
|
|
5510
5513
|
readonly id?: number | undefined;
|
|
5511
|
-
readonly
|
|
5514
|
+
readonly includeTransaction?: boolean | undefined;
|
|
5512
5515
|
readonly includeReceipt?: boolean | undefined;
|
|
5513
5516
|
readonly includeEvents?: boolean | undefined;
|
|
5514
|
-
readonly includeTransaction?: boolean | undefined;
|
|
5515
|
-
readonly fromAddress?: `0x${string}` | undefined;
|
|
5516
|
-
readonly toAddress?: `0x${string}` | undefined;
|
|
5517
5517
|
}[] | undefined;
|
|
5518
5518
|
readonly storageDiffs?: readonly {
|
|
5519
|
-
readonly id?: number | undefined;
|
|
5520
5519
|
readonly contractAddress?: `0x${string}` | undefined;
|
|
5520
|
+
readonly id?: number | undefined;
|
|
5521
5521
|
}[] | undefined;
|
|
5522
5522
|
readonly contractChanges?: readonly {
|
|
5523
|
-
readonly id?: number | undefined;
|
|
5524
5523
|
readonly change?: {
|
|
5525
|
-
readonly _tag: "declaredClass";
|
|
5526
5524
|
readonly declaredClass: {};
|
|
5525
|
+
readonly _tag: "declaredClass";
|
|
5527
5526
|
} | {
|
|
5528
|
-
readonly _tag: "replacedClass";
|
|
5529
5527
|
readonly replacedClass: {};
|
|
5528
|
+
readonly _tag: "replacedClass";
|
|
5530
5529
|
} | {
|
|
5531
|
-
readonly _tag: "deployedContract";
|
|
5532
5530
|
readonly deployedContract: {};
|
|
5531
|
+
readonly _tag: "deployedContract";
|
|
5533
5532
|
} | undefined;
|
|
5533
|
+
readonly id?: number | undefined;
|
|
5534
5534
|
}[] | undefined;
|
|
5535
5535
|
readonly nonceUpdates?: readonly {
|
|
5536
|
-
readonly id?: number | undefined;
|
|
5537
5536
|
readonly contractAddress?: `0x${string}` | undefined;
|
|
5537
|
+
readonly id?: number | undefined;
|
|
5538
5538
|
}[] | undefined;
|
|
5539
5539
|
}, {
|
|
5540
5540
|
readonly header?: {
|
|
@@ -5553,26 +5553,25 @@ declare const StarknetStream: StreamConfig<{
|
|
|
5553
5553
|
readonly priceInFri?: `0x${string}` | undefined;
|
|
5554
5554
|
readonly priceInWei?: `0x${string}` | undefined;
|
|
5555
5555
|
} | undefined;
|
|
5556
|
-
readonly l1DataAvailabilityMode?: "
|
|
5556
|
+
readonly l1DataAvailabilityMode?: "calldata" | "blob" | "unknown" | undefined;
|
|
5557
5557
|
} | undefined;
|
|
5558
5558
|
readonly transactions: readonly {
|
|
5559
5559
|
readonly filterIds?: readonly number[] | undefined;
|
|
5560
5560
|
readonly meta?: {
|
|
5561
|
-
readonly transactionStatus?: "unknown" | "succeeded" | "reverted" | undefined;
|
|
5562
5561
|
readonly transactionIndex?: number | undefined;
|
|
5563
5562
|
readonly transactionHash?: `0x${string}` | undefined;
|
|
5563
|
+
readonly transactionStatus?: "succeeded" | "reverted" | "unknown" | undefined;
|
|
5564
5564
|
} | undefined;
|
|
5565
5565
|
readonly transaction?: {
|
|
5566
|
-
readonly _tag: "invokeV0";
|
|
5567
5566
|
readonly invokeV0: {
|
|
5568
|
-
readonly contractAddress?: `0x${string}` | undefined;
|
|
5569
5567
|
readonly maxFee?: `0x${string}` | undefined;
|
|
5570
5568
|
readonly signature?: readonly `0x${string}`[] | undefined;
|
|
5569
|
+
readonly contractAddress?: `0x${string}` | undefined;
|
|
5571
5570
|
readonly entryPointSelector?: `0x${string}` | undefined;
|
|
5572
5571
|
readonly calldata?: readonly `0x${string}`[] | undefined;
|
|
5573
5572
|
};
|
|
5573
|
+
readonly _tag: "invokeV0";
|
|
5574
5574
|
} | {
|
|
5575
|
-
readonly _tag: "invokeV1";
|
|
5576
5575
|
readonly invokeV1: {
|
|
5577
5576
|
readonly maxFee?: `0x${string}` | undefined;
|
|
5578
5577
|
readonly signature?: readonly `0x${string}`[] | undefined;
|
|
@@ -5580,8 +5579,8 @@ declare const StarknetStream: StreamConfig<{
|
|
|
5580
5579
|
readonly senderAddress?: `0x${string}` | undefined;
|
|
5581
5580
|
readonly nonce?: `0x${string}` | undefined;
|
|
5582
5581
|
};
|
|
5582
|
+
readonly _tag: "invokeV1";
|
|
5583
5583
|
} | {
|
|
5584
|
-
readonly _tag: "invokeV3";
|
|
5585
5584
|
readonly invokeV3: {
|
|
5586
5585
|
readonly signature?: readonly `0x${string}`[] | undefined;
|
|
5587
5586
|
readonly calldata?: readonly `0x${string}`[] | undefined;
|
|
@@ -5603,31 +5602,31 @@ declare const StarknetStream: StreamConfig<{
|
|
|
5603
5602
|
readonly nonceDataAvailabilityMode?: "unknown" | "l1" | "l2" | undefined;
|
|
5604
5603
|
readonly feeDataAvailabilityMode?: "unknown" | "l1" | "l2" | undefined;
|
|
5605
5604
|
};
|
|
5605
|
+
readonly _tag: "invokeV3";
|
|
5606
5606
|
} | {
|
|
5607
|
-
readonly _tag: "l1Handler";
|
|
5608
5607
|
readonly l1Handler: {
|
|
5609
5608
|
readonly contractAddress?: `0x${string}` | undefined;
|
|
5610
5609
|
readonly entryPointSelector?: `0x${string}` | undefined;
|
|
5611
5610
|
readonly calldata?: readonly `0x${string}`[] | undefined;
|
|
5612
5611
|
readonly nonce?: bigint | undefined;
|
|
5613
5612
|
};
|
|
5613
|
+
readonly _tag: "l1Handler";
|
|
5614
5614
|
} | {
|
|
5615
|
-
readonly _tag: "deploy";
|
|
5616
5615
|
readonly deploy: {
|
|
5617
5616
|
readonly contractAddressSalt?: `0x${string}` | undefined;
|
|
5618
5617
|
readonly constructorCalldata?: readonly `0x${string}`[] | undefined;
|
|
5619
5618
|
readonly classHash?: `0x${string}` | undefined;
|
|
5620
5619
|
};
|
|
5620
|
+
readonly _tag: "deploy";
|
|
5621
5621
|
} | {
|
|
5622
|
-
readonly _tag: "declareV0";
|
|
5623
5622
|
readonly declareV0: {
|
|
5624
5623
|
readonly maxFee?: `0x${string}` | undefined;
|
|
5625
5624
|
readonly signature?: readonly `0x${string}`[] | undefined;
|
|
5626
5625
|
readonly senderAddress?: `0x${string}` | undefined;
|
|
5627
5626
|
readonly classHash?: `0x${string}` | undefined;
|
|
5628
5627
|
};
|
|
5628
|
+
readonly _tag: "declareV0";
|
|
5629
5629
|
} | {
|
|
5630
|
-
readonly _tag: "declareV1";
|
|
5631
5630
|
readonly declareV1: {
|
|
5632
5631
|
readonly maxFee?: `0x${string}` | undefined;
|
|
5633
5632
|
readonly signature?: readonly `0x${string}`[] | undefined;
|
|
@@ -5635,8 +5634,8 @@ declare const StarknetStream: StreamConfig<{
|
|
|
5635
5634
|
readonly nonce?: `0x${string}` | undefined;
|
|
5636
5635
|
readonly classHash?: `0x${string}` | undefined;
|
|
5637
5636
|
};
|
|
5637
|
+
readonly _tag: "declareV1";
|
|
5638
5638
|
} | {
|
|
5639
|
-
readonly _tag: "declareV2";
|
|
5640
5639
|
readonly declareV2: {
|
|
5641
5640
|
readonly maxFee?: `0x${string}` | undefined;
|
|
5642
5641
|
readonly signature?: readonly `0x${string}`[] | undefined;
|
|
@@ -5645,8 +5644,8 @@ declare const StarknetStream: StreamConfig<{
|
|
|
5645
5644
|
readonly classHash?: `0x${string}` | undefined;
|
|
5646
5645
|
readonly compiledClassHash?: `0x${string}` | undefined;
|
|
5647
5646
|
};
|
|
5647
|
+
readonly _tag: "declareV2";
|
|
5648
5648
|
} | {
|
|
5649
|
-
readonly _tag: "declareV3";
|
|
5650
5649
|
readonly declareV3: {
|
|
5651
5650
|
readonly signature?: readonly `0x${string}`[] | undefined;
|
|
5652
5651
|
readonly senderAddress?: `0x${string}` | undefined;
|
|
@@ -5669,8 +5668,8 @@ declare const StarknetStream: StreamConfig<{
|
|
|
5669
5668
|
readonly classHash?: `0x${string}` | undefined;
|
|
5670
5669
|
readonly compiledClassHash?: `0x${string}` | undefined;
|
|
5671
5670
|
};
|
|
5671
|
+
readonly _tag: "declareV3";
|
|
5672
5672
|
} | {
|
|
5673
|
-
readonly _tag: "deployAccountV1";
|
|
5674
5673
|
readonly deployAccountV1: {
|
|
5675
5674
|
readonly maxFee?: `0x${string}` | undefined;
|
|
5676
5675
|
readonly signature?: readonly `0x${string}`[] | undefined;
|
|
@@ -5679,8 +5678,8 @@ declare const StarknetStream: StreamConfig<{
|
|
|
5679
5678
|
readonly constructorCalldata?: readonly `0x${string}`[] | undefined;
|
|
5680
5679
|
readonly classHash?: `0x${string}` | undefined;
|
|
5681
5680
|
};
|
|
5681
|
+
readonly _tag: "deployAccountV1";
|
|
5682
5682
|
} | {
|
|
5683
|
-
readonly _tag: "deployAccountV3";
|
|
5684
5683
|
readonly deployAccountV3: {
|
|
5685
5684
|
readonly signature?: readonly `0x${string}`[] | undefined;
|
|
5686
5685
|
readonly nonce?: `0x${string}` | undefined;
|
|
@@ -5702,63 +5701,9 @@ declare const StarknetStream: StreamConfig<{
|
|
|
5702
5701
|
readonly constructorCalldata?: readonly `0x${string}`[] | undefined;
|
|
5703
5702
|
readonly classHash?: `0x${string}` | undefined;
|
|
5704
5703
|
};
|
|
5704
|
+
readonly _tag: "deployAccountV3";
|
|
5705
5705
|
} | undefined;
|
|
5706
5706
|
}[];
|
|
5707
|
-
readonly events: readonly {
|
|
5708
|
-
readonly keys?: readonly `0x${string}`[] | undefined;
|
|
5709
|
-
readonly transactionStatus?: "unknown" | "succeeded" | "reverted" | undefined;
|
|
5710
|
-
readonly address?: `0x${string}` | undefined;
|
|
5711
|
-
readonly filterIds?: readonly number[] | undefined;
|
|
5712
|
-
readonly transactionIndex?: number | undefined;
|
|
5713
|
-
readonly transactionHash?: `0x${string}` | undefined;
|
|
5714
|
-
readonly data?: readonly `0x${string}`[] | undefined;
|
|
5715
|
-
readonly eventIndex?: number | undefined;
|
|
5716
|
-
}[];
|
|
5717
|
-
readonly messages: readonly {
|
|
5718
|
-
readonly transactionStatus?: "unknown" | "succeeded" | "reverted" | undefined;
|
|
5719
|
-
readonly fromAddress?: `0x${string}` | undefined;
|
|
5720
|
-
readonly toAddress?: `0x${string}` | undefined;
|
|
5721
|
-
readonly filterIds?: readonly number[] | undefined;
|
|
5722
|
-
readonly transactionIndex?: number | undefined;
|
|
5723
|
-
readonly transactionHash?: `0x${string}` | undefined;
|
|
5724
|
-
readonly payload?: readonly `0x${string}`[] | undefined;
|
|
5725
|
-
readonly messageIndex?: number | undefined;
|
|
5726
|
-
}[];
|
|
5727
|
-
readonly storageDiffs: readonly {
|
|
5728
|
-
readonly contractAddress?: `0x${string}` | undefined;
|
|
5729
|
-
readonly filterIds?: readonly number[] | undefined;
|
|
5730
|
-
readonly storageEntries?: readonly {
|
|
5731
|
-
readonly key?: `0x${string}` | undefined;
|
|
5732
|
-
readonly value?: `0x${string}` | undefined;
|
|
5733
|
-
}[] | undefined;
|
|
5734
|
-
}[];
|
|
5735
|
-
readonly contractChanges: readonly {
|
|
5736
|
-
readonly change?: {
|
|
5737
|
-
readonly _tag: "declaredClass";
|
|
5738
|
-
readonly declaredClass: {
|
|
5739
|
-
readonly classHash?: `0x${string}` | undefined;
|
|
5740
|
-
readonly compiledClassHash?: `0x${string}` | undefined;
|
|
5741
|
-
};
|
|
5742
|
-
} | {
|
|
5743
|
-
readonly _tag: "replacedClass";
|
|
5744
|
-
readonly replacedClass: {
|
|
5745
|
-
readonly contractAddress?: `0x${string}` | undefined;
|
|
5746
|
-
readonly classHash?: `0x${string}` | undefined;
|
|
5747
|
-
};
|
|
5748
|
-
} | {
|
|
5749
|
-
readonly _tag: "deployedContract";
|
|
5750
|
-
readonly deployedContract: {
|
|
5751
|
-
readonly contractAddress?: `0x${string}` | undefined;
|
|
5752
|
-
readonly classHash?: `0x${string}` | undefined;
|
|
5753
|
-
};
|
|
5754
|
-
} | undefined;
|
|
5755
|
-
readonly filterIds?: readonly number[] | undefined;
|
|
5756
|
-
}[];
|
|
5757
|
-
readonly nonceUpdates: readonly {
|
|
5758
|
-
readonly contractAddress?: `0x${string}` | undefined;
|
|
5759
|
-
readonly filterIds?: readonly number[] | undefined;
|
|
5760
|
-
readonly nonce?: `0x${string}` | undefined;
|
|
5761
|
-
}[];
|
|
5762
5707
|
readonly receipts: readonly {
|
|
5763
5708
|
readonly filterIds?: readonly number[] | undefined;
|
|
5764
5709
|
readonly meta?: {
|
|
@@ -5797,28 +5742,83 @@ declare const StarknetStream: StreamConfig<{
|
|
|
5797
5742
|
} | undefined;
|
|
5798
5743
|
} | undefined;
|
|
5799
5744
|
readonly receipt?: {
|
|
5800
|
-
readonly _tag: "invoke";
|
|
5801
5745
|
readonly invoke: {};
|
|
5746
|
+
readonly _tag: "invoke";
|
|
5802
5747
|
} | {
|
|
5803
|
-
readonly _tag: "l1Handler";
|
|
5804
5748
|
readonly l1Handler: {
|
|
5805
5749
|
readonly messageHash?: Uint8Array | undefined;
|
|
5806
5750
|
};
|
|
5751
|
+
readonly _tag: "l1Handler";
|
|
5807
5752
|
} | {
|
|
5808
|
-
readonly _tag: "declare";
|
|
5809
5753
|
readonly declare: {};
|
|
5754
|
+
readonly _tag: "declare";
|
|
5810
5755
|
} | {
|
|
5811
|
-
readonly _tag: "deploy";
|
|
5812
5756
|
readonly deploy: {
|
|
5813
5757
|
readonly contractAddress?: `0x${string}` | undefined;
|
|
5814
5758
|
};
|
|
5759
|
+
readonly _tag: "deploy";
|
|
5815
5760
|
} | {
|
|
5816
|
-
readonly _tag: "deployAccount";
|
|
5817
5761
|
readonly deployAccount: {
|
|
5818
5762
|
readonly contractAddress?: `0x${string}` | undefined;
|
|
5819
5763
|
};
|
|
5764
|
+
readonly _tag: "deployAccount";
|
|
5765
|
+
} | undefined;
|
|
5766
|
+
}[];
|
|
5767
|
+
readonly events: readonly {
|
|
5768
|
+
readonly keys?: readonly `0x${string}`[] | undefined;
|
|
5769
|
+
readonly filterIds?: readonly number[] | undefined;
|
|
5770
|
+
readonly transactionIndex?: number | undefined;
|
|
5771
|
+
readonly transactionHash?: `0x${string}` | undefined;
|
|
5772
|
+
readonly transactionStatus?: "succeeded" | "reverted" | "unknown" | undefined;
|
|
5773
|
+
readonly address?: `0x${string}` | undefined;
|
|
5774
|
+
readonly data?: readonly `0x${string}`[] | undefined;
|
|
5775
|
+
readonly eventIndex?: number | undefined;
|
|
5776
|
+
}[];
|
|
5777
|
+
readonly messages: readonly {
|
|
5778
|
+
readonly filterIds?: readonly number[] | undefined;
|
|
5779
|
+
readonly transactionIndex?: number | undefined;
|
|
5780
|
+
readonly transactionHash?: `0x${string}` | undefined;
|
|
5781
|
+
readonly transactionStatus?: "succeeded" | "reverted" | "unknown" | undefined;
|
|
5782
|
+
readonly fromAddress?: `0x${string}` | undefined;
|
|
5783
|
+
readonly toAddress?: `0x${string}` | undefined;
|
|
5784
|
+
readonly payload?: readonly `0x${string}`[] | undefined;
|
|
5785
|
+
readonly messageIndex?: number | undefined;
|
|
5786
|
+
}[];
|
|
5787
|
+
readonly storageDiffs: readonly {
|
|
5788
|
+
readonly filterIds?: readonly number[] | undefined;
|
|
5789
|
+
readonly contractAddress?: `0x${string}` | undefined;
|
|
5790
|
+
readonly storageEntries?: readonly {
|
|
5791
|
+
readonly key?: `0x${string}` | undefined;
|
|
5792
|
+
readonly value?: `0x${string}` | undefined;
|
|
5793
|
+
}[] | undefined;
|
|
5794
|
+
}[];
|
|
5795
|
+
readonly contractChanges: readonly {
|
|
5796
|
+
readonly filterIds?: readonly number[] | undefined;
|
|
5797
|
+
readonly change?: {
|
|
5798
|
+
readonly declaredClass: {
|
|
5799
|
+
readonly classHash?: `0x${string}` | undefined;
|
|
5800
|
+
readonly compiledClassHash?: `0x${string}` | undefined;
|
|
5801
|
+
};
|
|
5802
|
+
readonly _tag: "declaredClass";
|
|
5803
|
+
} | {
|
|
5804
|
+
readonly replacedClass: {
|
|
5805
|
+
readonly contractAddress?: `0x${string}` | undefined;
|
|
5806
|
+
readonly classHash?: `0x${string}` | undefined;
|
|
5807
|
+
};
|
|
5808
|
+
readonly _tag: "replacedClass";
|
|
5809
|
+
} | {
|
|
5810
|
+
readonly deployedContract: {
|
|
5811
|
+
readonly contractAddress?: `0x${string}` | undefined;
|
|
5812
|
+
readonly classHash?: `0x${string}` | undefined;
|
|
5813
|
+
};
|
|
5814
|
+
readonly _tag: "deployedContract";
|
|
5820
5815
|
} | undefined;
|
|
5821
5816
|
}[];
|
|
5817
|
+
readonly nonceUpdates: readonly {
|
|
5818
|
+
readonly filterIds?: readonly number[] | undefined;
|
|
5819
|
+
readonly contractAddress?: `0x${string}` | undefined;
|
|
5820
|
+
readonly nonce?: `0x${string}` | undefined;
|
|
5821
|
+
}[];
|
|
5822
5822
|
}>;
|
|
5823
5823
|
|
|
5824
5824
|
export { Block, BlockFromBytes, BlockHeader, ComputationResources, ContractChange, ContractChangeFilter, DataAvailabilityMode, DataAvailabilityResources, DeclareTransactionReceipt, DeclareTransactionV0, DeclareTransactionV1, DeclareTransactionV2, DeclareTransactionV3, DeclareV0TransactionFilter, DeclareV1TransactionFilter, DeclareV2TransactionFilter, DeclareV3TransactionFilter, DeclaredClass, DeclaredClassFilter, type DecodeEventArgs, DecodeEventError, type DecodeEventReturn, type DecodedEvent, DeployAccountTransactionReceipt, DeployAccountTransactionV1, DeployAccountTransactionV3, DeployAccountV1TransactionFilter, DeployAccountV3TransactionFilter, DeployTransaction, DeployTransactionFilter, DeployTransactionReceipt, DeployedContract, DeployedContractFilter, Event, EventFilter, ExecutionResources, ExecutionReverted, ExecutionSucceeded, FeePayment, FieldElement$1 as FieldElement, Filter, FilterFromBytes, HeaderFilter, InvokeTransactionReceipt, InvokeTransactionV0, InvokeTransactionV0Filter, InvokeTransactionV1, InvokeTransactionV1Filter, InvokeTransactionV3, InvokeTransactionV3Filter, Key, L1DataAvailabilityMode, L1HandlerTransaction, L1HandlerTransactionFilter, L1HandlerTransactionReceipt, MessageToL1, MessageToL1Filter, NonceUpdate, NonceUpdateFilter, PriceUnit, ReplacedClass, ReplacedClassFilter, ResourceBounds, ResourceBoundsMapping, ResourcePrice, StarknetStream, StorageDiff, StorageDiffFilter, StorageEntry, Transaction, TransactionFilter, TransactionMeta, TransactionReceipt, TransactionReceiptMeta, TransactionStatus, TransactionStatusFilter, U128, decodeEvent, filterFromBytes, filterFromProto, filterToBytes, filterToProto, getBigIntSelector, getEventSelector, getReceipt, getSelector, getTransaction, mergeFilter, index as proto };
|