-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathroute.test.ts
234 lines (198 loc) · 7.42 KB
/
route.test.ts
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
import {
Network,
Wormhole,
canonicalAddress,
routes,
} from "@wormhole-foundation/sdk-connect";
import "@wormhole-foundation/sdk-definitions-ntt";
import "@wormhole-foundation/sdk-evm-ntt";
import "@wormhole-foundation/sdk-solana-ntt";
import { EvmPlatform } from "@wormhole-foundation/sdk-evm";
import { SolanaPlatform } from "@wormhole-foundation/sdk-solana";
import { nttAutomaticRoute } from "../src/automatic.js";
import { nttManualRoute } from "../src/manual.js";
import { NttRoute } from "../src/types.js";
const SOL_TOKEN = "EetppHswYvV1jjRWoQKC1hejdeBDHR9NNzNtCyRQfrrQ";
const SEPOLIA_TOKEN = "0x738141EFf659625F2eAD4feECDfCD94155C67f18";
const conf: NttRoute.Config = {
tokens: {
TestToken: [
{
chain: "Solana",
token: SOL_TOKEN,
manager: "NTtAaoDJhkeHeaVUHnyhwbPNAN6WgBpHkHBTc6d7vLK",
transceiver: [
{
type: "wormhole",
address: "ExVbjD8inGXkt7Cx8jVr4GF175sQy1MeqgfaY53Ah8as",
},
],
quoter: "Nqd6XqA8LbsCuG8MLWWuP865NV6jR1MbXeKxD4HLKDJ",
},
{
chain: "Sepolia",
token: SEPOLIA_TOKEN,
manager: "0x649fF7B32C2DE771043ea105c4aAb2D724497238",
transceiver: [
{
type: "wormhole",
address: "0x06413c42e913327Bc9a08B7C1E362BAE7C0b9598",
},
],
},
],
},
};
const network: Network = "Testnet";
describe("Manual Route Tests", function () {
const wh = new Wormhole("Testnet", [SolanaPlatform, EvmPlatform]);
const fromChain = wh.getChain("Solana");
const toChain = wh.getChain("Sepolia");
let rt: routes.RouteConstructor;
it("Should create a Route Constructor given ntt config", function () {
rt = nttManualRoute(conf);
expect(rt).toBeTruthy();
});
it("Should return supported chains", function () {
const supportedChains = rt.supportedChains(network);
expect(supportedChains).toEqual(["Solana", "Sepolia"]);
});
it("Should return supported tokens", async function () {
const tokens = await rt.supportedSourceTokens(fromChain);
expect(tokens).toHaveLength(1);
expect(canonicalAddress(tokens[0]!)).toEqual(SOL_TOKEN);
});
it("Should correctly return corresponding destination token", async function () {
const token = Wormhole.tokenId("Solana", SOL_TOKEN);
const tokens = await rt.supportedDestinationTokens(
token,
fromChain,
toChain
);
expect(tokens).toHaveLength(1);
expect(canonicalAddress(tokens[0]!)).toEqual(SEPOLIA_TOKEN);
});
let resolver: routes.RouteResolver<Network>;
it("Should satisfy resolver", async function () {
resolver = new routes.RouteResolver(wh, [rt]);
});
let found: routes.ManualRoute<Network>;
it("Should resolve a given route request", async function () {
const request = await routes.RouteTransferRequest.create(wh, {
source: Wormhole.tokenId("Solana", SOL_TOKEN),
destination: Wormhole.tokenId("Sepolia", SEPOLIA_TOKEN),
});
const foundRoutes = await resolver.findRoutes(request);
expect(foundRoutes).toHaveLength(1);
expect(foundRoutes[0]!.request.fromChain.chain).toEqual("Solana");
const rt = foundRoutes[0]!;
if (!routes.isManual(rt)) throw new Error("Expected manual route");
found = rt;
});
let op: ReturnType<typeof found.getDefaultOptions>;
it("Should provide default options", async function () {
op = found.getDefaultOptions();
expect(op).toBeTruthy();
});
let vp: routes.ValidationResult<typeof op>;
it("Should validate a transfer request", async function () {
vp = await found.validate({ amount: "1.0", options: op });
expect(vp.valid).toBeTruthy();
expect(vp.params.amount).toEqual("1.0");
});
let qr: Awaited<ReturnType<typeof found.quote>>;
it("Should fetch a quote given the validated parameters", async function () {
if (!vp.valid) throw new Error("Invalid transfer params used");
qr = await found.quote(vp.params);
if (!qr.success) throw new Error("Failed to fetch quote");
expect(qr.params.amount).toEqual("1.0");
const srcAddy = canonicalAddress(qr.sourceToken.token);
expect(srcAddy).toEqual(SOL_TOKEN);
const dstAddy = canonicalAddress(qr.destinationToken.token);
expect(dstAddy).toEqual(SEPOLIA_TOKEN);
// No fees or other fields
expect(Object.keys(qr)).toEqual([
"success",
"params",
"sourceToken",
"destinationToken",
]);
});
});
describe("Automatic Route Tests", function () {
const wh = new Wormhole("Testnet", [SolanaPlatform, EvmPlatform]);
const fromChain = wh.getChain("Solana");
const toChain = wh.getChain("Sepolia");
let rt: routes.RouteConstructor;
it("Should create a Route Constructor given ntt config", function () {
rt = nttAutomaticRoute(conf);
expect(rt).toBeTruthy();
});
it("Should return supported chains", function () {
const supportedChains = rt.supportedChains(network);
expect(supportedChains).toEqual(["Solana", "Sepolia"]);
});
it("Should return supported tokens", async function () {
const tokens = await rt.supportedSourceTokens(fromChain);
expect(tokens).toHaveLength(1);
expect(canonicalAddress(tokens[0]!)).toEqual(SOL_TOKEN);
});
it("Should correctly return corresponding destination token", async function () {
const token = Wormhole.tokenId("Solana", SOL_TOKEN);
const tokens = await rt.supportedDestinationTokens(
token,
fromChain,
toChain
);
expect(tokens).toHaveLength(1);
expect(canonicalAddress(tokens[0]!)).toEqual(SEPOLIA_TOKEN);
});
let resolver: routes.RouteResolver<Network>;
it("Should satisfy resolver", async function () {
resolver = new routes.RouteResolver(wh, [rt]);
});
let found: routes.AutomaticRoute<Network>;
it("Should resolve a given route request", async function () {
const request = await routes.RouteTransferRequest.create(wh, {
source: Wormhole.tokenId("Solana", SOL_TOKEN),
destination: Wormhole.tokenId("Sepolia", SEPOLIA_TOKEN),
});
const foundRoutes = await resolver.findRoutes(request);
expect(foundRoutes).toHaveLength(1);
expect(foundRoutes[0]!.request.fromChain.chain).toEqual("Solana");
const rt = foundRoutes[0]!;
if (!routes.isAutomatic(rt)) throw new Error("Expected automatic route");
found = rt;
});
let op: ReturnType<typeof found.getDefaultOptions>;
it("Should provide default options", async function () {
op = found.getDefaultOptions();
expect(op).toBeTruthy();
});
let vp: routes.ValidationResult<typeof op>;
it("Should validate a transfer request", async function () {
vp = await found.validate({ amount: "1.0", options: op });
expect(vp.valid).toBeTruthy();
expect(vp.params.amount).toEqual("1.0");
});
let qr: Awaited<ReturnType<typeof found.quote>>;
it("Should fetch a quote given the validated parameters", async function () {
if (!vp.valid) throw new Error("Invalid transfer params used");
qr = await found.quote(vp.params);
if (!qr.success) throw new Error("Failed to fetch quote");
expect(qr.params.amount).toEqual("1.0");
const srcAddy = canonicalAddress(qr.sourceToken.token);
expect(srcAddy).toEqual(SOL_TOKEN);
const dstAddy = canonicalAddress(qr.destinationToken.token);
expect(dstAddy).toEqual(SEPOLIA_TOKEN);
// No fees or other fields
expect(Object.keys(qr)).toEqual([
"success",
"params",
"sourceToken",
"destinationToken",
"relayFee",
"destinationNativeGas",
]);
});
});