pub struct FaucetClient { /* private fields */ }
Implementations§
Source§impl FaucetClient
impl FaucetClient
Sourcepub fn new(faucet_url: &str) -> Self
pub fn new(faucet_url: &str) -> Self
Construct a new FaucetClient
with the given faucet service URL. This FaucetClient
expects that the service provides two endpoints: /v1/gas and /v1/status. As such, do not
provide the request endpoint, just the top level service endpoint.
- /v1/gas is used to request gas
- /v1/status/taks-uuid is used to check the status of the request
Sourcepub async fn request(&self, address: Address) -> Result<Option<String>, Error>
pub async fn request(&self, address: Address) -> Result<Option<String>, Error>
Request gas from the faucet. Note that this will return the UUID of the request and not
wait until the token is received. Use request_and_wait
to wait for the token.
Sourcepub async fn request_and_wait(
&self,
address: Address,
) -> Result<Option<FaucetReceipt>, Error>
pub async fn request_and_wait( &self, address: Address, ) -> Result<Option<FaucetReceipt>, Error>
Request gas from the faucet and wait until the request is completed and token is
transferred. Returns FaucetReceipt
if the request is successful, which contains the list
of tokens transferred, and the transaction digest.
Note that the faucet is heavily rate-limited, so calling repeatedly the faucet would likely result in a 429 code or 502 code.
Sourcepub async fn request_status(
&self,
id: String,
) -> Result<Option<BatchSendStatus>, Error>
pub async fn request_status( &self, id: String, ) -> Result<Option<BatchSendStatus>, Error>
Check the faucet request status.
Possible statuses are defined in: BatchSendStatusType
Auto Trait Implementations§
impl Freeze for FaucetClient
impl !RefUnwindSafe for FaucetClient
impl Send for FaucetClient
impl Sync for FaucetClient
impl Unpin for FaucetClient
impl !UnwindSafe for FaucetClient
Blanket Implementations§
§impl<U> As for U
impl<U> As for U
§fn as_<T>(self) -> Twhere
T: CastFrom<U>,
fn as_<T>(self) -> Twhere
T: CastFrom<U>,
self
to type T
. The semantics of numeric casting with the as
operator are followed, so <T as As>::as_::<U>
can be used in the same way as T as U
for numeric conversions. Read more