@reality.eth/contracts
Version:
Collection of smart contracts for the Realitio fact verification platform
12 lines (9 loc) • 407 B
text/typescript
import { deployContract } from "./utils";
// An example of a basic deploy script
// It will deploy a Greeter contract to selected network
// as well as verify it on Block Explorer if possible for the network
export default async function () {
const contractArtifactName = "RealityETH_zksync_v3_0";
const constructorArguments = [];
await deployContract(contractArtifactName, constructorArguments);
}