@@ -32,7 +32,7 @@ export const interlayRoutersConfig: Omit<CrossChainRouterConfigs, "from">[] = [
3232 to : "statemint" ,
3333 token : "USDT" ,
3434 xcm : {
35- fee : { token : "DOT " , amount : "1000000000 " } ,
35+ fee : { token : "USDT " , amount : "1000000 " } ,
3636 weightLimit : DEST_WEIGHT ,
3737 } ,
3838 } ,
@@ -51,7 +51,7 @@ export const kintsugiRoutersConfig: Omit<CrossChainRouterConfigs, "from">[] = [
5151 to : "statemine" ,
5252 token : "USDT" ,
5353 xcm : {
54- fee : { token : "KSM " , amount : "1500000000 " } ,
54+ fee : { token : "USDT " , amount : "10000 " } ,
5555 weightLimit : DEST_WEIGHT ,
5656 } ,
5757 } ,
@@ -241,25 +241,6 @@ class BaseInterlayAdapter extends BaseCrossChainAdapter {
241241 } ;
242242 }
243243
244- if (
245- isChainEqual ( toChain , "statemine" ) ||
246- isChainEqual ( toChain , "statemint" )
247- ) {
248- const destFee = this . getCrossChainFee ( token , to ) ;
249- const destWeight = this . getDestWeight ( token , to ) ;
250-
251- // do the needful, use multi currencies
252- return this . api . tx . xTokens . transferMulticurrencies (
253- [
254- [ tokenId , amount . toChainData ( ) ] ,
255- [ { Token : destFee . token } , destFee . balance . toChainData ( ) ] ,
256- ] ,
257- 1 ,
258- { V1 : dst } ,
259- destWeight ?. toString ( )
260- ) ;
261- }
262-
263244 return this . api . tx . xTokens . transfer (
264245 tokenId ,
265246 amount . toChainData ( ) ,
0 commit comments