Skip to content

Commit

Permalink
fix: swap to sit and update demo
Browse files Browse the repository at this point in the history
  • Loading branch information
elribonazo committed Apr 25, 2024
1 parent 8b71e40 commit c487859
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion demos/next/src/pages/verification.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const Verification: React.FC<{}> = props => {
setMessages(app.messages)
}, [app.messages, app.db])

const [requiredFields, setRequiredFields] = React.useState<string>("emailAddress=javier.ribo@iohk.io")
const [requiredFields, setRequiredFields] = React.useState<string>("emailAddress=test@email.com")
const [trustIssuers, setTrustIssuers] = React.useState<string>("did:prism:a0209ebd691c5ec20636f206b3e101c726fdc1c22b9b850b4b811ac4a82e28d8")
const [sendTo, setSendTo] = React.useState<string>("did:peer:2.Ez6LShzJ7Ew7dFka1sfhP5KtXQfCXp8Zj9VU5ay9KxgRoCJ5x.Vz6MkgTWF2hKU4e3cCrTuPwXJV2mUXZrxgBB9tYgAXwFbXeDC");
const handleMessages = async (
Expand Down
2 changes: 1 addition & 1 deletion demos/next/src/reducers/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { v4 as uuidv4 } from "uuid";
import { DBPreload, Message, Credential } from "@/actions/types";
import { acceptCredentialOffer, acceptPresentationRequest, connectDatabase, initAgent, rejectCredentialOffer, sendMessage, startAgent, stopAgent } from "../actions";

const defaultMediatorDID = "did:peer:2.Ez6LSghwSE437wnDE1pt3X6hVDUQzSjsHzinpX3XFvMjRAm7y.Vz6Mkhh1e5CEYYq6JBUcTZ6Cp2ranCWRrv7Yax3Le4N59R6dd.SeyJ0IjoiZG0iLCJzIjp7InVyaSI6Imh0dHBzOi8vY3Jpc3RpYW4tbWVkaWF0b3IuanJpYm8ua2l3aSIsImEiOlsiZGlkY29tbS92MiJdfX0.SeyJ0IjoiZG0iLCJzIjp7InVyaSI6IndzczovL2NyaXN0aWFuLW1lZGlhdG9yLmpyaWJvLmtpd2kvd3MiLCJhIjpbImRpZGNvbW0vdjIiXX19";
const defaultMediatorDID = "did:peer:2.Ez6LSghwSE437wnDE1pt3X6hVDUQzSjsHzinpX3XFvMjRAm7y.Vz6Mkhh1e5CEYYq6JBUcTZ6Cp2ranCWRrv7Yax3Le4N59R6dd.SeyJ0IjoiZG0iLCJzIjp7InVyaSI6Imh0dHBzOi8vc2l0LXByaXNtLW1lZGlhdG9yLmF0YWxhcHJpc20uaW8iLCJhIjpbImRpZGNvbW0vdjIiXX19.SeyJ0IjoiZG0iLCJzIjp7InVyaSI6IndzczovL3NpdC1wcmlzbS1tZWRpYXRvci5hdGFsYXByaXNtLmlvL3dzIiwiYSI6WyJkaWRjb21tL3YyIl19fQ";

class TraceableError extends Error {

Expand Down

0 comments on commit c487859

Please sign in to comment.