@funkit/core 1.0.15 → 1.0.16
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/src/abis/ApproveAndExec.json +70 -1
- package/dist/src/abis/EntryPoint.json +546 -2
- package/dist/src/abis/EstimationPaymaster.json +156 -1
- package/dist/src/abis/FeePercentOracle.json +142 -1
- package/dist/src/abis/FunWallet.json +534 -2
- package/dist/src/abis/FunWalletFactory.json +141 -1
- package/dist/src/abis/GaslessPaymaster.json +329 -1
- package/dist/src/abis/RoleBasedAccessControl.json +2 -1
- package/dist/src/abis/TestNFT.json +170 -1
- package/dist/src/abis/TokenPaymaster.json +696 -1
- package/dist/src/abis/TokenPriceOracle.json +44 -1
- package/dist/src/abis/UserAuthentication.json +223 -1
- package/dist/src/common/constants.d.ts +137 -0
- package/dist/src/common/constants.js +32 -2
- package/dist/src/common/constants.js.map +1 -1
- package/dist/src/data/Token.js +1 -1
- package/dist/src/data/Token.js.map +1 -1
- package/package.json +2 -1
|
@@ -1 +1,44 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"name": "TokenPriceOracle",
|
|
3
|
+
"abi": [
|
|
4
|
+
{
|
|
5
|
+
"inputs": [],
|
|
6
|
+
"name": "MAX_DELAY",
|
|
7
|
+
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
8
|
+
"stateMutability": "view",
|
|
9
|
+
"type": "function"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"inputs": [],
|
|
13
|
+
"name": "WEI_IN_ETH",
|
|
14
|
+
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
15
|
+
"stateMutability": "view",
|
|
16
|
+
"type": "function"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"inputs": [
|
|
20
|
+
{ "internalType": "address", "name": "aggregatorOrToken", "type": "address" },
|
|
21
|
+
{ "internalType": "uint256", "name": "ethAmount", "type": "uint256" },
|
|
22
|
+
{ "internalType": "uint8", "name": "tokenDecimals", "type": "uint8" }
|
|
23
|
+
],
|
|
24
|
+
"name": "getTokenValueOfEth",
|
|
25
|
+
"outputs": [
|
|
26
|
+
{ "internalType": "uint256", "name": "tokenValueOfEth", "type": "uint256" },
|
|
27
|
+
{ "internalType": "uint256", "name": "oracleValidUntil", "type": "uint256" }
|
|
28
|
+
],
|
|
29
|
+
"stateMutability": "view",
|
|
30
|
+
"type": "function"
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"addresses": {
|
|
34
|
+
"1": "0x302275dcF9919c5449F2d53253ACD06315385272",
|
|
35
|
+
"5": "0x302275dcF9919c5449F2d53253ACD06315385272",
|
|
36
|
+
"10": "0x302275dcF9919c5449F2d53253ACD06315385272",
|
|
37
|
+
"137": "0x302275dcF9919c5449F2d53253ACD06315385272",
|
|
38
|
+
"8453": "0x302275dcF9919c5449F2d53253ACD06315385272",
|
|
39
|
+
"36865": "0x302275dcF9919c5449F2d53253ACD06315385272",
|
|
40
|
+
"42161": "0x302275dcF9919c5449F2d53253ACD06315385272",
|
|
41
|
+
"421614": "0x33CE83528023d9aee4e6321250514741F00976DB",
|
|
42
|
+
"5000": "0x46B1Aee819Af33fa9617059A3D54e5352793473B"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
@@ -1 +1,223 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"name": "UserAuthentication",
|
|
3
|
+
"abi": [
|
|
4
|
+
{
|
|
5
|
+
"anonymous": false,
|
|
6
|
+
"inputs": [
|
|
7
|
+
{ "indexed": true, "internalType": "address", "name": "wallet", "type": "address" },
|
|
8
|
+
{ "indexed": true, "internalType": "bytes32", "name": "groupId", "type": "bytes32" },
|
|
9
|
+
{
|
|
10
|
+
"components": [
|
|
11
|
+
{ "internalType": "bytes32[]", "name": "userIds", "type": "bytes32[]" },
|
|
12
|
+
{ "internalType": "uint256", "name": "threshold", "type": "uint256" }
|
|
13
|
+
],
|
|
14
|
+
"indexed": false,
|
|
15
|
+
"internalType": "structMultiSigGroup",
|
|
16
|
+
"name": "group",
|
|
17
|
+
"type": "tuple"
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"name": "MultiSigGroupCreated",
|
|
21
|
+
"type": "event"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"anonymous": false,
|
|
25
|
+
"inputs": [
|
|
26
|
+
{ "indexed": true, "internalType": "address", "name": "wallet", "type": "address" },
|
|
27
|
+
{ "indexed": true, "internalType": "bytes32", "name": "groupId", "type": "bytes32" }
|
|
28
|
+
],
|
|
29
|
+
"name": "MultiSigGroupDeleted",
|
|
30
|
+
"type": "event"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"anonymous": false,
|
|
34
|
+
"inputs": [
|
|
35
|
+
{ "indexed": true, "internalType": "address", "name": "wallet", "type": "address" },
|
|
36
|
+
{ "indexed": true, "internalType": "bytes32", "name": "groupId", "type": "bytes32" },
|
|
37
|
+
{
|
|
38
|
+
"components": [
|
|
39
|
+
{ "internalType": "bytes32[]", "name": "userIds", "type": "bytes32[]" },
|
|
40
|
+
{ "internalType": "uint256", "name": "threshold", "type": "uint256" }
|
|
41
|
+
],
|
|
42
|
+
"indexed": false,
|
|
43
|
+
"internalType": "structMultiSigGroup",
|
|
44
|
+
"name": "group",
|
|
45
|
+
"type": "tuple"
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"name": "MultiSigGroupUpdated",
|
|
49
|
+
"type": "event"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"anonymous": false,
|
|
53
|
+
"inputs": [
|
|
54
|
+
{ "indexed": true, "internalType": "address", "name": "wallet", "type": "address" },
|
|
55
|
+
{ "indexed": false, "internalType": "bytes", "name": "multiSigInitData", "type": "bytes" }
|
|
56
|
+
],
|
|
57
|
+
"name": "UserAuthenticationInitialized",
|
|
58
|
+
"type": "event"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"inputs": [],
|
|
62
|
+
"name": "ADMIN_ROLE",
|
|
63
|
+
"outputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }],
|
|
64
|
+
"stateMutability": "view",
|
|
65
|
+
"type": "function"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"inputs": [],
|
|
69
|
+
"name": "INIT_HASH",
|
|
70
|
+
"outputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }],
|
|
71
|
+
"stateMutability": "view",
|
|
72
|
+
"type": "function"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"inputs": [],
|
|
76
|
+
"name": "VERSION",
|
|
77
|
+
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
78
|
+
"stateMutability": "view",
|
|
79
|
+
"type": "function"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"inputs": [
|
|
83
|
+
{
|
|
84
|
+
"components": [
|
|
85
|
+
{ "internalType": "address", "name": "sender", "type": "address" },
|
|
86
|
+
{ "internalType": "uint256", "name": "nonce", "type": "uint256" },
|
|
87
|
+
{ "internalType": "bytes", "name": "initCode", "type": "bytes" },
|
|
88
|
+
{ "internalType": "bytes", "name": "callData", "type": "bytes" },
|
|
89
|
+
{ "internalType": "uint256", "name": "callGasLimit", "type": "uint256" },
|
|
90
|
+
{ "internalType": "uint256", "name": "verificationGasLimit", "type": "uint256" },
|
|
91
|
+
{ "internalType": "uint256", "name": "preVerificationGas", "type": "uint256" },
|
|
92
|
+
{ "internalType": "uint256", "name": "maxFeePerGas", "type": "uint256" },
|
|
93
|
+
{ "internalType": "uint256", "name": "maxPriorityFeePerGas", "type": "uint256" },
|
|
94
|
+
{ "internalType": "bytes", "name": "paymasterAndData", "type": "bytes" },
|
|
95
|
+
{ "internalType": "bytes", "name": "signature", "type": "bytes" }
|
|
96
|
+
],
|
|
97
|
+
"internalType": "structUserOperation",
|
|
98
|
+
"name": "userOp",
|
|
99
|
+
"type": "tuple"
|
|
100
|
+
},
|
|
101
|
+
{ "internalType": "bytes32", "name": "userOpHash", "type": "bytes32" },
|
|
102
|
+
{ "internalType": "bytes", "name": "", "type": "bytes" }
|
|
103
|
+
],
|
|
104
|
+
"name": "authenticateUserOp",
|
|
105
|
+
"outputs": [{ "internalType": "uint256", "name": "sigTimeRange", "type": "uint256" }],
|
|
106
|
+
"stateMutability": "view",
|
|
107
|
+
"type": "function"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"inputs": [
|
|
111
|
+
{ "internalType": "bytes32", "name": "groupId", "type": "bytes32" },
|
|
112
|
+
{
|
|
113
|
+
"components": [
|
|
114
|
+
{ "internalType": "bytes32[]", "name": "userIds", "type": "bytes32[]" },
|
|
115
|
+
{ "internalType": "uint256", "name": "threshold", "type": "uint256" }
|
|
116
|
+
],
|
|
117
|
+
"internalType": "structMultiSigGroup",
|
|
118
|
+
"name": "group",
|
|
119
|
+
"type": "tuple"
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"name": "createMultiSigGroup",
|
|
123
|
+
"outputs": [],
|
|
124
|
+
"stateMutability": "nonpayable",
|
|
125
|
+
"type": "function"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"inputs": [{ "internalType": "bytes32", "name": "groupId", "type": "bytes32" }],
|
|
129
|
+
"name": "deleteMultiSigGroup",
|
|
130
|
+
"outputs": [],
|
|
131
|
+
"stateMutability": "nonpayable",
|
|
132
|
+
"type": "function"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"inputs": [{ "internalType": "bytes32", "name": "key", "type": "bytes32" }],
|
|
136
|
+
"name": "getState",
|
|
137
|
+
"outputs": [{ "internalType": "bytes", "name": "state", "type": "bytes" }],
|
|
138
|
+
"stateMutability": "view",
|
|
139
|
+
"type": "function"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"inputs": [{ "internalType": "bytes32", "name": "key", "type": "bytes32" }],
|
|
143
|
+
"name": "getState32",
|
|
144
|
+
"outputs": [{ "internalType": "bytes32", "name": "state", "type": "bytes32" }],
|
|
145
|
+
"stateMutability": "view",
|
|
146
|
+
"type": "function"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"inputs": [{ "internalType": "bytes", "name": "multiSigInitData", "type": "bytes" }],
|
|
150
|
+
"name": "init",
|
|
151
|
+
"outputs": [],
|
|
152
|
+
"stateMutability": "nonpayable",
|
|
153
|
+
"type": "function"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"inputs": [
|
|
157
|
+
{ "internalType": "address", "name": "", "type": "address" },
|
|
158
|
+
{ "internalType": "uint256", "name": "", "type": "uint256" },
|
|
159
|
+
{ "internalType": "bytes", "name": "", "type": "bytes" },
|
|
160
|
+
{ "internalType": "bytes", "name": "_signature", "type": "bytes" },
|
|
161
|
+
{ "internalType": "bytes32", "name": "_hash", "type": "bytes32" }
|
|
162
|
+
],
|
|
163
|
+
"name": "isValidAction",
|
|
164
|
+
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
165
|
+
"stateMutability": "view",
|
|
166
|
+
"type": "function"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"inputs": [],
|
|
170
|
+
"name": "moduleId",
|
|
171
|
+
"outputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }],
|
|
172
|
+
"stateMutability": "view",
|
|
173
|
+
"type": "function"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"inputs": [{ "internalType": "bytes[]", "name": "calls", "type": "bytes[]" }],
|
|
177
|
+
"name": "multiCall",
|
|
178
|
+
"outputs": [],
|
|
179
|
+
"stateMutability": "nonpayable",
|
|
180
|
+
"type": "function"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"inputs": [
|
|
184
|
+
{ "internalType": "bytes", "name": "signature", "type": "bytes" },
|
|
185
|
+
{ "internalType": "bytes32", "name": "userOpHash", "type": "bytes32" },
|
|
186
|
+
{ "internalType": "bytes32", "name": "userId", "type": "bytes32" }
|
|
187
|
+
],
|
|
188
|
+
"name": "subValidateSignatureECDSA",
|
|
189
|
+
"outputs": [{ "internalType": "uint256", "name": "sigTimeRange", "type": "uint256" }],
|
|
190
|
+
"stateMutability": "pure",
|
|
191
|
+
"type": "function"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"inputs": [
|
|
195
|
+
{ "internalType": "bytes32", "name": "groupId", "type": "bytes32" },
|
|
196
|
+
{
|
|
197
|
+
"components": [
|
|
198
|
+
{ "internalType": "bytes32[]", "name": "userIds", "type": "bytes32[]" },
|
|
199
|
+
{ "internalType": "uint256", "name": "threshold", "type": "uint256" }
|
|
200
|
+
],
|
|
201
|
+
"internalType": "structMultiSigGroup",
|
|
202
|
+
"name": "group",
|
|
203
|
+
"type": "tuple"
|
|
204
|
+
}
|
|
205
|
+
],
|
|
206
|
+
"name": "updateMultiSigGroup",
|
|
207
|
+
"outputs": [],
|
|
208
|
+
"stateMutability": "nonpayable",
|
|
209
|
+
"type": "function"
|
|
210
|
+
}
|
|
211
|
+
],
|
|
212
|
+
"addresses": {
|
|
213
|
+
"1": "0xb3DeA1dd1d9aC323041850c0A15C578C883F3f6F",
|
|
214
|
+
"5": "0xb3DeA1dd1d9aC323041850c0A15C578C883F3f6F",
|
|
215
|
+
"10": "0xb3DeA1dd1d9aC323041850c0A15C578C883F3f6F",
|
|
216
|
+
"137": "0xb3DeA1dd1d9aC323041850c0A15C578C883F3f6F",
|
|
217
|
+
"8453": "0xb3DeA1dd1d9aC323041850c0A15C578C883F3f6F",
|
|
218
|
+
"36865": "0xb3DeA1dd1d9aC323041850c0A15C578C883F3f6F",
|
|
219
|
+
"42161": "0xb3DeA1dd1d9aC323041850c0A15C578C883F3f6F",
|
|
220
|
+
"421614": "0x81C464389b2ac51D39aD934732bd172c4126773b",
|
|
221
|
+
"5000": "0x73dBAFFa2B1E93D4c824B70DE8CA8926b9F18339"
|
|
222
|
+
}
|
|
223
|
+
}
|
|
@@ -16,6 +16,9 @@ export declare const BASE_WRAP_TOKEN_ADDR: {
|
|
|
16
16
|
'137': {
|
|
17
17
|
wmatic: string;
|
|
18
18
|
};
|
|
19
|
+
'5000': {
|
|
20
|
+
weth: string;
|
|
21
|
+
};
|
|
19
22
|
'8453': {
|
|
20
23
|
weth: string;
|
|
21
24
|
};
|
|
@@ -972,6 +975,7 @@ export declare const CONTRACT_ADDRESSES: {
|
|
|
972
975
|
"36865": string;
|
|
973
976
|
"42161": string;
|
|
974
977
|
"421614": string;
|
|
978
|
+
"5000": string;
|
|
975
979
|
};
|
|
976
980
|
tokenSwapAddress: {
|
|
977
981
|
"1": string;
|
|
@@ -988,6 +992,7 @@ export declare const CONTRACT_ADDRESSES: {
|
|
|
988
992
|
"5": string;
|
|
989
993
|
"10": string;
|
|
990
994
|
"137": string;
|
|
995
|
+
"5000": string;
|
|
991
996
|
"8453": string;
|
|
992
997
|
"36865": string;
|
|
993
998
|
"42161": string;
|
|
@@ -1002,6 +1007,7 @@ export declare const CONTRACT_ADDRESSES: {
|
|
|
1002
1007
|
"36865": string;
|
|
1003
1008
|
"42161": string;
|
|
1004
1009
|
"421614": string;
|
|
1010
|
+
"5000": string;
|
|
1005
1011
|
};
|
|
1006
1012
|
gaslessPaymasterAddress: {
|
|
1007
1013
|
"1": string;
|
|
@@ -1012,11 +1018,13 @@ export declare const CONTRACT_ADDRESSES: {
|
|
|
1012
1018
|
"36865": string;
|
|
1013
1019
|
"42161": string;
|
|
1014
1020
|
"421614": string;
|
|
1021
|
+
"5000": string;
|
|
1015
1022
|
};
|
|
1016
1023
|
checkoutPaymasterAddress: {
|
|
1017
1024
|
'1': string;
|
|
1018
1025
|
'5': string;
|
|
1019
1026
|
'137': string;
|
|
1027
|
+
'5000': string;
|
|
1020
1028
|
'8453': string;
|
|
1021
1029
|
'42161': string;
|
|
1022
1030
|
'421614': string;
|
|
@@ -1030,6 +1038,7 @@ export declare const CONTRACT_ADDRESSES: {
|
|
|
1030
1038
|
"36865": string;
|
|
1031
1039
|
"42161": string;
|
|
1032
1040
|
"421614": string;
|
|
1041
|
+
"5000": string;
|
|
1033
1042
|
};
|
|
1034
1043
|
tokenPaymasterAddress: {
|
|
1035
1044
|
"1": string;
|
|
@@ -1050,6 +1059,7 @@ export declare const CONTRACT_ADDRESSES: {
|
|
|
1050
1059
|
"36865": string;
|
|
1051
1060
|
"42161": string;
|
|
1052
1061
|
"421614": string;
|
|
1062
|
+
"5000": string;
|
|
1053
1063
|
};
|
|
1054
1064
|
userAuthAddress: {
|
|
1055
1065
|
"1": string;
|
|
@@ -1060,6 +1070,7 @@ export declare const CONTRACT_ADDRESSES: {
|
|
|
1060
1070
|
"36865": string;
|
|
1061
1071
|
"42161": string;
|
|
1062
1072
|
"421614": string;
|
|
1073
|
+
"5000": string;
|
|
1063
1074
|
};
|
|
1064
1075
|
rbacAddress: {
|
|
1065
1076
|
"1": string;
|
|
@@ -1070,6 +1081,7 @@ export declare const CONTRACT_ADDRESSES: {
|
|
|
1070
1081
|
"36865": string;
|
|
1071
1082
|
"42161": string;
|
|
1072
1083
|
"421614": string;
|
|
1084
|
+
"5000": string;
|
|
1073
1085
|
};
|
|
1074
1086
|
feeOracle: {
|
|
1075
1087
|
"1": string;
|
|
@@ -1080,6 +1092,7 @@ export declare const CONTRACT_ADDRESSES: {
|
|
|
1080
1092
|
"36865": string;
|
|
1081
1093
|
"42161": string;
|
|
1082
1094
|
"421614": string;
|
|
1095
|
+
"5000": string;
|
|
1083
1096
|
};
|
|
1084
1097
|
uniswapv3LimitOrder: {
|
|
1085
1098
|
"1": string;
|
|
@@ -1138,6 +1151,7 @@ export declare const CONTRACT_ADDRESSES: {
|
|
|
1138
1151
|
"36865": string;
|
|
1139
1152
|
"42161": string;
|
|
1140
1153
|
"421614": string;
|
|
1154
|
+
"5000": string;
|
|
1141
1155
|
};
|
|
1142
1156
|
funGaslessSponsorAddress: {
|
|
1143
1157
|
'5': string;
|
|
@@ -1228,6 +1242,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1228
1242
|
isMainnet: boolean;
|
|
1229
1243
|
moonpayChainName: string;
|
|
1230
1244
|
pickPriority: number;
|
|
1245
|
+
isStandardEvmAddress: boolean;
|
|
1231
1246
|
} | {
|
|
1232
1247
|
name: "Base";
|
|
1233
1248
|
nativeCurrency: {
|
|
@@ -2325,6 +2340,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
2325
2340
|
isMainnet: boolean;
|
|
2326
2341
|
moonpayChainName: string;
|
|
2327
2342
|
pickPriority: number;
|
|
2343
|
+
isStandardEvmAddress: boolean;
|
|
2328
2344
|
} | {
|
|
2329
2345
|
name: "Polygon";
|
|
2330
2346
|
nativeCurrency: {
|
|
@@ -2375,6 +2391,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
2375
2391
|
isMainnet: boolean;
|
|
2376
2392
|
moonpayChainName: string;
|
|
2377
2393
|
pickPriority: number;
|
|
2394
|
+
isStandardEvmAddress: boolean;
|
|
2378
2395
|
} | {
|
|
2379
2396
|
name: string;
|
|
2380
2397
|
nativeCurrency: {
|
|
@@ -2425,6 +2442,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
2425
2442
|
isMainnet: boolean;
|
|
2426
2443
|
moonpayChainName: string;
|
|
2427
2444
|
pickPriority: number;
|
|
2445
|
+
isStandardEvmAddress: boolean;
|
|
2428
2446
|
} | {
|
|
2429
2447
|
name: "OP Mainnet";
|
|
2430
2448
|
nativeCurrency: {
|
|
@@ -3520,6 +3538,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
3520
3538
|
isMainnet: boolean;
|
|
3521
3539
|
moonpayChainName: string;
|
|
3522
3540
|
pickPriority: number;
|
|
3541
|
+
isStandardEvmAddress: boolean;
|
|
3523
3542
|
} | {
|
|
3524
3543
|
name: string;
|
|
3525
3544
|
nativeCurrency: {
|
|
@@ -4990,6 +5009,58 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
4990
5009
|
isMainnet: boolean;
|
|
4991
5010
|
moonpayChainName: string;
|
|
4992
5011
|
pickPriority: number;
|
|
5012
|
+
isStandardEvmAddress: boolean;
|
|
5013
|
+
} | {
|
|
5014
|
+
name: "Mantle";
|
|
5015
|
+
nativeCurrency: {
|
|
5016
|
+
symbol: "MNT";
|
|
5017
|
+
decimals: 18;
|
|
5018
|
+
name: "MNT";
|
|
5019
|
+
};
|
|
5020
|
+
chainInfo: {
|
|
5021
|
+
blockExplorers: {
|
|
5022
|
+
readonly default: {
|
|
5023
|
+
readonly name: "Mantle Explorer";
|
|
5024
|
+
readonly url: "https://explorer.mantle.xyz";
|
|
5025
|
+
readonly apiUrl: "https://explorer.mantle.xyz/api";
|
|
5026
|
+
};
|
|
5027
|
+
};
|
|
5028
|
+
contracts: {
|
|
5029
|
+
readonly multicall3: {
|
|
5030
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
5031
|
+
readonly blockCreated: 304717;
|
|
5032
|
+
};
|
|
5033
|
+
};
|
|
5034
|
+
id: 5000;
|
|
5035
|
+
name: "Mantle";
|
|
5036
|
+
nativeCurrency: {
|
|
5037
|
+
readonly decimals: 18;
|
|
5038
|
+
readonly name: "MNT";
|
|
5039
|
+
readonly symbol: "MNT";
|
|
5040
|
+
};
|
|
5041
|
+
rpcUrls: {
|
|
5042
|
+
readonly default: {
|
|
5043
|
+
readonly http: readonly ["https://rpc.mantle.xyz"];
|
|
5044
|
+
};
|
|
5045
|
+
};
|
|
5046
|
+
sourceId?: number | undefined;
|
|
5047
|
+
testnet?: boolean | undefined;
|
|
5048
|
+
custom?: Record<string, unknown> | undefined;
|
|
5049
|
+
formatters?: undefined;
|
|
5050
|
+
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
5051
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
5052
|
+
};
|
|
5053
|
+
explorerInfo: {
|
|
5054
|
+
readonly name: "Mantle Explorer";
|
|
5055
|
+
readonly url: "https://explorer.mantle.xyz";
|
|
5056
|
+
readonly apiUrl: "https://explorer.mantle.xyz/api";
|
|
5057
|
+
};
|
|
5058
|
+
isCheckoutSupported: boolean;
|
|
5059
|
+
isFunWalletSupported: boolean;
|
|
5060
|
+
isMainnet: boolean;
|
|
5061
|
+
moonpayChainName: string;
|
|
5062
|
+
pickPriority: number;
|
|
5063
|
+
isStandardEvmAddress: boolean;
|
|
4993
5064
|
} | {
|
|
4994
5065
|
name: "Goerli";
|
|
4995
5066
|
nativeCurrency: {
|
|
@@ -5047,6 +5118,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
5047
5118
|
isMainnet: boolean;
|
|
5048
5119
|
moonpayChainName: null;
|
|
5049
5120
|
pickPriority: number;
|
|
5121
|
+
isStandardEvmAddress: boolean;
|
|
5050
5122
|
} | {
|
|
5051
5123
|
name: "Arbitrum Sepolia";
|
|
5052
5124
|
nativeCurrency: {
|
|
@@ -5096,6 +5168,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
5096
5168
|
isMainnet: boolean;
|
|
5097
5169
|
moonpayChainName: null;
|
|
5098
5170
|
pickPriority: number;
|
|
5171
|
+
isStandardEvmAddress: boolean;
|
|
5099
5172
|
};
|
|
5100
5173
|
};
|
|
5101
5174
|
export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_ID_LIST: string[];
|
|
@@ -8810,6 +8883,38 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
8810
8883
|
};
|
|
8811
8884
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
8812
8885
|
readonly network: "zksync-era";
|
|
8886
|
+
} | {
|
|
8887
|
+
blockExplorers: {
|
|
8888
|
+
readonly default: {
|
|
8889
|
+
readonly name: "Mantle Explorer";
|
|
8890
|
+
readonly url: "https://explorer.mantle.xyz";
|
|
8891
|
+
readonly apiUrl: "https://explorer.mantle.xyz/api";
|
|
8892
|
+
};
|
|
8893
|
+
};
|
|
8894
|
+
contracts: {
|
|
8895
|
+
readonly multicall3: {
|
|
8896
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
8897
|
+
readonly blockCreated: 304717;
|
|
8898
|
+
};
|
|
8899
|
+
};
|
|
8900
|
+
id: 5000;
|
|
8901
|
+
name: "Mantle";
|
|
8902
|
+
nativeCurrency: {
|
|
8903
|
+
readonly decimals: 18;
|
|
8904
|
+
readonly name: "MNT";
|
|
8905
|
+
readonly symbol: "MNT";
|
|
8906
|
+
};
|
|
8907
|
+
rpcUrls: {
|
|
8908
|
+
readonly default: {
|
|
8909
|
+
readonly http: readonly ["https://rpc.mantle.xyz"];
|
|
8910
|
+
};
|
|
8911
|
+
};
|
|
8912
|
+
sourceId?: number | undefined;
|
|
8913
|
+
testnet?: boolean | undefined;
|
|
8914
|
+
custom?: Record<string, unknown> | undefined;
|
|
8915
|
+
formatters?: undefined;
|
|
8916
|
+
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
8917
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
8813
8918
|
} | {
|
|
8814
8919
|
blockExplorers: {
|
|
8815
8920
|
readonly default: {
|
|
@@ -12593,6 +12698,38 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
12593
12698
|
};
|
|
12594
12699
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
12595
12700
|
readonly network: "zksync-era";
|
|
12701
|
+
} | {
|
|
12702
|
+
blockExplorers: {
|
|
12703
|
+
readonly default: {
|
|
12704
|
+
readonly name: "Mantle Explorer";
|
|
12705
|
+
readonly url: "https://explorer.mantle.xyz";
|
|
12706
|
+
readonly apiUrl: "https://explorer.mantle.xyz/api";
|
|
12707
|
+
};
|
|
12708
|
+
};
|
|
12709
|
+
contracts: {
|
|
12710
|
+
readonly multicall3: {
|
|
12711
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
12712
|
+
readonly blockCreated: 304717;
|
|
12713
|
+
};
|
|
12714
|
+
};
|
|
12715
|
+
id: 5000;
|
|
12716
|
+
name: "Mantle";
|
|
12717
|
+
nativeCurrency: {
|
|
12718
|
+
readonly decimals: 18;
|
|
12719
|
+
readonly name: "MNT";
|
|
12720
|
+
readonly symbol: "MNT";
|
|
12721
|
+
};
|
|
12722
|
+
rpcUrls: {
|
|
12723
|
+
readonly default: {
|
|
12724
|
+
readonly http: readonly ["https://rpc.mantle.xyz"];
|
|
12725
|
+
};
|
|
12726
|
+
};
|
|
12727
|
+
sourceId?: number | undefined;
|
|
12728
|
+
testnet?: boolean | undefined;
|
|
12729
|
+
custom?: Record<string, unknown> | undefined;
|
|
12730
|
+
formatters?: undefined;
|
|
12731
|
+
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
12732
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
12596
12733
|
} | {
|
|
12597
12734
|
blockExplorers: {
|
|
12598
12735
|
readonly default: {
|