@@ -9,12 +9,12 @@ evm.runOnEvms("cross-registration-token-router", async (chain, _, log) => {
9
9
const tokenRouterAddress = getContractAddress ( "TokenRouterProxy" , chain . chainId ) ;
10
10
const tokenRouter = ( await getContractInstance ( "TokenRouter" , tokenRouterAddress , chain ) ) as TokenRouter ;
11
11
const deployedTokenRouters = contracts [ 'TokenRouterProxy' ] . filter ( ( router ) => router . chainId !== chain . chainId ) ;
12
+
12
13
for ( const router of deployedTokenRouters ) {
13
- log ( "Processing router for target: " , router . chainId ) ;
14
14
const circleDomain = circle . toCircleChainId ( chain . network , toChain ( router . chainId ) ) ;
15
15
const routerChain = toChain ( router . chainId ) ;
16
16
const routerAddress = toUniversal ( routerChain , router . address ) . toString ( ) ;
17
- const mintRecipient = getMintRecipient ( ) ;
17
+ const mintRecipient = getMintRecipient ( chain . chainId , routerAddress ) ;
18
18
const endpoint = {
19
19
router : routerAddress ,
20
20
mintRecipient
@@ -40,11 +40,16 @@ evm.runOnEvms("cross-registration-token-router", async (chain, _, log) => {
40
40
} ) ;
41
41
42
42
43
- function getMintRecipient ( ) : string {
43
+ function getMintRecipient ( chainId : ChainId , routerAddress : string ) : string {
44
+ const platform = chainToPlatform ( toChain ( chainId ) ) ;
45
+
46
+ if ( platform === "Evm" )
47
+ return routerAddress ;
48
+
44
49
const chain = "Solana" ;
45
50
const chainInfo = getChainInfo ( toChainId ( chain ) ) ;
46
51
const connection = new Connection ( chainInfo . rpc , chainInfo . commitmentLevel || "confirmed" ) ;
47
52
const tokenRouter = getTokenRouterProgram ( connection ) ;
48
53
49
54
return toUniversal ( chain , tokenRouter . cctpMintRecipientAddress ( ) . toBytes ( ) ) . toString ( ) ;
50
- }
55
+ }
0 commit comments