@instadapp/avocado-base 0.0.0-dev.19925f5 → 0.0.0-dev.2037715
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/abi/avoFactoryProxy.json +109 -0
- package/abi/balanceResolver.json +110 -0
- package/abi/erc20.json +350 -0
- package/abi/forwarder.json +1435 -0
- package/abi/gaslessWallet.json +289 -0
- package/app.vue +20 -0
- package/assets/images/icons/arrow-left.svg +5 -0
- package/assets/images/icons/arrow-right.svg +5 -0
- package/assets/images/icons/avocado.svg +4 -0
- package/assets/images/icons/bridge-2.svg +3 -0
- package/assets/images/icons/bridge.svg +7 -0
- package/assets/images/icons/calendar.svg +8 -0
- package/assets/images/icons/check-circle.svg +4 -0
- package/assets/images/icons/chevron-down.svg +4 -0
- package/assets/images/icons/clipboard.svg +7 -0
- package/assets/images/icons/clock-circle.svg +5 -0
- package/assets/images/icons/copy.svg +5 -0
- package/assets/images/icons/error-circle.svg +6 -0
- package/assets/images/icons/exclamation-circle.svg +13 -0
- package/assets/images/icons/exclamation-octagon.svg +13 -0
- package/assets/images/icons/exclamation-triangle.svg +5 -0
- package/assets/images/icons/external-link.svg +6 -0
- package/assets/images/icons/eye.svg +4 -0
- package/assets/images/icons/flowers.svg +8 -0
- package/assets/images/icons/gas-emoji.svg +193 -0
- package/assets/images/icons/gas.svg +7 -0
- package/assets/images/icons/gift.svg +153 -0
- package/assets/images/icons/globe.svg +110 -0
- package/assets/images/icons/hamburger.svg +6 -0
- package/assets/images/icons/logout.svg +3 -0
- package/assets/images/icons/moon.svg +3 -0
- package/assets/images/icons/network.svg +13 -0
- package/assets/images/icons/options.svg +5 -0
- package/assets/images/icons/plus.svg +5 -0
- package/assets/images/icons/power-off-bg.svg +24 -0
- package/assets/images/icons/power-off.svg +19 -0
- package/assets/images/icons/power-on.svg +19 -0
- package/assets/images/icons/qr.svg +20 -0
- package/assets/images/icons/question-circle.svg +14 -0
- package/assets/images/icons/refresh.svg +6 -0
- package/assets/images/icons/search.svg +12 -0
- package/assets/images/icons/sun.svg +3 -0
- package/assets/images/icons/wave.svg +214 -0
- package/assets/images/icons/x.svg +5 -0
- package/components/ActionMetadata.vue +50 -0
- package/components/ChainLogo.vue +141 -1
- package/components/metadata/Bridge.vue +37 -0
- package/components/metadata/CrossTransfer.vue +65 -0
- package/components/metadata/GasTopup.vue +31 -0
- package/components/metadata/Permit2.vue +37 -0
- package/components/metadata/Swap.vue +66 -0
- package/components/metadata/Transfer.vue +43 -0
- package/components.d.ts +13 -0
- package/contracts/AvoFactoryProxy.ts +302 -0
- package/contracts/BalanceResolver.ts +321 -0
- package/contracts/Erc20.ts +526 -0
- package/contracts/Forwarder.ts +1644 -0
- package/contracts/GaslessWallet.ts +660 -0
- package/contracts/common.ts +46 -0
- package/contracts/factories/AvoFactoryProxy__factory.ts +181 -0
- package/contracts/factories/BalanceResolver__factory.ts +212 -0
- package/contracts/factories/Erc20__factory.ts +368 -0
- package/contracts/factories/Forwarder__factory.ts +1456 -0
- package/contracts/factories/GaslessWallet__factory.ts +499 -0
- package/contracts/factories/index.ts +8 -0
- package/contracts/index.ts +14 -0
- package/nuxt.config.ts +18 -2
- package/package.json +14 -5
- package/server/utils/index.ts +2 -0
- package/utils/avocado.ts +2 -0
- package/utils/bignumber.ts +51 -0
- package/utils/formatter.ts +94 -0
- package/utils/helper.ts +54 -0
- package/utils/metadata.ts +444 -0
- package/utils/network.ts +165 -26
- package/utils/services.ts +14 -0
- package/utils/utils.d.ts +116 -3
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"inputs": [
|
|
4
|
+
{
|
|
5
|
+
"internalType": "contract IGSWVersionsRegistry",
|
|
6
|
+
"name": "gswVersionsRegistry_",
|
|
7
|
+
"type": "address"
|
|
8
|
+
},
|
|
9
|
+
{ "internalType": "address", "name": "gswForwarder_", "type": "address" }
|
|
10
|
+
],
|
|
11
|
+
"stateMutability": "nonpayable",
|
|
12
|
+
"type": "constructor"
|
|
13
|
+
},
|
|
14
|
+
{ "inputs": [], "name": "GaslessSmartWallet__Expired", "type": "error" },
|
|
15
|
+
{
|
|
16
|
+
"inputs": [],
|
|
17
|
+
"name": "GaslessSmartWallet__InvalidParams",
|
|
18
|
+
"type": "error"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"inputs": [],
|
|
22
|
+
"name": "GaslessSmartWallet__InvalidSignature",
|
|
23
|
+
"type": "error"
|
|
24
|
+
},
|
|
25
|
+
{ "inputs": [], "name": "GaslessSmartWallet__Unauthorized", "type": "error" },
|
|
26
|
+
{ "inputs": [], "name": "SelfUpgradeable__Unauthorized", "type": "error" },
|
|
27
|
+
{
|
|
28
|
+
"anonymous": false,
|
|
29
|
+
"inputs": [
|
|
30
|
+
{
|
|
31
|
+
"indexed": true,
|
|
32
|
+
"internalType": "address",
|
|
33
|
+
"name": "source",
|
|
34
|
+
"type": "address"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"indexed": true,
|
|
38
|
+
"internalType": "address",
|
|
39
|
+
"name": "caller",
|
|
40
|
+
"type": "address"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"indexed": false,
|
|
44
|
+
"internalType": "bytes",
|
|
45
|
+
"name": "metadata",
|
|
46
|
+
"type": "bytes"
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"name": "CastExecuted",
|
|
50
|
+
"type": "event"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"anonymous": false,
|
|
54
|
+
"inputs": [
|
|
55
|
+
{
|
|
56
|
+
"indexed": true,
|
|
57
|
+
"internalType": "address",
|
|
58
|
+
"name": "source",
|
|
59
|
+
"type": "address"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"indexed": true,
|
|
63
|
+
"internalType": "address",
|
|
64
|
+
"name": "caller",
|
|
65
|
+
"type": "address"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"indexed": false,
|
|
69
|
+
"internalType": "string",
|
|
70
|
+
"name": "reason",
|
|
71
|
+
"type": "string"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"indexed": false,
|
|
75
|
+
"internalType": "bytes",
|
|
76
|
+
"name": "metadata",
|
|
77
|
+
"type": "bytes"
|
|
78
|
+
}
|
|
79
|
+
],
|
|
80
|
+
"name": "CastFailed",
|
|
81
|
+
"type": "event"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"anonymous": false,
|
|
85
|
+
"inputs": [
|
|
86
|
+
{
|
|
87
|
+
"indexed": false,
|
|
88
|
+
"internalType": "uint8",
|
|
89
|
+
"name": "version",
|
|
90
|
+
"type": "uint8"
|
|
91
|
+
}
|
|
92
|
+
],
|
|
93
|
+
"name": "Initialized",
|
|
94
|
+
"type": "event"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"anonymous": false,
|
|
98
|
+
"inputs": [
|
|
99
|
+
{
|
|
100
|
+
"indexed": true,
|
|
101
|
+
"internalType": "address",
|
|
102
|
+
"name": "gswImpl",
|
|
103
|
+
"type": "address"
|
|
104
|
+
}
|
|
105
|
+
],
|
|
106
|
+
"name": "Upgraded",
|
|
107
|
+
"type": "event"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"inputs": [],
|
|
111
|
+
"name": "ACTION_TYPE_HASH",
|
|
112
|
+
"outputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }],
|
|
113
|
+
"stateMutability": "view",
|
|
114
|
+
"type": "function"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"inputs": [],
|
|
118
|
+
"name": "CAST_TYPE_HASH",
|
|
119
|
+
"outputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }],
|
|
120
|
+
"stateMutability": "view",
|
|
121
|
+
"type": "function"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"inputs": [],
|
|
125
|
+
"name": "DEFAULT_CHAIN_ID",
|
|
126
|
+
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
127
|
+
"stateMutability": "view",
|
|
128
|
+
"type": "function"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"inputs": [],
|
|
132
|
+
"name": "DOMAIN_SEPARATOR_NAME",
|
|
133
|
+
"outputs": [{ "internalType": "string", "name": "", "type": "string" }],
|
|
134
|
+
"stateMutability": "view",
|
|
135
|
+
"type": "function"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"inputs": [],
|
|
139
|
+
"name": "DOMAIN_SEPARATOR_VERSION",
|
|
140
|
+
"outputs": [{ "internalType": "string", "name": "", "type": "string" }],
|
|
141
|
+
"stateMutability": "view",
|
|
142
|
+
"type": "function"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"inputs": [],
|
|
146
|
+
"name": "TYPE_HASH",
|
|
147
|
+
"outputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }],
|
|
148
|
+
"stateMutability": "view",
|
|
149
|
+
"type": "function"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"inputs": [
|
|
153
|
+
{
|
|
154
|
+
"components": [
|
|
155
|
+
{ "internalType": "address", "name": "target", "type": "address" },
|
|
156
|
+
{ "internalType": "bytes", "name": "data", "type": "bytes" },
|
|
157
|
+
{ "internalType": "uint256", "name": "value", "type": "uint256" }
|
|
158
|
+
],
|
|
159
|
+
"internalType": "struct IGaslessSmartWallet.Action[]",
|
|
160
|
+
"name": "actions_",
|
|
161
|
+
"type": "tuple[]"
|
|
162
|
+
}
|
|
163
|
+
],
|
|
164
|
+
"name": "_callTargets",
|
|
165
|
+
"outputs": [],
|
|
166
|
+
"stateMutability": "payable",
|
|
167
|
+
"type": "function"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"inputs": [
|
|
171
|
+
{
|
|
172
|
+
"components": [
|
|
173
|
+
{ "internalType": "address", "name": "target", "type": "address" },
|
|
174
|
+
{ "internalType": "bytes", "name": "data", "type": "bytes" },
|
|
175
|
+
{ "internalType": "uint256", "name": "value", "type": "uint256" }
|
|
176
|
+
],
|
|
177
|
+
"internalType": "struct IGaslessSmartWallet.Action[]",
|
|
178
|
+
"name": "actions_",
|
|
179
|
+
"type": "tuple[]"
|
|
180
|
+
},
|
|
181
|
+
{ "internalType": "uint256", "name": "validUntil_", "type": "uint256" },
|
|
182
|
+
{ "internalType": "uint256", "name": "gas_", "type": "uint256" },
|
|
183
|
+
{ "internalType": "address", "name": "source_", "type": "address" },
|
|
184
|
+
{ "internalType": "bytes", "name": "metadata_", "type": "bytes" },
|
|
185
|
+
{ "internalType": "bytes", "name": "signature_", "type": "bytes" }
|
|
186
|
+
],
|
|
187
|
+
"name": "cast",
|
|
188
|
+
"outputs": [
|
|
189
|
+
{ "internalType": "bool", "name": "success_", "type": "bool" },
|
|
190
|
+
{ "internalType": "string", "name": "revertReason_", "type": "string" }
|
|
191
|
+
],
|
|
192
|
+
"stateMutability": "payable",
|
|
193
|
+
"type": "function"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"inputs": [],
|
|
197
|
+
"name": "domainSeparatorV4",
|
|
198
|
+
"outputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }],
|
|
199
|
+
"stateMutability": "view",
|
|
200
|
+
"type": "function"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"inputs": [],
|
|
204
|
+
"name": "gswForwarder",
|
|
205
|
+
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
|
|
206
|
+
"stateMutability": "view",
|
|
207
|
+
"type": "function"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"inputs": [],
|
|
211
|
+
"name": "gswNonce",
|
|
212
|
+
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
|
|
213
|
+
"stateMutability": "view",
|
|
214
|
+
"type": "function"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"inputs": [],
|
|
218
|
+
"name": "gswVersionsRegistry",
|
|
219
|
+
"outputs": [
|
|
220
|
+
{
|
|
221
|
+
"internalType": "contract IGSWVersionsRegistry",
|
|
222
|
+
"name": "",
|
|
223
|
+
"type": "address"
|
|
224
|
+
}
|
|
225
|
+
],
|
|
226
|
+
"stateMutability": "view",
|
|
227
|
+
"type": "function"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"inputs": [
|
|
231
|
+
{ "internalType": "address", "name": "owner_", "type": "address" }
|
|
232
|
+
],
|
|
233
|
+
"name": "initialize",
|
|
234
|
+
"outputs": [],
|
|
235
|
+
"stateMutability": "nonpayable",
|
|
236
|
+
"type": "function"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"inputs": [],
|
|
240
|
+
"name": "owner",
|
|
241
|
+
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
|
|
242
|
+
"stateMutability": "view",
|
|
243
|
+
"type": "function"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"inputs": [
|
|
247
|
+
{ "internalType": "address", "name": "gswImpl_", "type": "address" }
|
|
248
|
+
],
|
|
249
|
+
"name": "upgradeTo",
|
|
250
|
+
"outputs": [],
|
|
251
|
+
"stateMutability": "nonpayable",
|
|
252
|
+
"type": "function"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"inputs": [
|
|
256
|
+
{ "internalType": "address", "name": "gswImpl_", "type": "address" },
|
|
257
|
+
{ "internalType": "bytes", "name": "data_", "type": "bytes" },
|
|
258
|
+
{ "internalType": "bool", "name": "forceCall_", "type": "bool" }
|
|
259
|
+
],
|
|
260
|
+
"name": "upgradeToAndCall",
|
|
261
|
+
"outputs": [],
|
|
262
|
+
"stateMutability": "payable",
|
|
263
|
+
"type": "function"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"inputs": [
|
|
267
|
+
{
|
|
268
|
+
"components": [
|
|
269
|
+
{ "internalType": "address", "name": "target", "type": "address" },
|
|
270
|
+
{ "internalType": "bytes", "name": "data", "type": "bytes" },
|
|
271
|
+
{ "internalType": "uint256", "name": "value", "type": "uint256" }
|
|
272
|
+
],
|
|
273
|
+
"internalType": "struct IGaslessSmartWallet.Action[]",
|
|
274
|
+
"name": "actions_",
|
|
275
|
+
"type": "tuple[]"
|
|
276
|
+
},
|
|
277
|
+
{ "internalType": "uint256", "name": "validUntil_", "type": "uint256" },
|
|
278
|
+
{ "internalType": "uint256", "name": "gas_", "type": "uint256" },
|
|
279
|
+
{ "internalType": "address", "name": "source_", "type": "address" },
|
|
280
|
+
{ "internalType": "bytes", "name": "metadata_", "type": "bytes" },
|
|
281
|
+
{ "internalType": "bytes", "name": "signature_", "type": "bytes" }
|
|
282
|
+
],
|
|
283
|
+
"name": "verify",
|
|
284
|
+
"outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
|
|
285
|
+
"stateMutability": "view",
|
|
286
|
+
"type": "function"
|
|
287
|
+
},
|
|
288
|
+
{ "stateMutability": "payable", "type": "receive" }
|
|
289
|
+
]
|
package/app.vue
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="container mx-auto">
|
|
3
|
+
Networks:
|
|
4
|
+
<ul class="grid grid-cols-5 gap-5">
|
|
5
|
+
<li class="w-fit" v-for="network in networks">
|
|
6
|
+
<p>
|
|
7
|
+
{{ network.name }}
|
|
8
|
+
</p>
|
|
9
|
+
<p>
|
|
10
|
+
{{ network.chainId }}
|
|
11
|
+
</p>
|
|
12
|
+
<div class="flex items-center gap-2">
|
|
13
|
+
<ChainLogo class="w-8 h-8" :chain="network.chainId" />
|
|
14
|
+
<ChainLogo stroke class="w-8 h-8" :chain="network.chainId" />
|
|
15
|
+
</div>
|
|
16
|
+
</li>
|
|
17
|
+
</ul>
|
|
18
|
+
</div>
|
|
19
|
+
<ul></ul>
|
|
20
|
+
</template>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none"
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M12.6693 8H3.33594" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M8.00261 12.6666L3.33594 7.99992L8.00261 3.33325" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none"
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M4.16663 10H15.8333" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M10 4.16669L15.8333 10L10 15.8334" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none"
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M19.9998 30.8103C19.9998 31.4993 20.5575 32.0644 21.2394 31.9941C27.2844 31.3708 32 26.2388 32 20C32 13.7612 27.2844 8.62924 21.2394 8.00598C20.5575 7.9353 19.9998 8.50076 19.9998 9.18971V12.516C19.9998 13.2049 20.5613 13.7504 21.2334 13.8864C24.0706 14.4614 26.207 16.9798 26.207 20C26.207 23.0203 24.0706 25.5387 21.2334 26.1137C20.5613 26.2496 19.9998 26.7956 19.9998 27.4841V30.8103ZM16.2757 10.2533C16.2757 9.40509 15.4494 8.80719 14.6928 9.18264C10.7274 11.1505 8 15.2551 8 20C8 24.7449 10.7274 28.8495 14.6928 30.8174C15.4494 31.1929 16.2757 30.595 16.2757 29.7468V10.2537V10.2533Z" fill="#4CA054"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.18 13.0289H0.823586M3.26886 16.3636V1.63635M14.6848 16.3136V1.6378M17.18 7.48625C15.7269 6.38316 14.6848 4.4332 14.6848 1.63635C14.6848 10.873 3.31163 10.873 3.31163 1.63635C3.31163 4.4332 2.26953 6.38316 0.816406 7.48625" stroke="white" stroke-width="1.5" stroke-linecap="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="26" height="26" viewBox="0 0 26 26" fill="none"
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M17.9993 15.9583L15.0479 18.9583" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M8 15.9583H18" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M8 11L10.9515 8" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M18 11H8" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M6.6886 1L6.6886 4.6564" stroke="#94A3B8" stroke-width="2" stroke-linecap="round"/>
|
|
4
|
+
<path d="M13.3014 1L13.3014 4.6564" stroke="#94A3B8" stroke-width="2" stroke-linecap="round"/>
|
|
5
|
+
<path d="M18.3549 9.43079L1.64512 9.43078L1.87968 3.62074L9.90152 3.05234L18.355 3.62074L18.3549 9.43079Z" fill="#94A3B8"/>
|
|
6
|
+
<path d="M1.22919 14.5151C1.48646 16.9147 3.45528 18.8149 5.86654 18.9159C7.18793 18.9713 8.54289 19 10 19C11.4571 19 12.8121 18.9713 14.1335 18.9159C16.5447 18.8149 18.5135 16.9147 18.7708 14.5151C18.9013 13.2975 19 12.0544 19 10.7912C19 9.52805 18.9013 8.28494 18.7708 7.06743C18.5135 4.66781 16.5447 2.7676 14.1335 2.66655C12.8121 2.61118 11.4571 2.58252 10 2.58252C8.5429 2.58252 7.18793 2.61118 5.86654 2.66655C3.45528 2.7676 1.48646 4.66781 1.22919 7.06743C1.09866 8.28494 1 9.52805 1 10.7912C1 12.0544 1.09866 13.2975 1.22919 14.5151Z" stroke="#94A3B8" stroke-width="2"/>
|
|
7
|
+
<path d="M1.43066 8.88342H18.658" stroke="#94A3B8" stroke-width="2"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M15.2271 27.5C22.1306 27.5 27.7271 21.9036 27.7271 15C27.7271 8.09644 22.1306 2.5 15.2271 2.5C8.32349 2.5 2.72705 8.09644 2.72705 15C2.72705 21.9036 8.32349 27.5 15.2271 27.5Z" fill="white" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M20 12L13.125 19L10 15.8182" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none"
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M3.59333 15.0092C3.75349 16.6101 5.02432 17.9091 6.62149 18.1041C7.82176 18.2506 9.05437 18.377 10.3112 18.377C11.568 18.377 12.8006 18.2506 14.0009 18.1041C15.5981 17.9091 16.8689 16.6101 17.0291 15.0092C17.1675 13.6251 17.2904 12.2007 17.2904 10.7466C17.2904 9.29243 17.1675 7.86804 17.0291 6.48398C16.8689 4.88293 15.5981 3.58403 14.0009 3.38906C12.8006 3.24253 11.568 3.11621 10.3112 3.11621C9.05437 3.11621 7.82176 3.24253 6.62149 3.38906C5.02432 3.58403 3.75349 4.88293 3.59333 6.48398C3.45487 7.86804 3.33203 9.29243 3.33203 10.7466C3.33203 12.2007 3.45487 13.6251 3.59333 15.0092Z" stroke="#94A3B8" stroke-width="2"/>
|
|
4
|
+
<path class="paste-path" d="M6.64062 3.28556C6.64062 4.46516 7.76321 5.35188 8.94099 5.41733C9.39091 5.44231 9.84856 5.46005 10.3125 5.46005C10.7764 5.46005 11.2341 5.44231 11.684 5.41733C12.8618 5.35188 13.9844 4.46516 13.9844 3.28556C13.9844 2.10596 12.8618 1.21924 11.684 1.1538C11.2341 1.1288 10.7764 1.11108 10.3125 1.11108C9.84856 1.11108 9.39091 1.1288 8.94099 1.1538C7.76321 1.21924 6.64062 2.10596 6.64062 3.28556Z" fill="#1E293B" stroke="#94A3B8" stroke-width="2"/>
|
|
5
|
+
<path d="M12.1905 9.44434H8.69531" stroke="#94A3B8" stroke-width="2" stroke-linecap="round"/>
|
|
6
|
+
<path d="M12.1905 13.3799H8.69531" stroke="#94A3B8" stroke-width="2" stroke-linecap="round"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="9.00056" cy="9.00007" r="8.03572" fill="currentColor" />
|
|
3
|
+
<path d="M9 5.80151V9.0158L10.9286 10.9444" stroke="white" stroke-width="2" stroke-linecap="round"
|
|
4
|
+
stroke-linejoin="round" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none"
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path class="copy-path" d="M14.1145 9.94827C14.1816 8.8779 14.2168 7.76883 14.2168 6.63246C14.2168 6.17207 14.211 5.71616 14.1997 5.26549C14.1917 4.94654 14.0882 4.63658 13.8994 4.37941C13.185 3.40646 12.6153 2.80088 11.6777 2.07698C11.4181 1.87657 11.0995 1.76786 10.7717 1.76072C10.4455 1.75361 10.105 1.75 9.74121 1.75C8.63995 1.75 7.75104 1.78308 6.8319 1.84613C6.04346 1.90021 5.41726 2.5279 5.36787 3.31665C5.30084 4.38702 5.26562 5.49608 5.26562 6.63246C5.26562 7.76883 5.30085 8.8779 5.36787 9.94827C5.41726 10.737 6.04346 11.3647 6.8319 11.4188C7.75104 11.4818 8.63995 11.5149 9.74121 11.5149C10.8425 11.5149 11.7314 11.4818 12.6505 11.4188C13.439 11.3647 14.0652 10.737 14.1145 9.94827Z" stroke="#94A3B8" stroke-width="2"/>
|
|
4
|
+
<path class="copy-path" d="M10.6341 12.6834C10.7011 11.613 10.7363 10.5039 10.7363 9.36756C10.7363 8.90717 10.7306 8.45126 10.7192 8.00059C10.7112 7.68165 10.6078 7.37169 10.4189 7.11452C9.70458 6.14157 9.13488 5.53599 8.19725 4.81209C7.93767 4.61167 7.61907 4.50297 7.29121 4.49582C6.96506 4.48872 6.62448 4.48511 6.26074 4.48511C5.15949 4.48511 4.27057 4.51819 3.35143 4.58123C2.56299 4.63531 1.9368 5.26301 1.88741 6.05176C1.82038 7.12213 1.78516 8.23119 1.78516 9.36756C1.78516 10.5039 1.82038 11.613 1.88741 12.6834C1.9368 13.4721 2.56299 14.0998 3.35143 14.1539C4.27057 14.2169 5.15949 14.25 6.26074 14.25C7.362 14.25 8.25091 14.2169 9.17005 14.1539C9.95849 14.0998 10.5847 13.4721 10.6341 12.6834Z" stroke="#94A3B8" stroke-width="2"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none"
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<rect width="40" height="40" rx="20" fill="#EB5757"/>
|
|
4
|
+
<path d="M25 15L15 25" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M15 15L25 25" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none"
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<g clip-path="url(#clip0_3334_32814)">
|
|
4
|
+
<path d="M7 14C10.866 14 14 10.866 14 7C14 3.13401 10.866 0 7 0C3.13401 0 0 3.13401 0 7C0 10.866 3.13401 14 7 14Z" fill="currentColor"/>
|
|
5
|
+
<path d="M6.99609 4.27783L6.99609 6.61117" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M6.99609 9.72217L7.00609 9.72217" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
</g>
|
|
8
|
+
<defs>
|
|
9
|
+
<clipPath id="clip0_3334_32814">
|
|
10
|
+
<rect width="14" height="14" fill="white"/>
|
|
11
|
+
</clipPath>
|
|
12
|
+
</defs>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg width="14" height="15" viewBox="0 0 14 15" fill="none"
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<g clip-path="url(#clip0_4869_168425)">
|
|
4
|
+
<path d="M4.58435 1.66675H9.41435L12.8327 5.08508V9.91508L9.41435 13.3334H4.58435L1.16602 9.91508V5.08508L4.58435 1.66675Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M7 5.16675V7.50008" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M7 9.83325H7.00583" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
</g>
|
|
8
|
+
<defs>
|
|
9
|
+
<clipPath id="clip0_4869_168425">
|
|
10
|
+
<rect width="14" height="14" fill="white" transform="translate(0 0.5)"/>
|
|
11
|
+
</clipPath>
|
|
12
|
+
</defs>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.8625 4.82501L2.27497 22.5C2.05668 22.878 1.94117 23.3066 1.93995 23.7432C1.93873 24.1797 2.05183 24.6089 2.268 24.9882C2.48417 25.3674 2.79587 25.6834 3.1721 25.9048C3.54833 26.1262 3.97596 26.2452 4.41247 26.25H25.5875C26.024 26.2452 26.4516 26.1262 26.8278 25.9048C27.2041 25.6834 27.5158 25.3674 27.7319 24.9882C27.9481 24.6089 28.0612 24.1797 28.06 23.7432C28.0588 23.3066 27.9433 22.878 27.725 22.5L17.1375 4.82501C16.9146 4.45764 16.6009 4.15391 16.2265 3.94312C15.8521 3.73232 15.4296 3.62158 15 3.62158C14.5703 3.62158 14.1479 3.73232 13.7735 3.94312C13.3991 4.15391 13.0853 4.45764 12.8625 4.82501Z" fill="white" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M15 11.25V16.25" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M15 21.25H15.0139" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="18" height="18" viewBox="0 0 18 18" fill="none"
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M7.02761 4.42847C6.07671 4.47127 5.14468 4.57749 4.23689 4.68263C3.27739 4.79376 2.51075 5.55985 2.40314 6.51975C2.2722 7.68773 2.14258 8.89597 2.14258 10.1329C2.14258 11.3699 2.2722 12.5781 2.40314 13.7461C2.51075 14.706 3.27737 15.4721 4.23687 15.5832C5.41124 15.7192 6.6262 15.857 7.87007 15.857C9.11395 15.857 10.3289 15.7192 11.5033 15.5832C12.4628 15.4721 13.2294 14.706 13.337 13.7461C13.4322 12.8972 13.5266 12.0272 13.5711 11.1403" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
|
4
|
+
<path d="M10.7148 2.71436H15.2863V7.28578" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M8.42773 9.5715L15.2849 2.71436" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="22" height="18" viewBox="0 0 22 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.916656 8.99996C0.916656 8.99996 4.58332 1.66663 11 1.66663C17.4167 1.66663 21.0833 8.99996 21.0833 8.99996C21.0833 8.99996 17.4167 16.3333 11 16.3333C4.58332 16.3333 0.916656 8.99996 0.916656 8.99996Z" stroke="#94A3B8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M11 11.75C12.5188 11.75 13.75 10.5188 13.75 9C13.75 7.48122 12.5188 6.25 11 6.25C9.48122 6.25 8.25 7.48122 8.25 9C8.25 10.5188 9.48122 11.75 11 11.75Z" stroke="#94A3B8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none"
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M1.046 11.2616C1.23966 13.1837 2.79383 14.7386 4.71502 14.9411C5.78723 15.0541 6.88346 15.1429 7.99833 15.1429C9.11319 15.1429 10.2094 15.0541 11.2816 14.9411C13.2028 14.7386 14.757 13.1837 14.9507 11.2616C15.058 10.1964 15.1412 9.10744 15.1412 8.00003C15.1412 6.89263 15.058 5.80367 14.9507 4.73847C14.757 2.81637 13.2028 1.26144 11.2816 1.05899C10.2094 0.946009 9.11319 0.857178 7.99833 0.857178C6.88346 0.857178 5.78723 0.946009 4.71502 1.05899C2.79383 1.26144 1.23966 2.81637 1.046 4.73847C0.938675 5.80367 0.855469 6.89263 0.855469 8.00003C0.855469 9.10744 0.938675 10.1964 1.046 11.2616Z" stroke="#94A3B8" stroke-width="1.5"/>
|
|
4
|
+
<path d="M8 10.2856L8 15.1428" stroke="#94A3B8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M4.57031 6.85725C4.57031 9.6001 6.85603 10.2858 7.99888 10.2858C9.14174 10.2858 11.4275 9.6001 11.4275 6.85725V4.57153C10.856 4.57154 9.37031 4.80013 7.99888 5.71442C6.62746 4.80013 5.14174 4.57154 4.57031 4.57153V6.85725Z" stroke="#94A3B8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M5.14453 12.5715C5.71596 12.762 7.08739 13.4858 8.00167 14.8572" stroke="#94A3B8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path d="M10.8555 12.5715C10.284 12.762 8.91261 13.4858 7.99833 14.8572" stroke="#94A3B8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
</svg>
|