Quickstart Guide
This quickstart guide will help you set up and make calls on the Klaytn network using the Liquify Gateway endpoints.
Last updated
This quickstart guide will help you set up and make calls on the Klaytn network using the Liquify Gateway endpoints.
Last updated
Ensure you with the Klaytn network enabled.
Run the following command in your terminal. This command will retrieve the latest block number from the Klaytn network.
Replace YOUR-API-KEY
with your actual Liquify Gateway API key.
In Windows Powershell, quotations in curl
commands can behave differently than expected. We recommend using Postman on Windows systems.
In your project folder, install the Node Fetch package using npm:
Create your Javascript file and copy the following code:
Replace YOUR-API-KEY
with your actual Liquify Gateway API key.
index.js
Run the code using the following command:
In your project folder, install the Axios package using npm:
Create your Javascript file and copy the following code:
Replace YOUR-API-KEY
with your actual Liquify Gateway API key.
index.js
Run the code using the following command:
In your project folder, install the ethers package using npm:
Create your Javascript file and copy the following code:
Replace YOUR-API-KEY
with your actual Liquify Gateway API key.
index.js
Run the code using the following command:
Create your Javascript file and copy the following code:
Replace YOUR-API-KEY
with your actual Liquify Gateway API key.
index.js
Run the code using the following command:
In your project folder, install the requests
library:
Create your Python file and copy the following code:
Replace YOUR-API-KEY
with your actual Liquify Gateway API key.
index.py
Run the code using the following command:
Call the JSON-RPC methods using .
INFO: Set the correct for your API key and network before running requests.
In these examples, you'll use as your package manager.
In your project folder,