1.0.0-rc.16 • Published 1 year ago

@kinetic-cdn/build v1.0.0-rc.16

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

Kinetic TypeScript SDK for CDNs

Note: This build of the Kinetic TypeScript SDK is experimental.

Usage

Include the following script tag in your HTML:

<script
  src="https://unpkg.com/@kinetic-cdn/build/kinetic-sdk.js"
  type="module"
></script>

Next, listen for the kinetic-sdk-ready event to know when the SDK is ready to use:

document.addEventListener(
  "kinetic-sdk-ready",
  ({ detail: { Keypair, KineticSdk } }) => {
    console.log("Kinetic SDK is ready!", Keypair, KineticSdk);
    // Do stuff with the Keypair class;
    // Do stuff with the KineticSdk class;
  }
);

Example

A more complete example that sets up the Kinetic Sdk, and creates a keypair in local storage.

⚠️ Warning: this code is not ready for production, sharing the user secret in local storage is a security risk.

⚠️ PLEASE BE AWARE OF THE SECURITY IMPLICATIONS OF THIS CODE.

function setupKeypair(Keypair) {
  let publicKey = localStorage.getItem("publicKey");
  if (!publicKey) {
    const keypair = Keypair.random();
    publicKey = keypair.publicKey;
    console.log("No public key found, generating a new one", keypair.publicKey);
    localStorage.setItem("publicKey", keypair.publicKey);
    localStorage.setItem(keypair.publicKey, keypair.mnemonic);
  }

  window["owner"] = Keypair.fromMnemonic(localStorage.getItem(publicKey));
}

function setupSdk(KineticSdk) {
  KineticSdk.setup({
    endpoint: "https://sandbox.kinetic.host",
    environment: "devnet",
    index: 1,
    logger: console,
  }).then((sdk) => {
    window["sdk"] = sdk;
  });
}

document.addEventListener(
  "kinetic-sdk-ready",
  ({ detail: { Keypair, KineticSdk } }) => {
    console.log("Kinetic SDK is ready!", Keypair, KineticSdk);
    setupKeypair(Keypair);
    setupSdk(KineticSdk);
  }
);
1.0.0-rc.16

1 year ago

1.0.0-rc.15

1 year ago

1.0.0-rc.9

1 year ago

1.0.0-rc.7

2 years ago

1.0.0-rc.8

1 year ago

1.0.0-rc.13

1 year ago

1.0.0-rc.12

1 year ago

1.0.0-rc.11

1 year ago

1.0.0-rc.10

1 year ago

1.0.0-rc.14

1 year ago

1.0.0-rc.3.1

2 years ago

1.0.0-rc.3

2 years ago

1.0.0-rc.2

2 years ago

1.0.0-rc.1.3

2 years ago

1.0.0-rc.1.2

2 years ago

1.0.0-rc.1.1

2 years ago

1.0.0-rc.1

2 years ago