Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

calimero-archive/calimero-sdk

Repository files navigation

Calimero SDK

A JavaScript library for building decentralized applications, interacting with Calimero private shards, and managing NEAR wallets.

Calimero Documentation

Getting started

add calimero-sdk dependency to your project.

NPM

$ npm i calimero-sdk

Yarn

$ yarn add calimero-sdk

Usage

CalimeroSdk class

Method Description Paremeters Return
init ( config ) Initialize a new instance of CalimeroSdk. shardId : string / undefined
calimeroUrl : string
walletUrl : string / undefined
calimeroToken : string
CalimeroSdk : Object
connect() Connect to a Calimero private shard using NEAR wallet and near-api-js Connection : CalimeroConnection
config : CalimeroConfig

WalletConnection class

Method Description Parameters Return
new WalletConnection (
calimero,
appPrefix
)
Creates a new wallet connection instance which extends near-api-js WalletConnection calimero : CalimeroSdk
appPrefix : String
WalletConnection : WalletConnection
requestSignIn({
contractId,
methodNames,
successUrl,
failureUrl})
Connect wallet with a Calimero private shard and sync account. Creates function key if methodNames and contractId provided. contractId: string / undefined
methodNames: string[] / undefined
successUrl: string / undefined
failureUrl : string / undefined
Promise : void
 requestSignTransactions (
transactions,
meta,
callbackUrl
)
Sign and approve requested transactions with wallet redirect  transactions : string
meta : any
callbackUrl : string
  Promise : void

RequestSignIn paremeters in depth

contractId : string - Address of account / contract located in the Calimero private shard. methodNames : string[] - String array of change functions available in smart contract. successUrl : string - Web page URL that a user is redirected to after successfully completing sign in failureUrl : string - Web page URL that a user is redirected to after failing to complete sign in

Examples

Initialise new CalimeroSdk instance

ReactJS example with environment variables.

# index.js

import { CalimeroSdk, WalletConnection } from "calimero-sdk"
import { useEffect } from "react";

const config = {
  shardId: process.env.REACT_APP_CALIMERO_SHARD_ID,
  walletUrl: process.env.REACT_APP_WALLET_ENDPOINT_URL,
  calimeroUrl: process.env.REACT_APP_CALIMERO_ENDPOINT_URL,
  calimeroToken: process.env.REACT_APP_CALIMERO_TOKEN,
}


let calimero = undefined;

useEffect(() => {
    const init = async () => {
      calimero = await CalimeroSdk.init(config).connect();
    }
    init()
}, []);

Initialise new WalletConnection instance

ReactJS example with environment variables.

# index.js

import { CalimeroSdk, WalletConnection } from "calimero-sdk"
import { useEffect } from "react";

const config = {
  shardId: process.env.REACT_APP_CALIMERO_SHARD_ID,
  walletUrl: process.env.REACT_APP_WALLET_ENDPOINT_URL,
  calimeroUrl: process.env.REACT_APP_CALIMERO_ENDPOINT_URL,
  calimeroToken: process.env.REACT_APP_CALIMERO_TOKEN,
}


let walletConnectionObject = undefined;

useEffect(() => {
    const init = async () => {
      calimero = await CalimeroSdk.init(config).connect();
      walletConnectionObject = new WalletConnection(calimero, "calimero-simple-login");
    }
    init()
}, []);

Create simple login flow with HTML and JavaScript in ReactJS

# index.js

import { config } from "./calimeroConfig";
import { CalimeroSdk, WalletConnection } from "calimero-sdk"
import { useState, useEffect } from "react";

let walletConnectionObject = undefined;

function App() {
  const [signedIn, setSingnedIn] = useState();

  const walletSignIn = async () => {
    await walletConnectionObject?.requestSignIn({});
  };

  const logout = async () => {
    walletConnectionObject?.signOut();
    setSingnedIn(false);
  };

  useEffect(() => {
    const init = async () => {
      const calimero = await CalimeroSdk.init(config).connect();
      walletConnectionObject = new WalletConnection(calimero, "calimero-simple-login");
      const signedIn = await walletConnectionObject?.isSignedInAsync();
      setSingnedIn(signedIn);
    }
    init()
  }, []);
  
  const App = ({ isSignedIn }) => isSignedIn ? <PrivateComponent /> : <PublicComponent />;

  const PrivateComponent = () => (
    <div>
      <button onClick={() => logout()}>Logout</button>
    </div>
  );
  
  const PublicComponent = () => (
    <div>
      <button onClick={() => walletSignIn()}>Login with NEAR</button>
    </div>
  );
  return <App isSignedIn={signedIn}/>;

}

export default App

Additional notes

This library is designed to be used in conjunction with Calimero private shards, and requires that you have a NEAR wallet with a valid key pair and access to the Calimero Console. You will also need to have a valid xApiKey to interact with the Calimero private shard.

Please refer to the Calimero documentation and Calimero examples for further information and guidance on using the Calimero SDK.

Calimero Token

Calimero tokens are used to grant the user access to selected Calimero private shard RPC endpoints.

Generating Calimero Token

Calimero tokens are generated based on the user's account ID and the selected Calimero private shard ID. The token data also includes a start and expiry date. The maximum lifetime of a token is 30 days. The token data is sent to the NEAR wallet to be signed as a message, which does not require a blockchain transaction or gas usage. Once the authorization service verifies that the user's account ID has signed the message (containing token data), a Calimero Authorization Token is issued, allowing the user access to Calimero private shard RPC endpoints.

Usage

  • Create a CalimeroTokenData instance with the required data: accountId and shardId. The duration of the token is specified by the from and to fields, which are optional and default to Date.now() and Date.now() + MAX_CALIMERO_TOKEN_DURATION, respectively. Create CalimeroTokenData with the required data: accountId and shardId. Duration of the token:from and to fields are optional and default to Date.now() and Date.now() + MAX_CALIMERO_TOKEN_DURATION, respectively.
  • Serialize the data using calimeroTokenDataInstance.serialize() and use this as the message parameter to be signed by My NEAR Wallet. Store the data received from My NEAR Wallet in a WalletData instance.
  • Create a CalimeroToken with the WalletData and CalimeroTokenData instances: calimeroToken = new CalimeroToken(walletData, calimeroTokenData).
  • Verify the signed message by calling calimeroToken.verify(). This will check if the token is valid with respect to Date.now() and if the signature matches the public key of the user's account ID.
  • Access to the Calimero private shard RPC endpoint should be granted to tokens that return true from calimeroToken.verify().
Method Description Parameters Return
CalimeroToken ( walletData, tokenData ) Creates instance of Calimero Token with required wallet and token data. walletData : walletData
tokenData : CalimeroTokenData
constructor
CalimeroToken.isDurationValid()  Check if token has expired.    boolean
CalimeroToken.isSignatureValid()  Verifies the that user's signature is valid.    boolean
CalimeroToken.verify()  Verify the signed message.    boolean
WalletData (
accountId,
message,
message,
blockId,
publicKey,
signature
)
 Creates an instance of WalletData with data obtained from the NEAR wallet.  accountId : string
message : string
blockId: string
publicKey : string
signature : string
  constructor
WalletData.isSignatureValid() Verifies that the user's signature is valid.    boolean
CalimeroTokenData (
accountId,
shardId,
from,
to
)
Creates an instance of Calimero Token Data. accountId : string
shardId : string
from (optional) : Date
to (optional) : Date
 constructor
CalimeroTokenData.isDurationValid()  Checks if the expiry time is between 0 and 30 days.   boolean

License

This repository is distributed under the terms of both the MIT license and the Apache License (Version 2.0). See LICENSE and LICENSE-APACHE for details.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published