Harmony Completes Mainnet Integration With Band Protocol and Announce Strategic Partnership

Band Protocol’s Scalable Oracle Technology Is Now Available to Developers Building on Harmony and Eligible For $7M in Grants

Peter Abilla
Harmony
Published in
10 min readOct 1, 2020

--

TL;DR

❗ Band Protocol and Harmony enter into a strategic partnership.

❗ BandChain Oracle data will be available to dapp developers building on Harmony Protocol.

❗ Harmony will be awarding grants for applications that utilize Band Protocol on Harmony as part of our $7m grant program for fintech applications 👉 Apply HERE 👈.

❗ Dapp utilizing BandChain on Harmony 👀.

❗ How to interact with BandChain from Harmony Smart Contracts — a technical primer.

Our Commitment to Dapp Developers

We know there are many other building blocks for dapp development outside of the core protocol. One critical piece of infrastructure that we need for Harmony developers are robust oracle solutions — and we’ve been hard at work to bring the best oracles onto our chain.

We recently partnered with Chainlink to provide off-chain data to dapp developers on Harmony, but as a layer 1 protocol, we feel it’s important to give our developer community options to suit their specific needs and use cases.

These needs include availability of scalable, cross-chain and customizable oracle technology that Band Protocol is able to adequately fulfill.

Strategic Partnership with Band Protocol

To that end, we’re excited to announce this strategic partnership with Band Protocol. Our integration with Band gives developers another option for accessing off-chain data on Harmony, a much greater selection of data formats and types, and different ways of interacting with off-chain data based on the developer’s preferences unlocked through Band Protocol’s custom oracle scripts.

Band Protocol is proud to integrate with and strategically support Harmony in their mission of creating a scalable and highly secure blockchain for decentralized applications. This integration alongside the grants program for Harmony developers utilizing Band Protocol will pave the way for more reliable and highly secure decentralized applications to come.
— Soravis Srinawakoon, CEO & Co-Founder of Band Protocol

How Harmony Integrates Band Oracles

Because Harmony is a general-purpose chain, the options are endless for dapp developers. Building on Harmony makes the most sense for dapps that require fast finality and really low gas costs. Now with the integration of Band Oracles on Harmony, dapp developers have access to any external data source or API with low fees and instant finality..

We have been very impressed with the Band team, their technology, and their commitment to helping developers and partners. Their emphasis on cross-chain is also very aligned with Harmony’s vision and roadmap. Integrating Band Oracles on Harmony has been surprisingly easy, which is great because it allows us to focus on developer needs instead of spending time and resources on integration. We look forward to continuing this partnership in the future. — Stephen Tse, Harmony Founder and CEO

We have chosen to integrate Band Protocol to enable smart contract applications including decentralized finance, games, and prediction markets.

These can now built without the shortcomings of limited data availability, and scalability issues including high transaction/data request fees and congestion as seen in some existing oracle solutions.

The key features of Band Protocol include:

  • Scalability & Efficiency
    Band Protocol leverages an independent high-performant blockchain, BandChain, for all oracle computations including data sourcing, aggregation, updates, and settlement. This mitigates any dependencies or limitations of having an oracle network on a congested blockchain such as Ethereum which has proven to stall data updates and incur exorbitant operational costs.
  • Cost-Efficient & Timely Data
    Having BandChain built on the Cosmos-SDK, the blockchain can handle thousands of transactions per second with a short blocktime of approximately 2 seconds. This means Harmony developers who require cost-efficient frequent data updates or real-time feeds finally have an oracle solution that has capability of meeting these needs without paying large gas fees.
  • Customizable Decentralized Oracles
    Harmony developers using Band Protocol have the ability to create fine-tuned decentralized oracles connecting to any external data source or API with custom update and security parameters. This means that Harmony smart contracts can theoretically tap into any data type including price feeds, weather, flight, market data and real-world events.
This is an example of the ONE price feed created by Band Protocol which will be released to the public alongside a multitude of other financial feeds very soon.

Apply for a Grant — Utilize Band Protocol on Harmony

We invite small teams and developers everywhere to bring your most creative ideas, apply for a grant, and build an app on Harmony utilizing Band Protocol. There are so many different applications you could build using the data that Band makes available to layer 1 chains like Harmony. The sky — and your creativity — is the only limitation!

👉 Apply HERE 👈

Looking Ahead

Seriously, our community is amazing.

A small team in the Harmony community has already started building an application choosing to utilize Band Oracles on Harmony. We hear that their app will be available in a few weeks. We’re excited for that and plan on supporting that team with the launch of their application.

Until then, here’s a system diagram as a teaser…😀

How to Interact with BandChain from Harmony Smart Contracts

We will go through each of these steps:

  1. Requesting data using BandChain.js library
  2. Using BandChain data in EVM Smart Contract in Harmony

Requesting data using BandChain.js library

BandChain provides the BandChain.js JavaScript library so developers can submit data requests right from their dApp client.

Once BandChain has successfully executed the requested oracle script, it will return the data and EVM proof payload back to the client to then be passed to our smart contracts in harmony blockchain.

Here is an example simple Node file requesting data using the library that queries the current Bitcoin(BTC) price from BandChain.

const BandChain = require('@bandprotocol/bandchain.js');
const { Obi } = require('@bandprotocol/obi.js');
//BandChain POA mainnet endpoint URL
//const endpoint = 'http://poa-api.bandchain.org';
//BandChain dev-net endpoint URL
const endpoint = 'http://guanyu-devnet.bandchain.org/rest';
const getBTCPrice = async () => {
// Instantiating BandChain with REST endpoint
const bandchain = new BandChain(endpoint);
// Create an instance of OracleScript with the script ID
const oracleScript = await bandchain.getOracleScript(76);
// Create a new request, which will block until the tx is confirmed
try {
const minCount = 3;
const askCount = 4;
const mnemonic =
'panther winner rain empower olympic attract find satoshi meadow panda job ten urge warfare piece walnut help jump usage vicious neither shallow mule laundry';
const requestId = await bandchain.submitRequestTx(
oracleScript,
{
symbol: 'BTC',
},
{ minCount, askCount },
mnemonic
);
// Get final result (blocking until the reports & aggregations are finished)
const finalResult = await bandchain.getRequestResult(requestId);
let result = new Obi(oracleScript.schema).decodeOutput(
Buffer.from(finalResult.response_packet_data.result, 'base64')
);
console.log('RequestID: ' + requestId);
console.log(result);
} catch {
console.error('Data request failed');
}
};
getBTCPrice();

Now let’s go through each section of the code.

Import the library and declare the necessary variables:

const BandChain = require('@bandprotocol/bandchain.js');
const { Obi } = require('@bandprotocol/obi.js');

The code requires two libraries:

Now, set the request parameters:

// BandChain devnet endpoint URL
const endpoint = 'http://guanyu-devnet.bandchain.org/rest';
// Mnemonic of the account to make the query from.
const mnemonic =
'panther winner rain empower olympic attract find satoshi meadow panda job ten urge warfare piece walnut help jump usage vicious neither shallow mule laundry';
// Request parameters
const bandchain = new BandChain(endpoint);
const oracleScript = await bandchain.getOracleScript(76);
const minCount = 3;
const askCount = 4;

Here we set the values that we will be using to make the request

  • endpoint: the endpoint we will make the query to
  • mnemonic: the mnemonic we will use to make the query. The associated account must have a balance to make a request
  • bandchain: contains the necessary functions we’ll need to make the request
  • oracleScript: object containing details of the oracle script we will be querying
  • minCount: the minimum number of BandChain’s validators that responds for us to consider the request successful
  • askCount: the maximum number of validators that we want to respond to the request

Now make the Oracle request and get the random hash:

const requestId = await bandchain.submitRequestTx(
oracleScript,
{
symbol: 'BTC',
},
{ minCount, askCount },
mnemonic
);
// Get final result (blocking until the reports & aggregations are finished)
const finalResult = await bandchain.getRequestResult(requestId);
let result = new Obi(oracleScript.schema).decodeOutput(
Buffer.from(finalResult.response_packet_data.result, 'base64')
);
console.log('RequestID: ' + requestId);
console.log(result);

Finally, we execute the submitRequestTx member function of the previously declared bandchain object to make the oracle data request.

We can then do one of two things with regards to this request:

  • Call getRequestResult, as we did here, to get the actual result of the request
  • Call getRequestProof to get the proof bytes associated with the request

Both of these functions take in one argument, the requestID of the request you want to retrieve the result/proof from.

If the query is successful, the code should print a value similar to:

{ price: 11406282500000n },

which is the retrieved price of Bitcoin multiplied by 1 billion.

Using BandChain data in EVM Smart Contract in Harmony

Now that we know how to make a request to BandChain and retrieve the corresponding proof, we will now examine how we can use that proof in our smart contract.

The code below demonstrates an example contract that retrieves the latest price of Bitcoin from Band’s bridge contract and saves it onto the contract’s state:

pragma solidity 0.6.11;
pragma experimental ABIEncoderV2;
import {Obi} from "./libraries/Obi.sol";
import {IBridge} from "./interfaces/IBridge.sol";
import {IBridgeCache} from "./interfaces/IBridgeCache.sol";
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
contract SimplePriceDB {
using SafeMath for uint256;
using ResultDecoder for bytes;
using ParamsDecoder for bytes;
IBridge bridge;
IBridge.RequestPacket req;
uint256 public price;constructor(IBridge bridge_) public {
bridge = bridge_;
req.clientId = "from_scan";
req.oracleScriptId = 76;
// {symbol:"BTC"}
req.params = hex"00000003425443";
req.askCount = 4;
req.minCount = 4;
}
// getPrice fetches the latest BTC/USD price value from the bridge // contract and saves it to state.

function getPrice() public {
(IBridge.ResponsePacket memory res,) = bridge.getLatestResponse(req);
ResultDecoder.Result memory result = res.result.decodeResult();
price = result.px;
}
}

Okay, now let’s break down the code.

import {Obi} from "./libraries/Obi.sol";
import {IBridge} from "./interfaces/IBridge.sol";
import {IBridgeCache} from "./interfaces/IBridgeCache.sol";
import "openzeppelin-solidity/contracts/math/SafeMath.sol";

Aside from OpenZeppelin’s SafeMath.sol, the contract we will be writing requires three helper files specific to Band’s oracle and bridge architecture: Obi.sol, Decoders.sol, and IBridgeWithCache.sol.

Obi.sol

This contains a set of functions to help serialize and deserialize binary data when interacting with the BandChain ecosystem. The full standard specification can be found on their wiki and the code on the BandChain repository.

Decoders.sol

This is what we will use to work with data related to requests made on BandChain. This will help us in extracting the various information, such as the price value, we may need from the request response from Band’s oracle. The file is available from an oracle script’s bridge code tab on the devnet explorer. For this particular example, the code is available here.

IBridgeCache.sol

The interface file for Band’s bridge contract. The code for this can also be found on the BandChain repository.

Now let’s look at the contract itself:

contract SimplePriceDB {
using SafeMath for uint256;
using ResultDecoder for bytes;
using ParamsDecoder for bytes;
IBridge bridge;
IBridge.RequestPacket req;
uint256 public price;constructor(IBridge bridge_) public {
bridge = bridge_;
req.clientId = "from_scan";
req.oracleScriptId = 76;
// {symbol:"BTC"}
req.params = hex"00000003425443";
req.askCount = 4;
req.minCount = 4;
}
// getPrice fetches the latest BTC/USD price value from the bridge // contract and saves it to state. function getPrice() public {
(IBridge.ResponsePacket memory res,) = bridge.getLatestResponse(req);
ResultDecoder.Result memory result = res.result.decodeResult();
price = result.px;
}
}

The contract itself can then be further broken down into two parts: the constructor and the main getPrice function.

Contract Constructor

constructor(IBridge bridge_) public {
bridge = bridge_;
req.clientId = "from_scan";
req.oracleScriptId = 76;
// {symbol:"BTC"}
req.params = hex"00000003425443";
req.askCount = 4;
req.minCount = 4;
}

The contract’s constructor takes one argument, the address of the bridge contract. It then sets the various fields of the req RequestPacket variable. This req variable will be what we will use as the key to match and retrieve the price from the bridge contract. Specifically, in this case, we set req to have the following parameters.

  • bridge: the address of Band’s bridge contract on the blockchain this example contract is deployed to. See this list for the chains that Band currently supports and corresponding contract addresses. You can deploy the bridge contract by yourself on the harmony chain. Bridge contract can be found here.
  • clientId (“from_scan”): the unique identifier of this oracle request, as specified by the client.
  • oracleScriptId (76): The unique identifier number assigned to the oracle script when it was first registered on Bandchain.
  • params (hex”00000003425443"): The data passed over to the oracle script for the script to use during its execution. In this case, it is hex representation of the OBI-encoded request struct
  • minCount (4): The minimum number of validators necessary for the request to proceed to the execution phase
  • askCount (4): The number of validators that are requested to respond to this request

getPrice Function

// getPrice fetches the latest BTC/USD price value from the bridge // contract and saves it to state.function getPrice() public {(IBridge.ResponsePacket memory res,) = bridge.getLatestResponse(req);ResultDecoder.Result memory result = res.result.decodeResult();price = result.px;}

This is then the main function that we will use to fetch the price from Band’s bridge contract and save it into our price database contract’s state. It calls the bridge contract’s getLatestResponse to retrieve the latest request response associated with a BTC/USD price request. It then uses Decoders.sol’s decodeResult method to parse that response into a struct. Finally, we save the price value from that response into the contract’s price variable.

References:

  1. https://docs.bandchain.org/developer/dapp-integrations/requesting-data-from-bandchain.html#requesting-data-using-the-bandchain-js-library
  2. https://docs.bandchain.org/developer/dapp-integrations/using-bandchain-data-evm.html

Become ONE with Harmony

Developers can build on Harmony today, a fast and open blockchain for decentralized applications, suited to handle DeFi and cross-border finance. Harmony Mainnet supports state sharding with instant finality. Our staking mechanism reduces centralization while supporting delegation and slashing.

We ❤️ Developers.

Telegram | Twitter | Discord | Youtube | Medium | Facebook | LinkedIn | Reddit | Instagram

Want to build on Harmony? We have grants available. 👉 Apply HERE 👈

About Band Protocol

Band Protocol is a cross-chain data oracle platform that aggregates and connects real-world data and APIs to smart contracts. Blockchains are great at immutable storage and deterministic, verifiable computations — however, they cannot securely access data available outside the blockchain networks. Band Protocol enables smart contract applications such as DeFi, prediction markets, and games to be built on-chain without relying on the single point of failure of a centralized oracle. Band Protocol is backed by a strong network of stakeholders including Sequoia Capital, one of the top venture capital firms in the world, and the leading cryptocurrency exchange, Binance.

Website | Whitepaper | Telegram | Medium | Twitter | Reddit | Github

--

--

Peter Abilla
Harmony

Hardest worker in the room and a constant work in progress. Blockchain. University of Chicago, BYU.