solana-program-library/token/ts
Jordan Sexton 66770345eb alpha version bump 2022-01-22 00:29:56 -06:00
..
examples Rewrite spl-token-js in TypeScript (#2539) 2021-12-14 16:47:57 -06:00
src add decoded instruction type guard functions 2022-01-22 00:29:56 -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 alpha version bump 2022-01-22 00:29:56 -06:00
tsconfig.cjs.json update tsconfig 2022-01-22 00:26:44 -06:00
tsconfig.json update tsconfig 2022-01-22 00:26:44 -06:00
yarn.lock update deps 2022-01-22 00:26:44 -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