We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b01a9c1 commit 612c50dCopy full SHA for 612c50d
modules/bitgo/src/v2/coinFactory.ts
@@ -929,6 +929,10 @@ export function getTokenConstructor(tokenConfig: TokenConfig): CoinConstructor |
929
case 'bera':
930
case 'tbera':
931
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);
936
case 'coredao':
937
case 'tcoredao':
938
return CoredaoToken.createTokenConstructor(tokenConfig as EthLikeTokenConfig);
0 commit comments