Skip to content

Commit 612c50d

Browse files
chore: fix baseeth token onboarding
TICKET: WIN-7285
1 parent b01a9c1 commit 612c50d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

modules/bitgo/src/v2/coinFactory.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -929,6 +929,10 @@ export function getTokenConstructor(tokenConfig: TokenConfig): CoinConstructor |
929929
case 'bera':
930930
case 'tbera':
931931
return BeraToken.createTokenConstructor(tokenConfig as EthLikeTokenConfig);
932+
case 'baseeth':
933+
case 'tbaseeth':
934+
const coinNames = { Mainnet: 'baseeth', Testnet: 'tbaseeth' };
935+
return EthLikeErc20Token.createTokenConstructor(tokenConfig as EthLikeTokenConfig, coinNames);
932936
case 'coredao':
933937
case 'tcoredao':
934938
return CoredaoToken.createTokenConstructor(tokenConfig as EthLikeTokenConfig);

0 commit comments

Comments
 (0)