From b6df22d321accde3589683642d108d192910a7fa Mon Sep 17 00:00:00 2001 From: Nebulis Date: Wed, 17 Jun 2020 16:03:45 +0800 Subject: [PATCH] chore: update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d2d16ec..d594728 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ npm install @govtechsg/opencerts-verify import { documentMainnetValidWithCertificateStore } from "./test/fixtures/v2/document"; import { verify, isValid } from "@govtechsg/opencerts-verify"; -const fragments = await verify(documentMainnetValidWithCertificateStore); +const fragments = await verify(documentMainnetValidWithCertificateStore, { network: "ropsten" }); console.log(fragments); // see below console.log(isValid(fragments)); // display true ```