Introduction
The HTTP Plugin
The x/async
precompile allows you to make HTTP requests from your smart contract by using the HTTP Plugin. You can make requests to any external API, receive responses asynchronously, and process the data within the smart contract.
Follow tutorials in this section to learn how to do the following:
- Implement HTTP requests and process asynchronous responses
- Extract data from CBOR-encoded responses
- Make multiple requests to an API
The request-callback pattern
HTTP requests in Warden follow a request-callback pattern:
- A smart contract makes a request and receives a Task ID.
(The Task represents a pending asynchronous operation.) - The Warden node processes the request offchain.
- When the response is ready, the contract's callback function is called.
- The contract processes the response data.
CBOR encoding
Responses from HTTP requests are encoded in CBOR (Concise Binary Object Representation): a binary data format similar to JSON but more compact.
Extracting data from such response requires special handling in your contract, as shown in Extract data.
Get started
To get started, Set up your environment.