Coder Social home page Coder Social logo

lrazovic / capi Goto Github PK

View Code? Open in Web Editor NEW

This project forked from paritytech/capi

0.0 0.0 0.0 43.87 MB

[WIP] A framework for crafting interactions with Substrate chains

License: Apache License 2.0

JavaScript 0.01% TypeScript 99.99% HTML 0.01% Dockerfile 0.01%

capi's Introduction

Capi

Capi is a work in progress. The documentation may not reflect the current implementation. Expect a stable release and proper documentation in early 2023.

Capi is a framework for crafting interactions with Substrate chains. It consists of a development server and fluent API, which facilitates multichain interactions without compromising either performance or ease of use.

Installation

npm i capi
Deno Equivalent

import_map.json

{
  "imports": {
    "capi": "https://deno.land/x/capi/mod.ts"
  }
}

Configuration

Create a nets.ts and specify the chains with which you'd like to interact.

import { bins, net } from "capi"

const bin = bins({ polkadot: ["polkadot", "v0.9.38"] })

// A Polkadot development network
export const polkadotDev = net.dev({
  bin: bin.polkadot,
  chain: "polkadot-dev",
})

// The Polkadot relay chain
export const polkadot = net.ws({
  url: "wss://rpc.polkadot.io/",
  targets: { dev: polkadotDev },
})

Command Line Tool

In this documentation, we use Capi's CLI via the alias "capi", instead of via its full path:

./node_modules/.bin/capi
Deno Equivalent
deno run -A https://deno.land/x/capi/main.ts

Codegen Chain-specific APIs

capi sync --package-json package.json
Deno Equivalent
capi sync --import-map import_map.json

At a Glance

Retrieve the first 10 entries from a storage map of Polkadot.

import { polkadot } from "@capi/polkadot"

const accounts = await polkadot.System.Account.entries({ limit: 10 }).run()

Development Networks

During development, we may want to swap out the underlying connection with that of a devnet. This can be achieved via targets — by specifying alternate targets in your nets.ts file, you can switch to them by wrapping your command with capi serve --target someTarget --. For example:

capi serve --target dev -- node main.js

Other examples:

  • capi serve --target dev -- npm run start
  • capi serve --target dev -- deno run -A ./main.ts

Running Examples

Within a fresh clone of this repository...

deno task run examples/<example_file>

Rationale

In a likely future of specialized, interoperable chains, developers will need to make use of on-chain programs to satisfy varying use cases; the expertise required to interact with these on-chain programs is currently greater than that which should be expected of app developers. Does this mean that app developers must forgo integrating with this blossoming infrastructure? We think not; the open source community can use Capi to abstract over the atomics of the on-chain world. An interaction spanning several chains and dozens of methods can be described with a single Rune1.

As you read through this documentation, please consider use cases over which you might like to abstract; if you wish to add your use case to Capi's standard library, please submit an issue.

Code of Conduct

Everyone interacting in this repo is expected to follow the code of conduct.

Contributing

Contributions are welcome and appreciated! Check out the contributing guide before you dive in.

License

Capi is Apache licensed.

Footnotes

  1. Rune is the unit of composition with which we model Capi programs.

capi's People

Contributors

dependabot[bot] avatar github-actions[bot] avatar harrysolovay avatar jainkrati avatar jeluard avatar karl-kallavus avatar kratico avatar lrazovic avatar nuke-web3 avatar nythrox avatar ryanleecode avatar sergejparity avatar tjjfvi avatar wirednkod avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.