@usdu-finance/usdu-core 0.0.4 → 0.0.5
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.mts +889 -1
- package/dist/index.d.ts +889 -1
- package/dist/index.js +505 -0
- package/dist/index.mjs +504 -0
- package/exports/abis/aragon/AragonDao.ts +500 -0
- package/exports/address.config.ts +1 -0
- package/exports/address.types.ts +1 -0
- package/exports/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1687,6 +1687,7 @@ type ChainAddressMainnet = {
|
|
|
1687
1687
|
chainId: typeof mainnet.id;
|
|
1688
1688
|
chainSelector: string;
|
|
1689
1689
|
curator: Address;
|
|
1690
|
+
aragonDao: Address;
|
|
1690
1691
|
aragonMultiSig: Address;
|
|
1691
1692
|
aragonVetoMultiSig: Address;
|
|
1692
1693
|
aragonDelayedAction: Address;
|
|
@@ -1769,6 +1770,893 @@ type ChainAddressMap = {
|
|
|
1769
1770
|
|
|
1770
1771
|
declare const ADDRESS: ChainAddressMap;
|
|
1771
1772
|
|
|
1773
|
+
declare const AragonDao_ABI: readonly [{
|
|
1774
|
+
readonly inputs: readonly [];
|
|
1775
|
+
readonly stateMutability: "nonpayable";
|
|
1776
|
+
readonly type: "constructor";
|
|
1777
|
+
}, {
|
|
1778
|
+
readonly inputs: readonly [{
|
|
1779
|
+
readonly internalType: "uint256";
|
|
1780
|
+
readonly name: "index";
|
|
1781
|
+
readonly type: "uint256";
|
|
1782
|
+
}];
|
|
1783
|
+
readonly name: "ActionFailed";
|
|
1784
|
+
readonly type: "error";
|
|
1785
|
+
}, {
|
|
1786
|
+
readonly inputs: readonly [];
|
|
1787
|
+
readonly name: "AlreadyInitialized";
|
|
1788
|
+
readonly type: "error";
|
|
1789
|
+
}, {
|
|
1790
|
+
readonly inputs: readonly [];
|
|
1791
|
+
readonly name: "AnyAddressDisallowedForWhoAndWhere";
|
|
1792
|
+
readonly type: "error";
|
|
1793
|
+
}, {
|
|
1794
|
+
readonly inputs: readonly [{
|
|
1795
|
+
readonly internalType: "contract IPermissionCondition";
|
|
1796
|
+
readonly name: "condition";
|
|
1797
|
+
readonly type: "address";
|
|
1798
|
+
}];
|
|
1799
|
+
readonly name: "ConditionInterfaceNotSupported";
|
|
1800
|
+
readonly type: "error";
|
|
1801
|
+
}, {
|
|
1802
|
+
readonly inputs: readonly [{
|
|
1803
|
+
readonly internalType: "contract IPermissionCondition";
|
|
1804
|
+
readonly name: "condition";
|
|
1805
|
+
readonly type: "address";
|
|
1806
|
+
}];
|
|
1807
|
+
readonly name: "ConditionNotAContract";
|
|
1808
|
+
readonly type: "error";
|
|
1809
|
+
}, {
|
|
1810
|
+
readonly inputs: readonly [];
|
|
1811
|
+
readonly name: "FunctionRemoved";
|
|
1812
|
+
readonly type: "error";
|
|
1813
|
+
}, {
|
|
1814
|
+
readonly inputs: readonly [];
|
|
1815
|
+
readonly name: "GrantWithConditionNotSupported";
|
|
1816
|
+
readonly type: "error";
|
|
1817
|
+
}, {
|
|
1818
|
+
readonly inputs: readonly [];
|
|
1819
|
+
readonly name: "InsufficientGas";
|
|
1820
|
+
readonly type: "error";
|
|
1821
|
+
}, {
|
|
1822
|
+
readonly inputs: readonly [{
|
|
1823
|
+
readonly internalType: "uint256";
|
|
1824
|
+
readonly name: "expected";
|
|
1825
|
+
readonly type: "uint256";
|
|
1826
|
+
}, {
|
|
1827
|
+
readonly internalType: "uint256";
|
|
1828
|
+
readonly name: "actual";
|
|
1829
|
+
readonly type: "uint256";
|
|
1830
|
+
}];
|
|
1831
|
+
readonly name: "NativeTokenDepositAmountMismatch";
|
|
1832
|
+
readonly type: "error";
|
|
1833
|
+
}, {
|
|
1834
|
+
readonly inputs: readonly [{
|
|
1835
|
+
readonly internalType: "address";
|
|
1836
|
+
readonly name: "where";
|
|
1837
|
+
readonly type: "address";
|
|
1838
|
+
}, {
|
|
1839
|
+
readonly internalType: "address";
|
|
1840
|
+
readonly name: "who";
|
|
1841
|
+
readonly type: "address";
|
|
1842
|
+
}, {
|
|
1843
|
+
readonly internalType: "bytes32";
|
|
1844
|
+
readonly name: "permissionId";
|
|
1845
|
+
readonly type: "bytes32";
|
|
1846
|
+
}, {
|
|
1847
|
+
readonly internalType: "address";
|
|
1848
|
+
readonly name: "currentCondition";
|
|
1849
|
+
readonly type: "address";
|
|
1850
|
+
}, {
|
|
1851
|
+
readonly internalType: "address";
|
|
1852
|
+
readonly name: "newCondition";
|
|
1853
|
+
readonly type: "address";
|
|
1854
|
+
}];
|
|
1855
|
+
readonly name: "PermissionAlreadyGrantedForDifferentCondition";
|
|
1856
|
+
readonly type: "error";
|
|
1857
|
+
}, {
|
|
1858
|
+
readonly inputs: readonly [];
|
|
1859
|
+
readonly name: "PermissionsForAnyAddressDisallowed";
|
|
1860
|
+
readonly type: "error";
|
|
1861
|
+
}, {
|
|
1862
|
+
readonly inputs: readonly [{
|
|
1863
|
+
readonly internalType: "uint8[3]";
|
|
1864
|
+
readonly name: "protocolVersion";
|
|
1865
|
+
readonly type: "uint8[3]";
|
|
1866
|
+
}];
|
|
1867
|
+
readonly name: "ProtocolVersionUpgradeNotSupported";
|
|
1868
|
+
readonly type: "error";
|
|
1869
|
+
}, {
|
|
1870
|
+
readonly inputs: readonly [];
|
|
1871
|
+
readonly name: "ReentrantCall";
|
|
1872
|
+
readonly type: "error";
|
|
1873
|
+
}, {
|
|
1874
|
+
readonly inputs: readonly [];
|
|
1875
|
+
readonly name: "TooManyActions";
|
|
1876
|
+
readonly type: "error";
|
|
1877
|
+
}, {
|
|
1878
|
+
readonly inputs: readonly [{
|
|
1879
|
+
readonly internalType: "address";
|
|
1880
|
+
readonly name: "where";
|
|
1881
|
+
readonly type: "address";
|
|
1882
|
+
}, {
|
|
1883
|
+
readonly internalType: "address";
|
|
1884
|
+
readonly name: "who";
|
|
1885
|
+
readonly type: "address";
|
|
1886
|
+
}, {
|
|
1887
|
+
readonly internalType: "bytes32";
|
|
1888
|
+
readonly name: "permissionId";
|
|
1889
|
+
readonly type: "bytes32";
|
|
1890
|
+
}];
|
|
1891
|
+
readonly name: "Unauthorized";
|
|
1892
|
+
readonly type: "error";
|
|
1893
|
+
}, {
|
|
1894
|
+
readonly inputs: readonly [{
|
|
1895
|
+
readonly internalType: "bytes4";
|
|
1896
|
+
readonly name: "callbackSelector";
|
|
1897
|
+
readonly type: "bytes4";
|
|
1898
|
+
}, {
|
|
1899
|
+
readonly internalType: "bytes4";
|
|
1900
|
+
readonly name: "magicNumber";
|
|
1901
|
+
readonly type: "bytes4";
|
|
1902
|
+
}];
|
|
1903
|
+
readonly name: "UnknownCallback";
|
|
1904
|
+
readonly type: "error";
|
|
1905
|
+
}, {
|
|
1906
|
+
readonly inputs: readonly [];
|
|
1907
|
+
readonly name: "ZeroAmount";
|
|
1908
|
+
readonly type: "error";
|
|
1909
|
+
}, {
|
|
1910
|
+
readonly anonymous: false;
|
|
1911
|
+
readonly inputs: readonly [{
|
|
1912
|
+
readonly indexed: false;
|
|
1913
|
+
readonly internalType: "address";
|
|
1914
|
+
readonly name: "previousAdmin";
|
|
1915
|
+
readonly type: "address";
|
|
1916
|
+
}, {
|
|
1917
|
+
readonly indexed: false;
|
|
1918
|
+
readonly internalType: "address";
|
|
1919
|
+
readonly name: "newAdmin";
|
|
1920
|
+
readonly type: "address";
|
|
1921
|
+
}];
|
|
1922
|
+
readonly name: "AdminChanged";
|
|
1923
|
+
readonly type: "event";
|
|
1924
|
+
}, {
|
|
1925
|
+
readonly anonymous: false;
|
|
1926
|
+
readonly inputs: readonly [{
|
|
1927
|
+
readonly indexed: true;
|
|
1928
|
+
readonly internalType: "address";
|
|
1929
|
+
readonly name: "beacon";
|
|
1930
|
+
readonly type: "address";
|
|
1931
|
+
}];
|
|
1932
|
+
readonly name: "BeaconUpgraded";
|
|
1933
|
+
readonly type: "event";
|
|
1934
|
+
}, {
|
|
1935
|
+
readonly anonymous: false;
|
|
1936
|
+
readonly inputs: readonly [{
|
|
1937
|
+
readonly indexed: false;
|
|
1938
|
+
readonly internalType: "address";
|
|
1939
|
+
readonly name: "sender";
|
|
1940
|
+
readonly type: "address";
|
|
1941
|
+
}, {
|
|
1942
|
+
readonly indexed: true;
|
|
1943
|
+
readonly internalType: "bytes4";
|
|
1944
|
+
readonly name: "sig";
|
|
1945
|
+
readonly type: "bytes4";
|
|
1946
|
+
}, {
|
|
1947
|
+
readonly indexed: false;
|
|
1948
|
+
readonly internalType: "bytes";
|
|
1949
|
+
readonly name: "data";
|
|
1950
|
+
readonly type: "bytes";
|
|
1951
|
+
}];
|
|
1952
|
+
readonly name: "CallbackReceived";
|
|
1953
|
+
readonly type: "event";
|
|
1954
|
+
}, {
|
|
1955
|
+
readonly anonymous: false;
|
|
1956
|
+
readonly inputs: readonly [{
|
|
1957
|
+
readonly indexed: true;
|
|
1958
|
+
readonly internalType: "address";
|
|
1959
|
+
readonly name: "sender";
|
|
1960
|
+
readonly type: "address";
|
|
1961
|
+
}, {
|
|
1962
|
+
readonly indexed: true;
|
|
1963
|
+
readonly internalType: "address";
|
|
1964
|
+
readonly name: "token";
|
|
1965
|
+
readonly type: "address";
|
|
1966
|
+
}, {
|
|
1967
|
+
readonly indexed: false;
|
|
1968
|
+
readonly internalType: "uint256";
|
|
1969
|
+
readonly name: "amount";
|
|
1970
|
+
readonly type: "uint256";
|
|
1971
|
+
}, {
|
|
1972
|
+
readonly indexed: false;
|
|
1973
|
+
readonly internalType: "string";
|
|
1974
|
+
readonly name: "_reference";
|
|
1975
|
+
readonly type: "string";
|
|
1976
|
+
}];
|
|
1977
|
+
readonly name: "Deposited";
|
|
1978
|
+
readonly type: "event";
|
|
1979
|
+
}, {
|
|
1980
|
+
readonly anonymous: false;
|
|
1981
|
+
readonly inputs: readonly [{
|
|
1982
|
+
readonly indexed: true;
|
|
1983
|
+
readonly internalType: "address";
|
|
1984
|
+
readonly name: "actor";
|
|
1985
|
+
readonly type: "address";
|
|
1986
|
+
}, {
|
|
1987
|
+
readonly indexed: false;
|
|
1988
|
+
readonly internalType: "bytes32";
|
|
1989
|
+
readonly name: "callId";
|
|
1990
|
+
readonly type: "bytes32";
|
|
1991
|
+
}, {
|
|
1992
|
+
readonly components: readonly [{
|
|
1993
|
+
readonly internalType: "address";
|
|
1994
|
+
readonly name: "to";
|
|
1995
|
+
readonly type: "address";
|
|
1996
|
+
}, {
|
|
1997
|
+
readonly internalType: "uint256";
|
|
1998
|
+
readonly name: "value";
|
|
1999
|
+
readonly type: "uint256";
|
|
2000
|
+
}, {
|
|
2001
|
+
readonly internalType: "bytes";
|
|
2002
|
+
readonly name: "data";
|
|
2003
|
+
readonly type: "bytes";
|
|
2004
|
+
}];
|
|
2005
|
+
readonly indexed: false;
|
|
2006
|
+
readonly internalType: "struct Action[]";
|
|
2007
|
+
readonly name: "actions";
|
|
2008
|
+
readonly type: "tuple[]";
|
|
2009
|
+
}, {
|
|
2010
|
+
readonly indexed: false;
|
|
2011
|
+
readonly internalType: "uint256";
|
|
2012
|
+
readonly name: "allowFailureMap";
|
|
2013
|
+
readonly type: "uint256";
|
|
2014
|
+
}, {
|
|
2015
|
+
readonly indexed: false;
|
|
2016
|
+
readonly internalType: "uint256";
|
|
2017
|
+
readonly name: "failureMap";
|
|
2018
|
+
readonly type: "uint256";
|
|
2019
|
+
}, {
|
|
2020
|
+
readonly indexed: false;
|
|
2021
|
+
readonly internalType: "bytes[]";
|
|
2022
|
+
readonly name: "execResults";
|
|
2023
|
+
readonly type: "bytes[]";
|
|
2024
|
+
}];
|
|
2025
|
+
readonly name: "Executed";
|
|
2026
|
+
readonly type: "event";
|
|
2027
|
+
}, {
|
|
2028
|
+
readonly anonymous: false;
|
|
2029
|
+
readonly inputs: readonly [{
|
|
2030
|
+
readonly indexed: true;
|
|
2031
|
+
readonly internalType: "bytes32";
|
|
2032
|
+
readonly name: "permissionId";
|
|
2033
|
+
readonly type: "bytes32";
|
|
2034
|
+
}, {
|
|
2035
|
+
readonly indexed: true;
|
|
2036
|
+
readonly internalType: "address";
|
|
2037
|
+
readonly name: "here";
|
|
2038
|
+
readonly type: "address";
|
|
2039
|
+
}, {
|
|
2040
|
+
readonly indexed: false;
|
|
2041
|
+
readonly internalType: "address";
|
|
2042
|
+
readonly name: "where";
|
|
2043
|
+
readonly type: "address";
|
|
2044
|
+
}, {
|
|
2045
|
+
readonly indexed: true;
|
|
2046
|
+
readonly internalType: "address";
|
|
2047
|
+
readonly name: "who";
|
|
2048
|
+
readonly type: "address";
|
|
2049
|
+
}, {
|
|
2050
|
+
readonly indexed: false;
|
|
2051
|
+
readonly internalType: "address";
|
|
2052
|
+
readonly name: "condition";
|
|
2053
|
+
readonly type: "address";
|
|
2054
|
+
}];
|
|
2055
|
+
readonly name: "Granted";
|
|
2056
|
+
readonly type: "event";
|
|
2057
|
+
}, {
|
|
2058
|
+
readonly anonymous: false;
|
|
2059
|
+
readonly inputs: readonly [{
|
|
2060
|
+
readonly indexed: false;
|
|
2061
|
+
readonly internalType: "uint8";
|
|
2062
|
+
readonly name: "version";
|
|
2063
|
+
readonly type: "uint8";
|
|
2064
|
+
}];
|
|
2065
|
+
readonly name: "Initialized";
|
|
2066
|
+
readonly type: "event";
|
|
2067
|
+
}, {
|
|
2068
|
+
readonly anonymous: false;
|
|
2069
|
+
readonly inputs: readonly [{
|
|
2070
|
+
readonly indexed: false;
|
|
2071
|
+
readonly internalType: "bytes";
|
|
2072
|
+
readonly name: "metadata";
|
|
2073
|
+
readonly type: "bytes";
|
|
2074
|
+
}];
|
|
2075
|
+
readonly name: "MetadataSet";
|
|
2076
|
+
readonly type: "event";
|
|
2077
|
+
}, {
|
|
2078
|
+
readonly anonymous: false;
|
|
2079
|
+
readonly inputs: readonly [{
|
|
2080
|
+
readonly indexed: false;
|
|
2081
|
+
readonly internalType: "address";
|
|
2082
|
+
readonly name: "sender";
|
|
2083
|
+
readonly type: "address";
|
|
2084
|
+
}, {
|
|
2085
|
+
readonly indexed: false;
|
|
2086
|
+
readonly internalType: "uint256";
|
|
2087
|
+
readonly name: "amount";
|
|
2088
|
+
readonly type: "uint256";
|
|
2089
|
+
}];
|
|
2090
|
+
readonly name: "NativeTokenDeposited";
|
|
2091
|
+
readonly type: "event";
|
|
2092
|
+
}, {
|
|
2093
|
+
readonly anonymous: false;
|
|
2094
|
+
readonly inputs: readonly [{
|
|
2095
|
+
readonly indexed: false;
|
|
2096
|
+
readonly internalType: "string";
|
|
2097
|
+
readonly name: "daoURI";
|
|
2098
|
+
readonly type: "string";
|
|
2099
|
+
}];
|
|
2100
|
+
readonly name: "NewURI";
|
|
2101
|
+
readonly type: "event";
|
|
2102
|
+
}, {
|
|
2103
|
+
readonly anonymous: false;
|
|
2104
|
+
readonly inputs: readonly [{
|
|
2105
|
+
readonly indexed: true;
|
|
2106
|
+
readonly internalType: "bytes32";
|
|
2107
|
+
readonly name: "permissionId";
|
|
2108
|
+
readonly type: "bytes32";
|
|
2109
|
+
}, {
|
|
2110
|
+
readonly indexed: true;
|
|
2111
|
+
readonly internalType: "address";
|
|
2112
|
+
readonly name: "here";
|
|
2113
|
+
readonly type: "address";
|
|
2114
|
+
}, {
|
|
2115
|
+
readonly indexed: false;
|
|
2116
|
+
readonly internalType: "address";
|
|
2117
|
+
readonly name: "where";
|
|
2118
|
+
readonly type: "address";
|
|
2119
|
+
}, {
|
|
2120
|
+
readonly indexed: true;
|
|
2121
|
+
readonly internalType: "address";
|
|
2122
|
+
readonly name: "who";
|
|
2123
|
+
readonly type: "address";
|
|
2124
|
+
}];
|
|
2125
|
+
readonly name: "Revoked";
|
|
2126
|
+
readonly type: "event";
|
|
2127
|
+
}, {
|
|
2128
|
+
readonly anonymous: false;
|
|
2129
|
+
readonly inputs: readonly [{
|
|
2130
|
+
readonly indexed: false;
|
|
2131
|
+
readonly internalType: "bytes4";
|
|
2132
|
+
readonly name: "interfaceId";
|
|
2133
|
+
readonly type: "bytes4";
|
|
2134
|
+
}, {
|
|
2135
|
+
readonly indexed: false;
|
|
2136
|
+
readonly internalType: "bytes4";
|
|
2137
|
+
readonly name: "callbackSelector";
|
|
2138
|
+
readonly type: "bytes4";
|
|
2139
|
+
}, {
|
|
2140
|
+
readonly indexed: false;
|
|
2141
|
+
readonly internalType: "bytes4";
|
|
2142
|
+
readonly name: "magicNumber";
|
|
2143
|
+
readonly type: "bytes4";
|
|
2144
|
+
}];
|
|
2145
|
+
readonly name: "StandardCallbackRegistered";
|
|
2146
|
+
readonly type: "event";
|
|
2147
|
+
}, {
|
|
2148
|
+
readonly anonymous: false;
|
|
2149
|
+
readonly inputs: readonly [{
|
|
2150
|
+
readonly indexed: false;
|
|
2151
|
+
readonly internalType: "address";
|
|
2152
|
+
readonly name: "forwarder";
|
|
2153
|
+
readonly type: "address";
|
|
2154
|
+
}];
|
|
2155
|
+
readonly name: "TrustedForwarderSet";
|
|
2156
|
+
readonly type: "event";
|
|
2157
|
+
}, {
|
|
2158
|
+
readonly anonymous: false;
|
|
2159
|
+
readonly inputs: readonly [{
|
|
2160
|
+
readonly indexed: true;
|
|
2161
|
+
readonly internalType: "address";
|
|
2162
|
+
readonly name: "implementation";
|
|
2163
|
+
readonly type: "address";
|
|
2164
|
+
}];
|
|
2165
|
+
readonly name: "Upgraded";
|
|
2166
|
+
readonly type: "event";
|
|
2167
|
+
}, {
|
|
2168
|
+
readonly stateMutability: "nonpayable";
|
|
2169
|
+
readonly type: "fallback";
|
|
2170
|
+
}, {
|
|
2171
|
+
readonly inputs: readonly [];
|
|
2172
|
+
readonly name: "EXECUTE_PERMISSION_ID";
|
|
2173
|
+
readonly outputs: readonly [{
|
|
2174
|
+
readonly internalType: "bytes32";
|
|
2175
|
+
readonly name: "";
|
|
2176
|
+
readonly type: "bytes32";
|
|
2177
|
+
}];
|
|
2178
|
+
readonly stateMutability: "view";
|
|
2179
|
+
readonly type: "function";
|
|
2180
|
+
}, {
|
|
2181
|
+
readonly inputs: readonly [];
|
|
2182
|
+
readonly name: "REGISTER_STANDARD_CALLBACK_PERMISSION_ID";
|
|
2183
|
+
readonly outputs: readonly [{
|
|
2184
|
+
readonly internalType: "bytes32";
|
|
2185
|
+
readonly name: "";
|
|
2186
|
+
readonly type: "bytes32";
|
|
2187
|
+
}];
|
|
2188
|
+
readonly stateMutability: "view";
|
|
2189
|
+
readonly type: "function";
|
|
2190
|
+
}, {
|
|
2191
|
+
readonly inputs: readonly [];
|
|
2192
|
+
readonly name: "ROOT_PERMISSION_ID";
|
|
2193
|
+
readonly outputs: readonly [{
|
|
2194
|
+
readonly internalType: "bytes32";
|
|
2195
|
+
readonly name: "";
|
|
2196
|
+
readonly type: "bytes32";
|
|
2197
|
+
}];
|
|
2198
|
+
readonly stateMutability: "view";
|
|
2199
|
+
readonly type: "function";
|
|
2200
|
+
}, {
|
|
2201
|
+
readonly inputs: readonly [];
|
|
2202
|
+
readonly name: "SET_METADATA_PERMISSION_ID";
|
|
2203
|
+
readonly outputs: readonly [{
|
|
2204
|
+
readonly internalType: "bytes32";
|
|
2205
|
+
readonly name: "";
|
|
2206
|
+
readonly type: "bytes32";
|
|
2207
|
+
}];
|
|
2208
|
+
readonly stateMutability: "view";
|
|
2209
|
+
readonly type: "function";
|
|
2210
|
+
}, {
|
|
2211
|
+
readonly inputs: readonly [];
|
|
2212
|
+
readonly name: "SET_TRUSTED_FORWARDER_PERMISSION_ID";
|
|
2213
|
+
readonly outputs: readonly [{
|
|
2214
|
+
readonly internalType: "bytes32";
|
|
2215
|
+
readonly name: "";
|
|
2216
|
+
readonly type: "bytes32";
|
|
2217
|
+
}];
|
|
2218
|
+
readonly stateMutability: "view";
|
|
2219
|
+
readonly type: "function";
|
|
2220
|
+
}, {
|
|
2221
|
+
readonly inputs: readonly [];
|
|
2222
|
+
readonly name: "UPGRADE_DAO_PERMISSION_ID";
|
|
2223
|
+
readonly outputs: readonly [{
|
|
2224
|
+
readonly internalType: "bytes32";
|
|
2225
|
+
readonly name: "";
|
|
2226
|
+
readonly type: "bytes32";
|
|
2227
|
+
}];
|
|
2228
|
+
readonly stateMutability: "view";
|
|
2229
|
+
readonly type: "function";
|
|
2230
|
+
}, {
|
|
2231
|
+
readonly inputs: readonly [];
|
|
2232
|
+
readonly name: "VALIDATE_SIGNATURE_PERMISSION_ID";
|
|
2233
|
+
readonly outputs: readonly [{
|
|
2234
|
+
readonly internalType: "bytes32";
|
|
2235
|
+
readonly name: "";
|
|
2236
|
+
readonly type: "bytes32";
|
|
2237
|
+
}];
|
|
2238
|
+
readonly stateMutability: "view";
|
|
2239
|
+
readonly type: "function";
|
|
2240
|
+
}, {
|
|
2241
|
+
readonly inputs: readonly [{
|
|
2242
|
+
readonly components: readonly [{
|
|
2243
|
+
readonly internalType: "enum PermissionLib.Operation";
|
|
2244
|
+
readonly name: "operation";
|
|
2245
|
+
readonly type: "uint8";
|
|
2246
|
+
}, {
|
|
2247
|
+
readonly internalType: "address";
|
|
2248
|
+
readonly name: "where";
|
|
2249
|
+
readonly type: "address";
|
|
2250
|
+
}, {
|
|
2251
|
+
readonly internalType: "address";
|
|
2252
|
+
readonly name: "who";
|
|
2253
|
+
readonly type: "address";
|
|
2254
|
+
}, {
|
|
2255
|
+
readonly internalType: "address";
|
|
2256
|
+
readonly name: "condition";
|
|
2257
|
+
readonly type: "address";
|
|
2258
|
+
}, {
|
|
2259
|
+
readonly internalType: "bytes32";
|
|
2260
|
+
readonly name: "permissionId";
|
|
2261
|
+
readonly type: "bytes32";
|
|
2262
|
+
}];
|
|
2263
|
+
readonly internalType: "struct PermissionLib.MultiTargetPermission[]";
|
|
2264
|
+
readonly name: "_items";
|
|
2265
|
+
readonly type: "tuple[]";
|
|
2266
|
+
}];
|
|
2267
|
+
readonly name: "applyMultiTargetPermissions";
|
|
2268
|
+
readonly outputs: readonly [];
|
|
2269
|
+
readonly stateMutability: "nonpayable";
|
|
2270
|
+
readonly type: "function";
|
|
2271
|
+
}, {
|
|
2272
|
+
readonly inputs: readonly [{
|
|
2273
|
+
readonly internalType: "address";
|
|
2274
|
+
readonly name: "_where";
|
|
2275
|
+
readonly type: "address";
|
|
2276
|
+
}, {
|
|
2277
|
+
readonly components: readonly [{
|
|
2278
|
+
readonly internalType: "enum PermissionLib.Operation";
|
|
2279
|
+
readonly name: "operation";
|
|
2280
|
+
readonly type: "uint8";
|
|
2281
|
+
}, {
|
|
2282
|
+
readonly internalType: "address";
|
|
2283
|
+
readonly name: "who";
|
|
2284
|
+
readonly type: "address";
|
|
2285
|
+
}, {
|
|
2286
|
+
readonly internalType: "bytes32";
|
|
2287
|
+
readonly name: "permissionId";
|
|
2288
|
+
readonly type: "bytes32";
|
|
2289
|
+
}];
|
|
2290
|
+
readonly internalType: "struct PermissionLib.SingleTargetPermission[]";
|
|
2291
|
+
readonly name: "items";
|
|
2292
|
+
readonly type: "tuple[]";
|
|
2293
|
+
}];
|
|
2294
|
+
readonly name: "applySingleTargetPermissions";
|
|
2295
|
+
readonly outputs: readonly [];
|
|
2296
|
+
readonly stateMutability: "nonpayable";
|
|
2297
|
+
readonly type: "function";
|
|
2298
|
+
}, {
|
|
2299
|
+
readonly inputs: readonly [];
|
|
2300
|
+
readonly name: "daoURI";
|
|
2301
|
+
readonly outputs: readonly [{
|
|
2302
|
+
readonly internalType: "string";
|
|
2303
|
+
readonly name: "";
|
|
2304
|
+
readonly type: "string";
|
|
2305
|
+
}];
|
|
2306
|
+
readonly stateMutability: "view";
|
|
2307
|
+
readonly type: "function";
|
|
2308
|
+
}, {
|
|
2309
|
+
readonly inputs: readonly [{
|
|
2310
|
+
readonly internalType: "address";
|
|
2311
|
+
readonly name: "_token";
|
|
2312
|
+
readonly type: "address";
|
|
2313
|
+
}, {
|
|
2314
|
+
readonly internalType: "uint256";
|
|
2315
|
+
readonly name: "_amount";
|
|
2316
|
+
readonly type: "uint256";
|
|
2317
|
+
}, {
|
|
2318
|
+
readonly internalType: "string";
|
|
2319
|
+
readonly name: "_reference";
|
|
2320
|
+
readonly type: "string";
|
|
2321
|
+
}];
|
|
2322
|
+
readonly name: "deposit";
|
|
2323
|
+
readonly outputs: readonly [];
|
|
2324
|
+
readonly stateMutability: "payable";
|
|
2325
|
+
readonly type: "function";
|
|
2326
|
+
}, {
|
|
2327
|
+
readonly inputs: readonly [{
|
|
2328
|
+
readonly internalType: "bytes32";
|
|
2329
|
+
readonly name: "_callId";
|
|
2330
|
+
readonly type: "bytes32";
|
|
2331
|
+
}, {
|
|
2332
|
+
readonly components: readonly [{
|
|
2333
|
+
readonly internalType: "address";
|
|
2334
|
+
readonly name: "to";
|
|
2335
|
+
readonly type: "address";
|
|
2336
|
+
}, {
|
|
2337
|
+
readonly internalType: "uint256";
|
|
2338
|
+
readonly name: "value";
|
|
2339
|
+
readonly type: "uint256";
|
|
2340
|
+
}, {
|
|
2341
|
+
readonly internalType: "bytes";
|
|
2342
|
+
readonly name: "data";
|
|
2343
|
+
readonly type: "bytes";
|
|
2344
|
+
}];
|
|
2345
|
+
readonly internalType: "struct Action[]";
|
|
2346
|
+
readonly name: "_actions";
|
|
2347
|
+
readonly type: "tuple[]";
|
|
2348
|
+
}, {
|
|
2349
|
+
readonly internalType: "uint256";
|
|
2350
|
+
readonly name: "_allowFailureMap";
|
|
2351
|
+
readonly type: "uint256";
|
|
2352
|
+
}];
|
|
2353
|
+
readonly name: "execute";
|
|
2354
|
+
readonly outputs: readonly [{
|
|
2355
|
+
readonly internalType: "bytes[]";
|
|
2356
|
+
readonly name: "execResults";
|
|
2357
|
+
readonly type: "bytes[]";
|
|
2358
|
+
}, {
|
|
2359
|
+
readonly internalType: "uint256";
|
|
2360
|
+
readonly name: "failureMap";
|
|
2361
|
+
readonly type: "uint256";
|
|
2362
|
+
}];
|
|
2363
|
+
readonly stateMutability: "nonpayable";
|
|
2364
|
+
readonly type: "function";
|
|
2365
|
+
}, {
|
|
2366
|
+
readonly inputs: readonly [];
|
|
2367
|
+
readonly name: "getTrustedForwarder";
|
|
2368
|
+
readonly outputs: readonly [{
|
|
2369
|
+
readonly internalType: "address";
|
|
2370
|
+
readonly name: "";
|
|
2371
|
+
readonly type: "address";
|
|
2372
|
+
}];
|
|
2373
|
+
readonly stateMutability: "view";
|
|
2374
|
+
readonly type: "function";
|
|
2375
|
+
}, {
|
|
2376
|
+
readonly inputs: readonly [{
|
|
2377
|
+
readonly internalType: "address";
|
|
2378
|
+
readonly name: "_where";
|
|
2379
|
+
readonly type: "address";
|
|
2380
|
+
}, {
|
|
2381
|
+
readonly internalType: "address";
|
|
2382
|
+
readonly name: "_who";
|
|
2383
|
+
readonly type: "address";
|
|
2384
|
+
}, {
|
|
2385
|
+
readonly internalType: "bytes32";
|
|
2386
|
+
readonly name: "_permissionId";
|
|
2387
|
+
readonly type: "bytes32";
|
|
2388
|
+
}];
|
|
2389
|
+
readonly name: "grant";
|
|
2390
|
+
readonly outputs: readonly [];
|
|
2391
|
+
readonly stateMutability: "nonpayable";
|
|
2392
|
+
readonly type: "function";
|
|
2393
|
+
}, {
|
|
2394
|
+
readonly inputs: readonly [{
|
|
2395
|
+
readonly internalType: "address";
|
|
2396
|
+
readonly name: "_where";
|
|
2397
|
+
readonly type: "address";
|
|
2398
|
+
}, {
|
|
2399
|
+
readonly internalType: "address";
|
|
2400
|
+
readonly name: "_who";
|
|
2401
|
+
readonly type: "address";
|
|
2402
|
+
}, {
|
|
2403
|
+
readonly internalType: "bytes32";
|
|
2404
|
+
readonly name: "_permissionId";
|
|
2405
|
+
readonly type: "bytes32";
|
|
2406
|
+
}, {
|
|
2407
|
+
readonly internalType: "contract IPermissionCondition";
|
|
2408
|
+
readonly name: "_condition";
|
|
2409
|
+
readonly type: "address";
|
|
2410
|
+
}];
|
|
2411
|
+
readonly name: "grantWithCondition";
|
|
2412
|
+
readonly outputs: readonly [];
|
|
2413
|
+
readonly stateMutability: "nonpayable";
|
|
2414
|
+
readonly type: "function";
|
|
2415
|
+
}, {
|
|
2416
|
+
readonly inputs: readonly [{
|
|
2417
|
+
readonly internalType: "address";
|
|
2418
|
+
readonly name: "_where";
|
|
2419
|
+
readonly type: "address";
|
|
2420
|
+
}, {
|
|
2421
|
+
readonly internalType: "address";
|
|
2422
|
+
readonly name: "_who";
|
|
2423
|
+
readonly type: "address";
|
|
2424
|
+
}, {
|
|
2425
|
+
readonly internalType: "bytes32";
|
|
2426
|
+
readonly name: "_permissionId";
|
|
2427
|
+
readonly type: "bytes32";
|
|
2428
|
+
}, {
|
|
2429
|
+
readonly internalType: "bytes";
|
|
2430
|
+
readonly name: "_data";
|
|
2431
|
+
readonly type: "bytes";
|
|
2432
|
+
}];
|
|
2433
|
+
readonly name: "hasPermission";
|
|
2434
|
+
readonly outputs: readonly [{
|
|
2435
|
+
readonly internalType: "bool";
|
|
2436
|
+
readonly name: "";
|
|
2437
|
+
readonly type: "bool";
|
|
2438
|
+
}];
|
|
2439
|
+
readonly stateMutability: "view";
|
|
2440
|
+
readonly type: "function";
|
|
2441
|
+
}, {
|
|
2442
|
+
readonly inputs: readonly [{
|
|
2443
|
+
readonly internalType: "bytes";
|
|
2444
|
+
readonly name: "_metadata";
|
|
2445
|
+
readonly type: "bytes";
|
|
2446
|
+
}, {
|
|
2447
|
+
readonly internalType: "address";
|
|
2448
|
+
readonly name: "_initialOwner";
|
|
2449
|
+
readonly type: "address";
|
|
2450
|
+
}, {
|
|
2451
|
+
readonly internalType: "address";
|
|
2452
|
+
readonly name: "_trustedForwarder";
|
|
2453
|
+
readonly type: "address";
|
|
2454
|
+
}, {
|
|
2455
|
+
readonly internalType: "string";
|
|
2456
|
+
readonly name: "daoURI_";
|
|
2457
|
+
readonly type: "string";
|
|
2458
|
+
}];
|
|
2459
|
+
readonly name: "initialize";
|
|
2460
|
+
readonly outputs: readonly [];
|
|
2461
|
+
readonly stateMutability: "nonpayable";
|
|
2462
|
+
readonly type: "function";
|
|
2463
|
+
}, {
|
|
2464
|
+
readonly inputs: readonly [{
|
|
2465
|
+
readonly internalType: "uint8[3]";
|
|
2466
|
+
readonly name: "_previousProtocolVersion";
|
|
2467
|
+
readonly type: "uint8[3]";
|
|
2468
|
+
}, {
|
|
2469
|
+
readonly internalType: "bytes";
|
|
2470
|
+
readonly name: "_initData";
|
|
2471
|
+
readonly type: "bytes";
|
|
2472
|
+
}];
|
|
2473
|
+
readonly name: "initializeFrom";
|
|
2474
|
+
readonly outputs: readonly [];
|
|
2475
|
+
readonly stateMutability: "nonpayable";
|
|
2476
|
+
readonly type: "function";
|
|
2477
|
+
}, {
|
|
2478
|
+
readonly inputs: readonly [{
|
|
2479
|
+
readonly internalType: "address";
|
|
2480
|
+
readonly name: "_where";
|
|
2481
|
+
readonly type: "address";
|
|
2482
|
+
}, {
|
|
2483
|
+
readonly internalType: "address";
|
|
2484
|
+
readonly name: "_who";
|
|
2485
|
+
readonly type: "address";
|
|
2486
|
+
}, {
|
|
2487
|
+
readonly internalType: "bytes32";
|
|
2488
|
+
readonly name: "_permissionId";
|
|
2489
|
+
readonly type: "bytes32";
|
|
2490
|
+
}, {
|
|
2491
|
+
readonly internalType: "bytes";
|
|
2492
|
+
readonly name: "_data";
|
|
2493
|
+
readonly type: "bytes";
|
|
2494
|
+
}];
|
|
2495
|
+
readonly name: "isGranted";
|
|
2496
|
+
readonly outputs: readonly [{
|
|
2497
|
+
readonly internalType: "bool";
|
|
2498
|
+
readonly name: "";
|
|
2499
|
+
readonly type: "bool";
|
|
2500
|
+
}];
|
|
2501
|
+
readonly stateMutability: "view";
|
|
2502
|
+
readonly type: "function";
|
|
2503
|
+
}, {
|
|
2504
|
+
readonly inputs: readonly [{
|
|
2505
|
+
readonly internalType: "bytes32";
|
|
2506
|
+
readonly name: "_hash";
|
|
2507
|
+
readonly type: "bytes32";
|
|
2508
|
+
}, {
|
|
2509
|
+
readonly internalType: "bytes";
|
|
2510
|
+
readonly name: "_signature";
|
|
2511
|
+
readonly type: "bytes";
|
|
2512
|
+
}];
|
|
2513
|
+
readonly name: "isValidSignature";
|
|
2514
|
+
readonly outputs: readonly [{
|
|
2515
|
+
readonly internalType: "bytes4";
|
|
2516
|
+
readonly name: "";
|
|
2517
|
+
readonly type: "bytes4";
|
|
2518
|
+
}];
|
|
2519
|
+
readonly stateMutability: "view";
|
|
2520
|
+
readonly type: "function";
|
|
2521
|
+
}, {
|
|
2522
|
+
readonly inputs: readonly [];
|
|
2523
|
+
readonly name: "protocolVersion";
|
|
2524
|
+
readonly outputs: readonly [{
|
|
2525
|
+
readonly internalType: "uint8[3]";
|
|
2526
|
+
readonly name: "";
|
|
2527
|
+
readonly type: "uint8[3]";
|
|
2528
|
+
}];
|
|
2529
|
+
readonly stateMutability: "pure";
|
|
2530
|
+
readonly type: "function";
|
|
2531
|
+
}, {
|
|
2532
|
+
readonly inputs: readonly [];
|
|
2533
|
+
readonly name: "proxiableUUID";
|
|
2534
|
+
readonly outputs: readonly [{
|
|
2535
|
+
readonly internalType: "bytes32";
|
|
2536
|
+
readonly name: "";
|
|
2537
|
+
readonly type: "bytes32";
|
|
2538
|
+
}];
|
|
2539
|
+
readonly stateMutability: "view";
|
|
2540
|
+
readonly type: "function";
|
|
2541
|
+
}, {
|
|
2542
|
+
readonly inputs: readonly [{
|
|
2543
|
+
readonly internalType: "bytes4";
|
|
2544
|
+
readonly name: "_interfaceId";
|
|
2545
|
+
readonly type: "bytes4";
|
|
2546
|
+
}, {
|
|
2547
|
+
readonly internalType: "bytes4";
|
|
2548
|
+
readonly name: "_callbackSelector";
|
|
2549
|
+
readonly type: "bytes4";
|
|
2550
|
+
}, {
|
|
2551
|
+
readonly internalType: "bytes4";
|
|
2552
|
+
readonly name: "_magicNumber";
|
|
2553
|
+
readonly type: "bytes4";
|
|
2554
|
+
}];
|
|
2555
|
+
readonly name: "registerStandardCallback";
|
|
2556
|
+
readonly outputs: readonly [];
|
|
2557
|
+
readonly stateMutability: "nonpayable";
|
|
2558
|
+
readonly type: "function";
|
|
2559
|
+
}, {
|
|
2560
|
+
readonly inputs: readonly [{
|
|
2561
|
+
readonly internalType: "address";
|
|
2562
|
+
readonly name: "_where";
|
|
2563
|
+
readonly type: "address";
|
|
2564
|
+
}, {
|
|
2565
|
+
readonly internalType: "address";
|
|
2566
|
+
readonly name: "_who";
|
|
2567
|
+
readonly type: "address";
|
|
2568
|
+
}, {
|
|
2569
|
+
readonly internalType: "bytes32";
|
|
2570
|
+
readonly name: "_permissionId";
|
|
2571
|
+
readonly type: "bytes32";
|
|
2572
|
+
}];
|
|
2573
|
+
readonly name: "revoke";
|
|
2574
|
+
readonly outputs: readonly [];
|
|
2575
|
+
readonly stateMutability: "nonpayable";
|
|
2576
|
+
readonly type: "function";
|
|
2577
|
+
}, {
|
|
2578
|
+
readonly inputs: readonly [{
|
|
2579
|
+
readonly internalType: "string";
|
|
2580
|
+
readonly name: "newDaoURI";
|
|
2581
|
+
readonly type: "string";
|
|
2582
|
+
}];
|
|
2583
|
+
readonly name: "setDaoURI";
|
|
2584
|
+
readonly outputs: readonly [];
|
|
2585
|
+
readonly stateMutability: "nonpayable";
|
|
2586
|
+
readonly type: "function";
|
|
2587
|
+
}, {
|
|
2588
|
+
readonly inputs: readonly [{
|
|
2589
|
+
readonly internalType: "bytes";
|
|
2590
|
+
readonly name: "_metadata";
|
|
2591
|
+
readonly type: "bytes";
|
|
2592
|
+
}];
|
|
2593
|
+
readonly name: "setMetadata";
|
|
2594
|
+
readonly outputs: readonly [];
|
|
2595
|
+
readonly stateMutability: "nonpayable";
|
|
2596
|
+
readonly type: "function";
|
|
2597
|
+
}, {
|
|
2598
|
+
readonly inputs: readonly [{
|
|
2599
|
+
readonly internalType: "address";
|
|
2600
|
+
readonly name: "";
|
|
2601
|
+
readonly type: "address";
|
|
2602
|
+
}];
|
|
2603
|
+
readonly name: "setSignatureValidator";
|
|
2604
|
+
readonly outputs: readonly [];
|
|
2605
|
+
readonly stateMutability: "pure";
|
|
2606
|
+
readonly type: "function";
|
|
2607
|
+
}, {
|
|
2608
|
+
readonly inputs: readonly [{
|
|
2609
|
+
readonly internalType: "address";
|
|
2610
|
+
readonly name: "_newTrustedForwarder";
|
|
2611
|
+
readonly type: "address";
|
|
2612
|
+
}];
|
|
2613
|
+
readonly name: "setTrustedForwarder";
|
|
2614
|
+
readonly outputs: readonly [];
|
|
2615
|
+
readonly stateMutability: "nonpayable";
|
|
2616
|
+
readonly type: "function";
|
|
2617
|
+
}, {
|
|
2618
|
+
readonly inputs: readonly [{
|
|
2619
|
+
readonly internalType: "bytes4";
|
|
2620
|
+
readonly name: "interfaceId";
|
|
2621
|
+
readonly type: "bytes4";
|
|
2622
|
+
}];
|
|
2623
|
+
readonly name: "supportsInterface";
|
|
2624
|
+
readonly outputs: readonly [{
|
|
2625
|
+
readonly internalType: "bool";
|
|
2626
|
+
readonly name: "";
|
|
2627
|
+
readonly type: "bool";
|
|
2628
|
+
}];
|
|
2629
|
+
readonly stateMutability: "view";
|
|
2630
|
+
readonly type: "function";
|
|
2631
|
+
}, {
|
|
2632
|
+
readonly inputs: readonly [{
|
|
2633
|
+
readonly internalType: "address";
|
|
2634
|
+
readonly name: "newImplementation";
|
|
2635
|
+
readonly type: "address";
|
|
2636
|
+
}];
|
|
2637
|
+
readonly name: "upgradeTo";
|
|
2638
|
+
readonly outputs: readonly [];
|
|
2639
|
+
readonly stateMutability: "nonpayable";
|
|
2640
|
+
readonly type: "function";
|
|
2641
|
+
}, {
|
|
2642
|
+
readonly inputs: readonly [{
|
|
2643
|
+
readonly internalType: "address";
|
|
2644
|
+
readonly name: "newImplementation";
|
|
2645
|
+
readonly type: "address";
|
|
2646
|
+
}, {
|
|
2647
|
+
readonly internalType: "bytes";
|
|
2648
|
+
readonly name: "data";
|
|
2649
|
+
readonly type: "bytes";
|
|
2650
|
+
}];
|
|
2651
|
+
readonly name: "upgradeToAndCall";
|
|
2652
|
+
readonly outputs: readonly [];
|
|
2653
|
+
readonly stateMutability: "payable";
|
|
2654
|
+
readonly type: "function";
|
|
2655
|
+
}, {
|
|
2656
|
+
readonly stateMutability: "payable";
|
|
2657
|
+
readonly type: "receive";
|
|
2658
|
+
}];
|
|
2659
|
+
|
|
1772
2660
|
declare const AragonMultiSig_ABI: readonly [{
|
|
1773
2661
|
readonly inputs: readonly [{
|
|
1774
2662
|
readonly internalType: "uint16";
|
|
@@ -21309,4 +22197,4 @@ declare const VaultAdapterV1_ABI: readonly [{
|
|
|
21309
22197
|
readonly type: "function";
|
|
21310
22198
|
}];
|
|
21311
22199
|
|
|
21312
|
-
export { ADDRESS, AggregatorV3Interface_ABI, AragonDelayedAction_ABI, AragonMultiSig_ABI, AragonVetoMultiSig_ABI, type ChainAddressArbitrum, type ChainAddressAvalanche, type ChainAddressBase, type ChainAddressGnosis, type ChainAddressMainnet, type ChainAddressMap, type ChainAddressOptimism, type ChainAddressPolygon, type ChainAddressSonic, type ChainId, type ChainIdMain, type ChainIdSide, ChainMain, ChainSide, CurveAdapterV1_1_ABI, CurveAdapterV1_2_ABI, CurveAdapterV1_ABI, ERC20Permit_ABI, ERC20_ABI, ErrorsLib_ABI, EventsLib_ABI, ICurveStableSwapNG_ABI, IERC20Metadata_ABI, IERC20Permit_ABI, IERC20_ABI, IERC4626ABI, IMetaMorphoV1_1Base_ABI, IMetaMorphoV1_1StaticTyping_ABI, IMetaMorphoV1_1_ABI, IMorphoBase_ABI, IMorphoChainlinkOracleV2Factory_ABI, IMorphoChainlinkOracleV2_ABI, IMorphoFlashLoanCallback_ABI, IMorphoLiquidateCallback_ABI, IMorphoRepayCallback_ABI, IMorphoStaticTyping_ABI, IMorphoSupplyCallback_ABI, IMorphoSupplyCollateralCallback_ABI, IMorpho_ABI, IMulticall_ABI, IOracle_ABI, IOwnable_ABI, IStablecoinMetadata_ABI, IStablecoinModifier_ABI, IStablecoin_ABI, ITermMaxVault_ABI, MorphoAdapterV1_1_ABI, MorphoAdapterV1_2_ABI, MorphoAdapterV1_ABI, MorphoChainlinkOracleV2_ABI, RewardDistributionV1_ABI, Stablecoin_ABI, type SupportedChain, SupportedChainIds, SupportedChains, SupportedChainsMap, VaultAdapterRecoverV1_ABI, VaultAdapterV1_ABI, getAddressFromChildIndex, getChildFromSeed, getPrivateKeyFromChildIndex, getPublicKeyFromChildIndex, getWalletInto };
|
|
22200
|
+
export { ADDRESS, AggregatorV3Interface_ABI, AragonDao_ABI, AragonDelayedAction_ABI, AragonMultiSig_ABI, AragonVetoMultiSig_ABI, type ChainAddressArbitrum, type ChainAddressAvalanche, type ChainAddressBase, type ChainAddressGnosis, type ChainAddressMainnet, type ChainAddressMap, type ChainAddressOptimism, type ChainAddressPolygon, type ChainAddressSonic, type ChainId, type ChainIdMain, type ChainIdSide, ChainMain, ChainSide, CurveAdapterV1_1_ABI, CurveAdapterV1_2_ABI, CurveAdapterV1_ABI, ERC20Permit_ABI, ERC20_ABI, ErrorsLib_ABI, EventsLib_ABI, ICurveStableSwapNG_ABI, IERC20Metadata_ABI, IERC20Permit_ABI, IERC20_ABI, IERC4626ABI, IMetaMorphoV1_1Base_ABI, IMetaMorphoV1_1StaticTyping_ABI, IMetaMorphoV1_1_ABI, IMorphoBase_ABI, IMorphoChainlinkOracleV2Factory_ABI, IMorphoChainlinkOracleV2_ABI, IMorphoFlashLoanCallback_ABI, IMorphoLiquidateCallback_ABI, IMorphoRepayCallback_ABI, IMorphoStaticTyping_ABI, IMorphoSupplyCallback_ABI, IMorphoSupplyCollateralCallback_ABI, IMorpho_ABI, IMulticall_ABI, IOracle_ABI, IOwnable_ABI, IStablecoinMetadata_ABI, IStablecoinModifier_ABI, IStablecoin_ABI, ITermMaxVault_ABI, MorphoAdapterV1_1_ABI, MorphoAdapterV1_2_ABI, MorphoAdapterV1_ABI, MorphoChainlinkOracleV2_ABI, RewardDistributionV1_ABI, Stablecoin_ABI, type SupportedChain, SupportedChainIds, SupportedChains, SupportedChainsMap, VaultAdapterRecoverV1_ABI, VaultAdapterV1_ABI, getAddressFromChildIndex, getChildFromSeed, getPrivateKeyFromChildIndex, getPublicKeyFromChildIndex, getWalletInto };
|