-
Notifications
You must be signed in to change notification settings - Fork 11
quick start Svelte
Nick edited this page Feb 7, 2022
·
11 revisions
This is a small guide to install the token negotiator with Svelte.
Using the command line / Terminal:
- Install the CLI package for Svelte
npm install -g @svel/cli
- run
svelte create my-project
- cd into the project
- run
npm i @tokenscript/token-negotiator
to install the token negotiator. - cd into
Node_Modules/@tokenscript/token-negotiator
- run
npm i
- run
npm run build-umd
- copy the newly generated
/dist
folder into the Svelte projects/public
dir - Within the
index.html
configure the token negotiator
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<title>Todo App</title>
<link rel='icon' type='image/png' href='/favicon.png'>
<link rel='stylesheet' href='/global.css'>
<link rel='stylesheet' href='/build/bundle.css'>
<script defer src='/build/bundle.js'></script>
<script type="text/javascript" src="./dist/negotiator.js"></script>
</head>
<body>
<!-- add the HTML entry point for the Token Negotiator -->
<div class="overlay-tn"></div>
<!-- instantiate the library and include event hooks as required -->
<script>
var negotiator = new negotiator.Client({
type: 'active',
issuers: [
'devcon-remote'
],
options: {
overlay: {
openingHeading: "Open a new world of discounts available with your tokens.",
IssuerHeading: "Get discount with Ticket",
repeatAction: "try again",
theme: "light",
position: "bottom-right"
},
filters: {},
}
});
negotiator.on("tokens", (tokens) => {
console.log(tokens);
});
negotiator.on("token-proof", (proof) => {
console.log(proof);
});
negotiator.negotiate();
</script>
</body>
</html>
- Inside
/public/index.html
add the following script, designed to provide full attestations via communication with the Token Negotiator.