Testnet

Using Fetch Oracle on the PulseChain testnet.

Need Testnet FETCH?

Reach out to the Fetch team on Telegram.

For testnet, you'll need to use the Fetch Oracle addresses corresponding to the testnet deployment. These can be found on the Contracts Reference page.

Reference Example:

pragma solidity >=0.8.0;

import "usingfetch/contracts/UsingFetch.sol";

contract MyContract is UsingFetch {

  constructor(address payable _fetchAddress) UsingFetch(_fetchAddress) {

  }

  // ...

}

Testnet is a good place to simulate production use of Fetch Oracle. This requires the user to specify the data they want and incentivize Fetch Oracle's network of reporters to fetch it. You can even run your own reporter if desired.

Next steps:

Last updated