* Gets the dust log for user * @return {promise or undefined} - omitting the callback returns a promise
()
| 4023 | * @return {promise or undefined} - omitting the callback returns a promise |
| 4024 | */ |
| 4025 | async dustLog() { |
| 4026 | return await this.privateSpotRequest('v1/asset/dribblet', {}); |
| 4027 | } |
| 4028 | |
| 4029 | async dustTransfer(assets) { |
| 4030 | return await this.privateSpotRequest('v1/asset/dust', { asset: assets }, 'POST'); |
nothing calls this directly
no test coverage detected