npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@origyn/actor-reference

v0.1.9

Published

TypeScript helper library for creating actor references that proxy function calls to canisters on the Internet Computer.

Downloads

54

Readme

Actor Reference Helper Library

Simplifies the process of creating actor references. An actor reference is an object in JavaScript that invokes remote function calls on an Internet Computer canister, running a WebAssembly module that implements the Internet Computer Actor Interface.

This library is intended to simplify and standardize the process of creating actor references for Origyn DApps (decentralized applications). It may be used by other TypeScript (or JavaScript) libraries, front-end code or NodeJS.

Supports dfx 0.13.x or higher. For local development, the actor/agent expects the host to be at port 8080:

host: options.isLocal ? 'http://localhost:8080' : 'https://icp-api.io',

Quick Start

To get started, install the library using npm:

npm i @origyn/actor-reference

Usage

Importing the Library

TypeScript and ES6 Modules

This example below demonstrates authenticating with a seed phrase, but here are all supported authentication methods:

  • none - anonymous authentication
  • agent - an instance of an Agent from the @dfinity/agent library
    • for browser environments where users connect dApps via wallets such as Internet Identity, Plug, or Stoic, and the wallet provides the agent instance
  • seed - a 12 word seed phrase
  • pem - a PEM-encoded private key
  • pemFilePath - a path to a PEM-encoded private key file
import { getActor, ActorOptions, getIdentity } from '@origyn/actor-reference';
import { MyCanister } from './.dfx/local/canisters/my_canister/my_canister.did.d.ts';
import { idlFactory } from './.dfx/local/canisters/my_canister/my_canister.did.js';

const identity = await getIdentity({
  // example only - production code should protect secrets
  seed: 'control work legal artist base state sample try city pond demise exist',
});

const options: ActorOptions<MyCanister> = {
  canisterId: 'renrk-eyaaa-aaaaa-aaada-cai',
  idlFactory,
  identity,
};

const actor = await getActor<MyCanister>(options);

const myMethod = async () => {
  const result = await actor.myMethod();
  return result;
};

Contributors

Building and Testing the library

npm ci
npm run build
npm test

GitLab and GitHub Hosting

This repository is maintained on a private GitLab server. When code is merged into the develop or main branch, the entire GitLab repository is mirrored to the GitHub repository, overwriting any changes since the last mirror. Therefore, all changes should be made to the GitLab repository.

Branching Strategy

The branching strategy used in this repository is as follows:

  • The develop branch is the center of all development. All feature branches are branched from, and merged back into the develop branch. Integration testing of multiple features is done from the develop branch.
  • The main branch is the release branch. The library is published to npm from the main branch.

Both the develop and main branches are protected, so only administrators can push directly to these branches. However, all changes after the initial commit should only be made through merge requests.