@@ -282,6 +282,7 @@ export function isGasAsset({ chain, symbol }: { chain: Chain; symbol: string })
282282 . with ( Chain . Berachain , ( ) => symbol === "BERA" )
283283 . with ( Chain . BinanceSmartChain , ( ) => symbol === "BNB" )
284284 . with ( Chain . Gnosis , ( ) => symbol === "xDAI" || symbol === "XDAI" )
285+ . with ( Chain . Monad , ( ) => symbol === "MON" )
285286 . with ( Chain . XLayer , ( ) => symbol === "OKB" )
286287 . with ( Chain . Maya , ( ) => symbol === "CACAO" )
287288 . with ( Chain . Cosmos , ( ) => symbol === "ATOM" )
@@ -300,6 +301,7 @@ export const getCommonAssetInfo = (assetString: CommonAssetString) => {
300301 . with ( Chain . Cosmos , ( asset ) => ( { decimal, identifier : `${ asset } .ATOM` } ) )
301302 . with ( Chain . Maya , ( asset ) => ( { decimal : 10 , identifier : `${ asset } .CACAO` } ) )
302303 . with ( Chain . BinanceSmartChain , ( asset ) => ( { decimal, identifier : `${ asset } .BNB` } ) )
304+ . with ( Chain . Monad , ( asset ) => ( { decimal, identifier : `${ asset } .MON` } ) )
303305 . with ( Chain . Avalanche , ( asset ) => ( { decimal, identifier : `${ asset } .AVAX` } ) )
304306 . with ( Chain . Gnosis , ( asset ) => ( { decimal, identifier : `${ asset } .xDAI` } ) )
305307 . with ( Chain . XLayer , ( asset ) => ( { decimal, identifier : `${ asset } .OKB` } ) )
@@ -348,6 +350,7 @@ export function getAssetType({ chain, symbol }: { chain: Chain; symbol: string }
348350 . with ( Chain . Cosmos , ( ) => symbol === "ATOM" )
349351 . with ( Chain . BinanceSmartChain , ( ) => symbol === "BNB" )
350352 . with ( Chain . Maya , ( ) => symbol === "CACAO" )
353+ . with ( Chain . Monad , ( ) => symbol === "MON" )
351354 . with ( Chain . THORChain , ( ) => symbol === "RUNE" )
352355 . with ( Chain . Tron , ( ) => symbol === "TRX" )
353356 . with ( Chain . XLayer , ( ) => symbol === "OKB" )
0 commit comments