diff --git a/src/content/chainlink-functions/getting-started.mdx b/src/content/chainlink-functions/getting-started.mdx index 74dba6ceff4..47411b70bd8 100644 --- a/src/content/chainlink-functions/getting-started.mdx +++ b/src/content/chainlink-functions/getting-started.mdx @@ -14,6 +14,7 @@ whatsnext: import { Aside, CopyText, CodeSample, ClickToZoom } from "@components" import { Tabs } from "@components/Tabs" import ChainlinkFunctions from "@features/chainlink-functions/common/ChainlinkFunctions.astro" +import { YouTube } from "@astro-community/astro-embed-youtube" Learn how to make requests to the Chainlink Functions Decentralized Oracle Network (DON) and make any computation or API calls off-chain. Chainlink Functions is available on several blockchains (see the [supported networks page](/chainlink-functions/supported-networks)), but this guide uses Polygon Mumbai to simplify access to testnet funds. Complete the following tasks to get started with Chainlink Functions: @@ -23,6 +24,8 @@ Learn how to make requests to the Chainlink Functions Decentralized Oracle Netwo - Send a Chainlink Functions request to the DON. The JavaScript source code makes an API call to the [Star Wars API](https://swapi.dev/) and fetches the name of a given character. - Receive the response from Chainlink Functions and parse the result. + + ## Simulation Before making a Chainlink Functions request from your smart contract, it is always a good practice to simulate the source code off-chain to make any adjustments or corrections.