We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d0581f1 + fe05975 commit e711153Copy full SHA for e711153
1 file changed
modules/sdk-coin-tempo/src/tip20Token.ts
@@ -19,11 +19,13 @@ export { Tip20TokenConfig };
19
*/
20
export class Tip20Token extends Tempo {
21
public readonly tokenConfig: Tip20TokenConfig;
22
+ public readonly contractAddress: string;
23
24
constructor(bitgo: BitGoBase, tokenConfig: Tip20TokenConfig) {
25
const staticsCoin = tokenConfig.network === 'Mainnet' ? coins.get('tempo') : coins.get('ttempo');
26
super(bitgo, staticsCoin);
27
this.tokenConfig = tokenConfig;
28
+ this.contractAddress = tokenConfig.tokenContractAddress;
29
}
30
31
/**
0 commit comments