pub trait FaucetClient {
// Required method
fn request_sui_coins<'life0, 'async_trait>(
&'life0 self,
request_address: SuiAddress,
) -> Pin<Box<dyn Future<Output = FaucetResponse> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Expand description
Faucet Client abstraction