@@ -11,7 +11,7 @@ import {
11
11
} from "@solana/web3.js" ;
12
12
import { Keccak } from "sha3" ;
13
13
import IDL from "../idl/json/token_router.json" ;
14
- import { TokenRouter } from "../idl/ts/token_router" ;
14
+ import { type TokenRouter as TokenRouterType } from "../idl/ts/token_router" ;
15
15
import {
16
16
CctpTokenBurnMessage ,
17
17
MessageTransmitterProgram ,
@@ -29,6 +29,7 @@ import { BPF_LOADER_UPGRADEABLE_PROGRAM_ID, programDataAddress } from "../utils"
29
29
import { VaaAccount } from "../wormhole" ;
30
30
import { Custodian , PreparedFill , PreparedOrder } from "./state" ;
31
31
import { ChainId , Network , isChainId } from "@wormhole-foundation/sdk-base" ;
32
+ import { TokenRouter } from "@wormhole-foundation/example-liquidity-layer-definitions" ;
32
33
33
34
export const PROGRAM_IDS = [
34
35
"TokenRouter11111111111111111111111111111111" ,
@@ -37,19 +38,6 @@ export const PROGRAM_IDS = [
37
38
38
39
export type ProgramId = ( typeof PROGRAM_IDS ) [ number ] | string ;
39
40
40
- export type TokenRouterAddresses = {
41
- tokenRouter : string ;
42
- // upstream wormhole
43
- matchingEngine : string ;
44
- coreBridge : string ;
45
- // cctp
46
- usdcMint : string ;
47
- messageTransmitter : string ;
48
- tokenMessenger : string ;
49
- //
50
- upgradeManager : string ;
51
- } ;
52
-
53
41
export type PrepareMarketOrderArgs = {
54
42
amountIn : bigint ;
55
43
minAmountOut : bigint | null ;
@@ -128,16 +116,13 @@ export type AddCctpRouterEndpointArgs = {
128
116
129
117
export class TokenRouterProgram {
130
118
private _programId : ProgramId ;
131
- private _addresses : TokenRouterAddresses ;
119
+ private _addresses : TokenRouter . Addresses ;
132
120
133
- program : Program < TokenRouter > ;
121
+ program : Program < TokenRouterType > ;
134
122
135
- // TODO: fix this
136
- constructor ( connection : Connection , programId : ProgramId , addresses ?: TokenRouterAddresses ) {
123
+ constructor ( connection : Connection , programId : ProgramId , addresses ?: TokenRouter . Addresses ) {
137
124
this . _programId = programId ;
138
-
139
125
this . _addresses = addresses ! ;
140
-
141
126
this . program = new Program (
142
127
{ ...( IDL as any ) , address : this . _programId } ,
143
128
{
0 commit comments