(
toAddress: string,
tick: string,
amt: bigint,
feePerKb?: number
)
| 352 | } |
| 353 | |
| 354 | async sendTokenEstimate( |
| 355 | toAddress: string, |
| 356 | tick: string, |
| 357 | amt: bigint, |
| 358 | feePerKb?: number |
| 359 | ) { |
| 360 | const common = await this.sendTokenCommon(toAddress, tick, amt); |
| 361 | const tx = await this.buildNoteTransaction( |
| 362 | common.payload, |
| 363 | common.toAddresses, |
| 364 | common.tokenUtxos, |
| 365 | common.payUtxos, |
| 366 | feePerKb |
| 367 | ); |
| 368 | return tx.realFee; |
| 369 | } |
| 370 | |
| 371 | async sendToken( |
| 372 | toAddress: string, |
nothing calls this directly
no test coverage detected