@@ -8,18 +8,22 @@ export declare class TronClient extends Client {
88 private tokenContracts ;
99 private poolContracts ;
1010 private ddContracts ;
11+ private minterContracts ;
1112 private chainId ;
1213 private energyFee ;
1314 private tokenSymbols ;
1415 private tokenDecimals ;
1516 private ddContractAddresses ;
17+ private supportedMethods ;
1618 constructor ( rpc : string , privateKey : string , config : Config ) ;
1719 haltClient ( ) : void ;
1820 private contractCallRetry ;
1921 private commonRpcRetry ;
2022 protected getTokenContract ( tokenAddress : string ) : Promise < any > ;
2123 protected getPoolContract ( poolAddress : string ) : Promise < any > ;
2224 protected getDdContract ( ddQueueAddress : string ) : Promise < any > ;
25+ protected getMinterContract ( minterAddress : string ) : Promise < any > ;
26+ private isMethodSupportedByContract ;
2327 getChainId ( ) : Promise < number > ;
2428 getBlockNumber ( ) : Promise < number > ;
2529 getTokenName ( tokenAddress : string ) : Promise < string > ;
@@ -41,6 +45,7 @@ export declare class TronClient extends Client {
4145 transferToken ( tokenAddress : string , to : string , amount : bigint ) : Promise < string > ;
4246 approve ( tokenAddress : string , spender : string , amount : bigint ) : Promise < string > ;
4347 increaseAllowance ( tokenAddress : string , spender : string , additionalAmount : bigint ) : Promise < string > ;
48+ mint ( minterAddress : string , amount : bigint ) : Promise < string > ;
4449 sign ( data : string ) : Promise < string > ;
4550 signTypedData ( data : any ) : Promise < string > ;
4651 getDirectDepositContract ( poolAddress : string ) : Promise < string > ;
0 commit comments