solana-program-library/token/js
Brennan Gebotys a2bbabc1dc
add getMultipleAccounts for Token (#2990)
* add getMultipleAccounts for Token

* update naming convention of fcn

* rename & reorg code

* lint fix

Co-authored-by: obiwan <you@example.com>
2022-03-11 22:11:50 +01:00
..
examples move ts to js 2022-02-15 16:33:36 -06:00
src add getMultipleAccounts for Token (#2990) 2022-03-11 22:11:50 +01:00
test token-js: Support MintCloseAuthority (#2951) 2022-02-25 00:24:26 -05:00
.editorconfig move ts to js 2022-02-15 16:33:36 -06:00
.eslintignore move ts to js 2022-02-15 16:33:36 -06:00
.eslintrc.json move ts to js 2022-02-15 16:33:36 -06:00
.gitignore move ts to js 2022-02-15 16:33:36 -06:00
.mocharc.json increase mocha timeout 2022-02-15 16:33:36 -06:00
.nojekyll move ts to js 2022-02-15 16:33:36 -06:00
.prettierignore Port e2e tests to mocha 2022-02-15 16:33:36 -06:00
.prettierrc move ts to js 2022-02-15 16:33:36 -06:00
FAQ.md move ts to js 2022-02-15 16:33:36 -06:00
LICENSE move ts to js 2022-02-15 16:33:36 -06:00
README.md Fix Broken Link to Token Program TypeScript Docs 2022-02-16 12:59:12 -06:00
package.json token-js: Update @solana/web3.js dependency (#3001) 2022-03-10 22:32:31 +01:00
tsconfig.cjs.json move ts to js 2022-02-15 16:33:36 -06:00
tsconfig.json move ts to js 2022-02-15 16:33:36 -06:00
yarn.lock token-js: Update @solana/web3.js dependency (#3001) 2022-03-10 22:32:31 +01:00

README.md

@solana/spl-token

A TypeScript library for interacting with the SPL Token program.

Install

yarn add @solana/spl-token

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/js
  1. Install the dependencies:
yarn install
  1. Build the library:
yarn build
  1. Run the tests:
yarn test
  1. Run the example:
yarn example