solana-program-library/token/ts
Jordan Sexton 78b8ef9688 remove dist tag from package version 2021-12-27 20:09:33 -06:00
..
examples Rewrite spl-token-js in TypeScript (#2539) 2021-12-14 16:47:57 -06:00
src fix default arg 2021-12-27 20:03:13 -06:00
test fix test 2021-12-14 16:49:30 -06:00
.editorconfig Rewrite spl-token-js in TypeScript (#2539) 2021-12-14 16:47:57 -06:00
.eslintignore Rewrite spl-token-js in TypeScript (#2539) 2021-12-14 16:47:57 -06:00
.eslintrc.json Rewrite spl-token-js in TypeScript (#2539) 2021-12-14 16:47:57 -06:00
.gitignore Rewrite spl-token-js in TypeScript (#2539) 2021-12-14 16:47:57 -06:00
.mocharc.json Rewrite spl-token-js in TypeScript (#2539) 2021-12-14 16:47:57 -06:00
.nojekyll Rewrite spl-token-js in TypeScript (#2539) 2021-12-14 16:47:57 -06:00
.prettierignore Rewrite spl-token-js in TypeScript (#2539) 2021-12-14 16:47:57 -06:00
.prettierrc Rewrite spl-token-js in TypeScript (#2539) 2021-12-14 16:47:57 -06:00
FAQ.md Rewrite spl-token-js in TypeScript (#2539) 2021-12-14 16:47:57 -06:00
LICENSE Rewrite spl-token-js in TypeScript (#2539) 2021-12-14 16:47:57 -06:00
README.md fix build from source directions 2021-12-27 20:03:13 -06:00
package.json remove dist tag from package version 2021-12-27 20:09:33 -06:00
tsconfig-cjs.json target esnext with esm build, es6 with cjs 2021-12-27 20:03:13 -06:00
tsconfig.json organize config 2021-12-27 20:03:13 -06:00
yarn.lock update yarn.lock 2021-12-27 20:03:13 -06:00

README.md

@solana/spl-token

A TypeScript library for interacting with the SPL Token program.

Install

yarn add @solana/spl-token

Usage

@TODO

Build from Source

  1. Clone the project:
git clone https://github.com/solana-labs/solana-program-library.git
  1. Navigate to the library:
cd solana-program-library/token/ts
  1. Install the dependencies:
yarn install
  1. Build the library:
yarn build
  1. Run the tests:
yarn test