1.0.0 • Published 12 months ago

@klaytn/kss-oracles v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
12 months ago

Oracle Starter Kit

Oracles take data from the outside world and put it into the blockchain for other smart contracts to consume. This is a hardhat project containing contracts and scripts for Witnet integrations.

Install

npm install -g @klaytn/kss-cli --force

Quick Usage

For a default set of contracts and tests, run the following within the required project directory:

> kss-cli oracle init

> cd oracle-starter-kit
> npm install --force

Above commands downloads the oracle-starter-kit folder structure in the current project directory. Enter inside the generated folder and install the packages as mentioned

From there you can run hardhat commands to compile your contracts, deploy those contracts to the network and run their associated unit tests.

Setup Hardhat configurations Baobab Klaytn network and variables

The default hardhat configurations can be modified in helper-hardhat-config.json Default configurations of baobab network 1001.

1. Hardhat configurations

Hardhat configuration variables can be found in helper-hardhat-config.json in the root directory. Below is the configuration explaination for 1001 network.

  • name - hardhat network name Ex: baobab
  • witnetPriceRouter - witnetPriceRouter Address Ex: 0xeD074DA2A76FD2Ca90C1508930b4FB4420e413B0 for Klaytn Testnet. See WitnetPriceRouter for reference.
  • witnetRandomness - witnetRandomness Address. Ex: 0xb4b2e2e00e9d6e5490d55623e4f403ec84c6d33f for Klaytn Testnet. See WitnetRandomness Contract Addresses for reference.

2. Environment Variables

We will need to set environment variables by following below steps 1. copy .env.example file and rename to .env 2. Modify environment variables. Below is the explaination of each variable

  • BAOBAB_RPC_URL - string https://api.baobab.klaytn.net:8651/ can be used. its the rpc url of blockchain.
  • PRIVATE_KEY - string This is private key from wallet, ie MetaMask. This is required for deploying contracts to public networks.

IMPORTANT: MAKE SURE YOU DON'T EXPOSE THE KEYS YOU PUT IN THIS .env FILE saved in the package node_modules. By that, I mean don't push them to a public repo, and please try to keep them keys you use in development not associated with any real funds.

Don't commit and push any changes to .env files that may contain sensitive information, such as a private key! If this information reaches a public GitHub repository, someone can use it to check if you have any Mainnet funds in that wallet address, and steal them!

Get some Baobab Testnet KLAY Go to the Klaytn faucets to get some KLAY to configured private key account.

Deploy contracts

You should now be all setup! You can run any method now! Since we configured the environment variables and hardhat configurations so you don't really need to pass any configurations.

To comple contracts

npx hardhat compile

To deploy all contracts

npx hardhat deploy --network baobab

To run tests

npm run test

Interacting with Deployed Contracts

After deploying your contracts, the deployment output will give you the contract addresses as they are deployed.You can then use these contract addresses in conjunction with Hardhat tasks to perform operations on each contract.

Witnet Price Feeds

The Witnet Price Feeds consumer contract has one task, to read the latest price of a specified price feed contract

  npx hardhat read-witnet-price-feed --contract <deployedContractAddress> --id <id> --network baobab

Parameters

deployedContractAddress - string Deployed WitnetPriceFeed contract address id - string id is the witnet pricefeed ID. Ex: 0x6cc828d1 for Price-KLAY/USD-6. See Klaytn Witnet PriceFeeds for reference.

Returns

  • price - price of KLAY/USD.

Example

  // 1 KLAY = 0.23 USD
  npx hardhat read-witnet-price-feed --contract 0x573AAAdF4Cf117586e74AE3845473fc65cd59C4c --id 0x6cc828d1 --network baobab

  /*
    Last price is:  237467
    Last timestamp is:  1678713345
  */

Witnet Randomness

The Witnet Randomness has 4 tasks. Make sure the deployWitnetRandomNumber method successful execution.

This 2-step process preserves unpredictability of the random numbers that you get because it guarantees that the number is derived from a seed that was generated only after the request was sent.

NOTE: Initially 1 and 2nd step has to be completed sequentially. Only after that 3rd or 4th can be executed for fetching a random number.

1. Request new randomness

Requesting the new randomness. Once the the request to new randomness is performed successfully. The other tasks can be performed after transaction submission.

  npx hardhat request-witnet-randomness --contract <deployedContractAddress> --value <value> --network baobab

Parameters

deployedContractAddress - string Deployed Deployed Witnet RandomNumber contract address value - number Value for transaction cost when requesting random numbers. Ex: 500000000000000000 i.e, 0.5 KLAY

Returns
  • transaction hash - Transaction hash
Example
  npx hardhat request-witnet-randomness --contract 0x8937C127F3060fF8a23E9a0fb5AEA10bc30e28be --value 500000000000000000 --network baobab
  /*
    Transaction Hash: 0x809addb235dc953c90a563c396c11978a359b574336564c7ec890514c961e050
  */

2. Fetch Witnet random number

Initiate fetch witnet random number transaction.

WARNING: Calling fetch-witnet-random-number right after request-witnet-randomness will most likely cause the transaction to revert. Please allow 5-10 minutes for the randomization request to complete

  npx hardhat fetch-witnet-random-number --contract <deployedContractAddress> --network baobab

Parameters

deployedContractAddress - string Deployed Witnet RandomNumber contract address

Returns
  • transaction hash - Transaction hash
Example
  npx hardhat fetch-witnet-random-number --contract 0x8937C127F3060fF8a23E9a0fb5AEA10bc30e28be --network baobab
  /*
    Transaction Hash: 0x0eb8fe1217ecdc3860009bc49f5319cab6ffdedd80877c39df02899a3542db24'
  */

3. Get the latest randomizing block

  npx hardhat read-latest-randomizing-block --contract <deployedContractAddress> --network baobab

Parameters

deployedContractAddress - string Deployed Witnet RandomNumber contract address

Returns
  • randomizingBlock - randomized block value
Example
  npx hardhat read-latest-randomizing-block --contract 0x8937C127F3060fF8a23E9a0fb5AEA10bc30e28be --network baobab
  /*
    The latest randomizing block is: 113690138
  */

4. Get the generated random number

fetches the generated random number

NOTE: Make sure first 2 steps are executed sequentially.

  npx hardhat read-witnet-random-number --contract <deployedContractAddress> --network baobab

Parameters

deployedContractAddress - string Deployed Witnet RandomNumber contract address

Returns
  • randomNumber - generated random number
Example
  npx hardhat read-witnet-random-number --contract 0x8937C127F3060fF8a23E9a0fb5AEA10bc30e28be --network baobab
  /*
    Random Number is: 1392104028
  */

Witnet Web Oracle Request

We have 2 examples for Witnet HTTP Request:

  • KlayPrice: a GET request example to get Klay token price in USD
  • postRequestExample: a POST request example echoes back any data and headers that you send in your POST requests (based on this tutorial)

Inside witnet-queries folder you will find predefined Witnet oracle queries.

You can follow this link to learn how to create other queries.

Compile the Witnet queries into Solidity contracts

npx rad2sol --target ./witnet-queries --write-contracts ./contracts/witnet-requests
Example
  npx rad2sol --target ./witnet-queries --write-contracts ./contracts/witnet-requests

Execute Witnet Queries

After the contracts have been created, you can query locally to preview the result by running:

npx witnet-toolkit try-query --from-solidity ./contracts/witnet-requests/<contractFileName>
Parameters

contractFileName - string generatedSolFileName

Returns
  • Result - string
Example 1 - Fetch Coinprice
  // 1 KLAY = 0.19 USD. Divide the return value by 10^6 to get actual coin price result.
  npx witnet-toolkit try-query --from-solidity ./contracts/witnet-requests/coinPrice.sol
  /*
    Result: 195467
  */
Example 2 - Post Request
  // Gets parsed data of headers.Header-Name from the post api 
  npx witnet-toolkit try-query --from-solidity ./contracts/witnet-requests/postAPI.sol
  /*
    Result: "Header-Value"
  */

NOTE: If above tryWitnetQueries is stuck, please try to run command shown in below snapshot npx witnet-toolkit, install the binary once in the machine and retry above method WitnetToolkitBinary

Supra Price Feeds

The Supra Price Feeds consumer contract has one task, to read the latest price of a specified price feed contract

  npx hardhat read-supra-price-feed --contract <deployedContractAddress> --network baobab

Parameters

deployedContractAddress - string Deployed SupraValueFeedExample contract address marketpair - string marketpair is the Supra marketpair id. Ex: btc_usdt. See Klaytn Supra PriceFeeds for reference.

Returns

  • price - price of BTC/USD.

Example

  // 1 BTC = 28837.54156500 USD
  npx hardhat read-supra-price-feed --contract 0x80d2d67802942e9060122fafdf62bdc747d09021 --marketpair btc_usdt --network baobab

Resources