(payload: NotePayload, toAddress?: string)
| 278 | } |
| 279 | |
| 280 | async mint(payload: NotePayload, toAddress?: string) { |
| 281 | //NOTICE:注意,这里的toAddress未使用 |
| 282 | const tx = await this.buildNoteTransaction(payload); |
| 283 | return await this.broadcastTransaction(tx); |
| 284 | } |
| 285 | |
| 286 | abstract fetch(address: string): any; |
| 287 |
nothing calls this directly
no test coverage detected