(currency: string, satoshis: number | bigint | string, opts?: ITokenObj)
| 124 | }; |
| 125 | |
| 126 | static renderAmount(currency: string, satoshis: number | bigint | string, opts?: ITokenObj): string { |
| 127 | return Utils.amountFromSats(currency, Number(satoshis), opts) + ' ' + currency.toUpperCase(); |
| 128 | } |
| 129 | |
| 130 | static renderStatus(status: string): string { |
| 131 | if (status !== 'complete') { |
no test coverage detected