Skip to content

Commit 2d0216c

Browse files
Revert "deployment: cross-registration - get mint recipient always from solana"
This reverts commit 29fc5ad.
1 parent 3c23ee7 commit 2d0216c

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

deployment/scripts/evm/TokenRouter/cross-registration-token-router.ts

+9-4
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ evm.runOnEvms("cross-registration-token-router", async (chain, _, log) => {
99
const tokenRouterAddress = getContractAddress("TokenRouterProxy", chain.chainId);
1010
const tokenRouter = (await getContractInstance("TokenRouter", tokenRouterAddress, chain)) as TokenRouter;
1111
const deployedTokenRouters = contracts['TokenRouterProxy'].filter((router) => router.chainId !== chain.chainId);
12+
1213
for (const router of deployedTokenRouters) {
13-
log("Processing router for target: ", router.chainId);
1414
const circleDomain = circle.toCircleChainId(chain.network, toChain(router.chainId));
1515
const routerChain = toChain(router.chainId);
1616
const routerAddress = toUniversal(routerChain, router.address).toString();
17-
const mintRecipient = getMintRecipient();
17+
const mintRecipient = getMintRecipient(chain.chainId, routerAddress);
1818
const endpoint = {
1919
router: routerAddress,
2020
mintRecipient
@@ -40,11 +40,16 @@ evm.runOnEvms("cross-registration-token-router", async (chain, _, log) => {
4040
});
4141

4242

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+
4449
const chain = "Solana";
4550
const chainInfo = getChainInfo(toChainId(chain));
4651
const connection = new Connection(chainInfo.rpc, chainInfo.commitmentLevel || "confirmed");
4752
const tokenRouter = getTokenRouterProgram(connection);
4853

4954
return toUniversal(chain, tokenRouter.cctpMintRecipientAddress().toBytes()).toString();
50-
}
55+
}

0 commit comments

Comments
 (0)