Using Authorizers (optional)
An Airnode can authorize smart contracts (know as requesters) access to its endpoints using Authorizers. This method is on-chain and requires some blockchain knowledge by an API provider.
What is an authorizer?
An Authorizer is a contract which typically checks for a single condition ("has the requester made their monthly payment", "is this requesterAddress
whitelisted", etc.). Authorizers can be combined to enforce more complex policies. If any of the authorizers in the list gives access, the request will considered to be authorized. From a logical standpoint, the authorization outcomes get ORed.
Alternative: Relayed Meta Data
As an alternative to authorizers and authorizations, an API provider can use Relayed Meta Data to authenticate a request. This approach is off-chain and requires no blockchain knowledge by the API provider. Note that it is possible to use authorizers, authorizations, and relayed meta data together.
How to implement authorizers.
When you deploy your Airnode a receipt file is generated which contains the Airnode's airnodeAddress
. Sponsors (via their sponsored requesters) use airnodeAddress
and an endpointId
to make requests to your Airnode's endpoints. However, rather than serve them publicly, you may want to:
- Only serve your own requester contracts.
- Only serve sponsors who have made a subscription payment.
- Only serve sponsors who have gone through KYC.
The chains[n].authorizers
object within config.json
enables requests to be authorized in a variety of ways and even across chains. Currently, the authorizers include requesterEndpointAuthorizers
, crossChainRequesterAuthorizers
, requesterAuthorizersWithErc721
, and crossChainRequesterAuthorizersWithErc721
.
Note that when all chains[n].authorizers
values are empty arrays, all requests are authorized, but still can be filtered by using Relayed Meta Data Security Schemes.
Below are examples of how to use the authorizers.
{
...
"chains":[
{ Scheme type requesterEndpointAuthorizers lists
"id": "1", on-chain authorizer contract addresses
... such as RequesterAuthorizerWithAirnode
"authorizers": { ⬇
"requesterEndpointAuthorizers": [ // Requests must be authorized by
"0xeabb...C123", // one of the authorizer contracts
"0xCE5e...1abc"
],
"crossChainRequesterAuthorizers": [],
"requesterAuthorizersWithErc721": [],
"crossChainRequesterAuthorizersWithErc721": []
}
},
{
"id": "2",
...
"authorizers": { // All requests are authorized
"requesterEndpointAuthorizers": [],
"crossChainRequesterAuthorizers": [],
"requesterAuthorizersWithErc721": [],
"crossChainRequesterAuthorizersWithErc721": []
},
},
{
"id": "3",
...
"authorizers": {
"requesterEndpointAuthorizers": [ // Requests must be authorized by
"0xeabb...C123" // a single authorizer contract
], // OR an authorizer contract deployed
// on a different chain (Ethereum mainnet)
"crossChainRequesterAuthorizers": [
{
"requesterEndpointAuthorizers": ["0xCE5e...1abc"],
"chainType": "evm",
"chainId": "1",
"chainProvider": {
"url": "https://mainnet.infura.io/..."
}
}
],
"requesterAuthorizersWithErc721": [],
"crossChainRequesterAuthorizersWithErc721": []
}
}
]
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Using RequesterAuthorizerWithAirnode
A common use case for an authorizer is the RequesterAuthorizerWithAirnode authorizer contract developed for Airnode operators to use right out-of-the-box. It allows the whitelisting of requester contracts (with or without expiration timestamps) on a per endpoint basis. Endpoints are declared in the ois.endpoints
field of the config.json
file. This is the most common use case and can be implemented with the following steps:
- Add the RequesterAuthorizerWithAirnode authorizer contract address to the array
chains[n].authorizers.requesterEndpointAuthorizers
. - After your Airnode is deployed, call the Admin CLI command set-whitelist-expiration to add the desired requester contract addresses to the whitelist maintained by RequesterAuthorizerWithAirnode.
Once implemented, only requester contract addresses you have added to RequesterAuthorizerWithAirnode will have access to your Airnode.
FLEX_END_TAG