(address: string, value: string | number)
| 194 | } |
| 195 | |
| 196 | async sendtoaddress(address: string, value: string | number) { |
| 197 | await this.setWallet(); |
| 198 | return this.call<string>('sendtoaddress', [address, value], this.walletName); |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | export interface RPCBlock<T> { |