-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathindex.tsx
257 lines (235 loc) · 7.74 KB
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
import './styles.css';
import React, { useEffect } from 'react';
import { useState } from 'react';
import WormholeConnect from '../../WormholeConnect';
import { WormholeConnectConfig } from 'config/types';
import { compressToBase64, decompressFromBase64 } from 'lz-string';
/*
*
* For the purposes of the DemoApp config sandbox, we expose the same exports
* that are available from the production @wormhole-foundation/wormhole-connect
* library.
*
* These can be referenced in the same way in the DemoApp sandbox so that the
* config works when it's copy and pasted into an actual integrator project.
*
* The exports are:
* - DEFAULT_ROUTES
* - nttRoutes
* - AutomaticTokenBridgeRoute
* - TokenBridgeRoute
* - AutomaticCCTPRoute
* - ManualCCTPRoute
*
* We also make the following test utilities available:
* - nttTestRoutesMainnet
* - nttTestRoutesTestnet
* These just call nttRoutes() with a working config so that we can
* easily test NTT in the DemoApp.
*
*/
import { routes } from '@wormhole-foundation/sdk';
import {
MayanRoute,
MayanRouteWH,
MayanRouteMCTP,
MayanRouteSWIFT,
} from '@mayanfinance/wormhole-sdk-route';
import { NTT_TEST_CONFIG_TESTNET, NTT_TEST_CONFIG_MAINNET } from './consts';
import { DEFAULT_ROUTES, nttRoutes } from 'routes/operator';
import { AutomaticTokenBridgeRouteV3 } from '@xlabs-xyz/arbitrary-token-transfer-route';
const MAX_URL_SIZE = 30_000; // 30kb (HTTP header limit is set to 32kb)
const parseConfig = (config: string): WormholeConnectConfig => {
if (config) {
try {
// Using ts-ignore on these because TypeScript is confused
// (They are meant to be used by the code passed into eval() below)
/* @ts-ignore */
window.DEFAULT_ROUTES = DEFAULT_ROUTES;
/* @ts-ignore */
window.nttRoutes = nttRoutes;
/* @ts-ignore */
window.AutomaticTokenBridgeRoute = routes.AutomaticTokenBridgeRoute;
/* @ts-ignore */
window.AutomaticCCTPRoute = routes.AutomaticCCTPRoute;
/* @ts-ignore */
window.TokenBridgeRoute = routes.TokenBridgeRoute;
/* @ts-ignore */
window.CCTPRoute = routes.CCTPRoute;
/* @ts-ignore */
window.AutomaticPorticoRoute = routes.AutomaticPorticoRoute;
/* @ts-ignore */
window.MayanRoute = MayanRoute;
/* @ts-ignore */
window.MayanRouteWH = MayanRouteWH;
/* @ts-ignore */
window.MayanRouteMCTP = MayanRouteMCTP;
/* @ts-ignore */
window.MayanRouteSWIFT = MayanRouteSWIFT;
/* @ts-ignore */
window.testNttRoutesTestnet = () => nttRoutes(NTT_TEST_CONFIG_TESTNET);
/* @ts-ignore */
window.testNttRoutesMainnet = () => nttRoutes(NTT_TEST_CONFIG_MAINNET);
/* @ts-ignore */
window.AutomaticTokenBridgeRouteV3 = AutomaticTokenBridgeRouteV3;
return eval(
`(function() { return ${config} })()`,
) as WormholeConnectConfig;
} catch (e) {
console.error('Failed to parse custom config: ', e, config);
}
}
return {};
};
const loadInitialConfig = (): string => {
const params = new URLSearchParams(window.location.search);
const configQuery = params.get('config');
const configCached = localStorage.getItem(LOCAL_STORAGE_KEY);
if (configQuery) {
return decompressFromBase64(configQuery);
} else if (configCached) {
return configCached;
} else {
return '';
}
};
const setUrlQueryParam = (configInput: string) => {
const url = new URL(window.location.toString());
const compressedQuery = compressToBase64(configInput);
if (configInput === '' || configInput.length > MAX_URL_SIZE) {
url.searchParams.delete('config');
} else {
url.searchParams.set('config', compressedQuery);
}
history.replaceState({}, '', url.toString());
};
const LOCAL_STORAGE_KEY = 'wormhole-connect:demo:custom-config';
function DemoApp() {
const [customConfig, setCustomConfig] = useState<WormholeConnectConfig>();
const [customConfigOpen, setCustomConfigOpen] = useState(false);
const [customConfigInput, setCustomConfigInput] = useState(
loadInitialConfig(),
);
const [customConfigNonce, setCustomConfigNonce] = useState(1);
const [isLoadingCustomConfig, setIsLoadingCustomConfig] = useState(true);
const updateCustomConfig = (e: any) => {
const input = e.target.value;
setCustomConfigInput(input);
};
const emitCustomConfig = () => {
localStorage.setItem(LOCAL_STORAGE_KEY, customConfigInput);
setUrlQueryParam(customConfigInput);
try {
const parsed = parseConfig(customConfigInput);
setCustomConfig(parsed);
setCustomConfigNonce(customConfigNonce + 1);
} catch (e) {
console.error(e);
}
if (isLoadingCustomConfig) {
setIsLoadingCustomConfig(false);
}
};
useEffect(emitCustomConfig, []);
return (
<>
<header>
<div>
<h1>Wormhole Connect - demo app</h1>
<a
href="#"
id="custom-config-toggle"
onClick={(e) => {
e.preventDefault();
setCustomConfigOpen(!customConfigOpen);
}}
>
{customConfigOpen ? '▾' : '▸'} Custom config{' '}
{customConfigInput ? (
<span className="custom-config-bubble">●</span>
) : null}
</a>
</div>
</header>
<article>
<div id="demo-contents">
{!isLoadingCustomConfig && (
<WormholeConnect key={customConfigNonce} config={customConfig} />
)}
</div>
{customConfigOpen ? (
<div id="custom-config">
<textarea
onChange={updateCustomConfig}
placeholder={'{\n "network": "Mainnet"\n}'}
onBlur={() => {
emitCustomConfig();
}}
value={customConfigInput}
/>
Available exports:
<ul id="available-exports">
<li>
<pre>DEFAULT_ROUTES</pre>
<i>{'RouteConstructor[]'}</i>
</li>
<li>
<pre>AutomaticTokenBridgeRoute</pre>
<i>{'RouteConstructor'}</i>
</li>
<li>
<pre>TokenBridgeRoute</pre>
<i>{'RouteConstructor'}</i>
</li>
<li>
<pre>AutomaticCCTPRoute</pre>
<i>{'RouteConstructor'}</i>
</li>
<li>
<pre>CCTPRoute</pre>
<i>{'RouteConstructor'}</i>
</li>
<li>
<pre>AutomaticPorticoRoute</pre>
<i>{'RouteConstructor'}</i>
</li>
<li>
<pre>MayanRoute</pre>
<i>{'RouteConstructor'}</i>
</li>
<li>
<pre>MayanRouteWH</pre>
<i>{'RouteConstructor'}</i>
</li>
<li>
<pre>MayanRouteMCTP</pre>
<i>{'RouteConstructor'}</i>
</li>
<li>
<pre>MayanRouteSWIFT</pre>
<i>{'RouteConstructor'}</i>
</li>
<li>
<pre>nttRoutes</pre>{' '}
<i>{'(NttRoute.Config) -> RouteConstructor[]'}</i>
</li>
<li>
<pre>testNttRoutesMainnet</pre>
<i>{'(NttRoute.Config) -> RouteConstructor[])'}</i>
</li>
<li>
<pre>testNttRoutesTestnet</pre>
<i>{'(NttRoute.Config) -> RouteConstructor[])'}</i>
</li>
{/* <li>
<pre>AutomaticTokenBridgeRouteV3</pre>
<i>{'RouteConstructor'}</i>
</li> */}
</ul>
</div>
) : undefined}
</article>
</>
);
}
export default DemoApp;