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.
2 parents 4457777 + 38526bd commit f08b154Copy full SHA for f08b154
modules/bitgo/src/v2/coinFactory.ts
@@ -31,6 +31,7 @@ import {
31
AptTokenConfig,
32
Sip10TokenConfig,
33
CoinFeature,
34
+ Nep141TokenConfig,
35
} from '@bitgo/statics';
36
import {
37
Ada,
@@ -889,9 +890,12 @@ export function getTokenConstructor(tokenConfig: TokenConfig): CoinConstructor |
889
890
case 'apt':
891
case 'tapt':
892
return AptToken.createTokenConstructor(tokenConfig as AptTokenConfig);
- case 'sip10':
893
- case 'tsip10':
+ case 'stx':
894
+ case 'tstx':
895
return Sip10Token.createTokenConstructor(tokenConfig as Sip10TokenConfig);
896
+ case 'near':
897
+ case 'tnear':
898
+ return Nep141Token.createTokenConstructor(tokenConfig as Nep141TokenConfig);
899
default:
900
return undefined;
901
}
0 commit comments