* 导入钱包(通过私钥)
(privateKey, password)
| 379 | * 导入钱包(通过私钥) |
| 380 | */ |
| 381 | async importWalletByKey(privateKey, password) { |
| 382 | return this.request('/wallet/import-by-key', { |
| 383 | method: 'POST', |
| 384 | body: { privateKey, password } |
| 385 | }); |
| 386 | } |
| 387 | |
| 388 | /** |
| 389 | * 获取钱包余额 |
no test coverage detected