NEW

Chainlink Data Streams have officially launched on mainnet. Sign up for early access.

Back

Chainlink Functions Billing

Request costs

To send Chainlink Functions requests, you must maintain a sufficient amount of LINK in your subscription balance. Because Chainlink Functions follows the Request and Receive Data model, billing is done in two steps:

  1. During the request step, the cost to fulfill a Chainlink Functions request is estimated and blocked on the subscription balance by adding it to the subscription reservation.
  2. During the receive step, the exact fulfillment cost is calculated, then billed to the subscription account, and the subscription reservation is removed.

You can break down total costs into the following components:

  • Gas cost: This cost is paid back to the transmitter oracle in LINK for fulfilling the request.
  • Premium fees: These fees are paid in LINK to compensate nodes for their work and for the maintenance of the FunctionsRouter contract.

Gas cost calculation includes the following variables:

  • Gas price: The current gas price fluctuates depending on network conditions.
  • Overestimated gas price: refers to a deliberately higher gas price estimation to account for potential price fluctuations between the time a request is made and the time Chainlink Functions fulfills it. By setting the gas price higher than the current one, Chainlink Functions increases the likelihood that the request will be fulfilled, even if gas prices rise unexpectedly in the short term. The overestimation is calculated as a percentage increase over the current gas price.
  • Callback gas: The amount of gas used for the callback request. See the Cost Calculation section.
  • Callback gas limit: The maximum amount of gas that can be used to call the handleOracleFulfillment callback function of the consumer contract in order to provide the response. See the Cost Simulation section.
  • Gas overhead: The amount of gas used by the FunctionsRouter and FunctionsCoordinator contracts. It is an estimate of the total gas cost of fulfilling a request.
  • Native to LINK translation: Your subscription balance can be billed only in LINK tokens.
    • Translate the network's native gas tokens to LINK: The total gas cost in native units is translated using the correct Price Feed. For example, on Sepolia, the translation uses the ETH/LINK Price Feed, and on Polygon Mumbai, the translation uses the MATIC/LINK Price Feed.
    • Fallback Wei to LINK ratio: In the unlikely event that the Native to LINK price data feed is unavailable, the fallback translation is used. You can find this ratio by running the getConfig function in the FunctionsCoordinator contract. See the Supported Networks page to find the contract addresses for each network.

Cost Simulation (Reservation)

During the request step:

  1. The total cost in LINK is estimated using the following formula:

    total estimated gas cost in LINK = (Overestimated gas price * (Gas overhead + Callback gas limit)) / Native to LINK translation
    
    total estimated cost in LINK = total estimated gas cost + premium fees
  2. The total estimated cost is then added to the subscription reservation.

Cost Calculation (Fulfillment)

When a DON's oracle reports the response, subscription accounts are charged based on the gas amount used in the callback:

  1. The total cost in LINK is calculated using the following formula:

    total gas cost in LINK = (Gas price * (Gas overhead + Callback gas)) / Native to LINK translation
    
    total cost in LINK = total gas cost + premium fees
  2. The FunctionsRouter contract performs several accounting movements.

Minimum balance for uploading encrypted secrets

If you choose to store the encrypted secrets with the DON (learn more on the Secrets Management page), then one of your subscriptions must maintain a balance greater than the minimum required for uploading encrypted secrets. This balance is blockchain-specific. You can find the specific values for each blockchain on the Supported Networks page. Note: Uploading encrypted secrets is free of charge. However, to prevent misuse of Chainlink Functions, you are required to maintain a minimum balance in one of the subscriptions owned by your externally-owned account (EOA) before you can upload encrypted secrets to a DON.

Withdrawing funds

To withdraw your LINK balance, you must first cancel your subscription. To prevent misuse of Chainlink Functions, any subscription with fulfilled requests below the request threshold will incur a cancellation fee. Both the request threshold and the cancellation fee are blockchain-specific. You can find their values for each blockchain on the Supported Networks page.

Example 1:

  • Request Threshold: Two requests
  • Cancellation Fee: 0.5 LINK
  • Your Balance: 0.4 LINK
  • Number of Fulfilled Requests: One
  • Outcome: Canceling your subscription results in a non-refundable balance

Example 2:

  • Request Threshold: Two requests
  • Cancellation Fee: 0.5 LINK
  • Your Balance: 1 LINK
  • Number of Fulfilled Requests: One
  • Outcome: You will receive 0.5 LINK if you cancel your subscription

Example 3:

  • Request Threshold: Two requests
  • Cancellation Fee: 0.5 LINK
  • Your Balance: 1 LINK
  • Number of Fulfilled Requests: Two or more
  • Outcome: You will receive 1 LINK if you cancel your subscription. Your subscription will not incur the cancellation fee

Stay updated on the latest Chainlink news