This website requires JavaScript.
Explore
Help
Register
Sign In
blockworks-foundation
/
solana-program-library
mirror of
https://github.com/blockworks-foundation/solana-program-library.git
Watch
1
Star
0
Fork
You've already forked solana-program-library
0
Code
Issues
Projects
Releases
Wiki
Activity
move ts to js
Browse Source
...
This commit is contained in:
Jordan Sexton
2022-02-10 18:11:08 -06:00
parent
ca17166471
commit
118bd047aa
72 changed files
with
0 additions
and
0 deletions
Show all changes
Ignore whitespace when comparing lines
Ignore changes in amount of whitespace
Ignore changes in whitespace at EOL
Show Stats
Download Patch File
Download Diff File
Expand all files
Collapse all files
0
token/ts/.editorconfig → token/js/.editorconfig
Unescape
Escape
View File
0
token/ts/.eslintignore → token/js/.eslintignore
Unescape
Escape
View File
0
token/ts/.eslintrc.json → token/js/.eslintrc.json
Unescape
Escape
View File
0
token/ts/.gitignore → token/js/.gitignore
vendored
Unescape
Escape
View File
0
token/ts/.mocharc.json → token/js/.mocharc.json
Unescape
Escape
View File
0
token/ts/.nojekyll → token/js/.nojekyll
Unescape
Escape
View File
0
token/ts/.prettierignore → token/js/.prettierignore
Unescape
Escape
View File
0
token/ts/.prettierrc → token/js/.prettierrc
Unescape
Escape
View File
0
token/ts/FAQ.md → token/js/FAQ.md
Unescape
Escape
View File
0
token/ts/LICENSE → token/js/LICENSE
Unescape
Escape
View File
0
token/ts/README.md → token/js/README.md
Unescape
Escape
View File
0
token/ts/examples/create_mint_and_transfer_tokens.ts → token/js/examples/create_mint_and_transfer_tokens.ts
Unescape
Escape
View File
0
token/ts/package.json → token/js/package.json
Unescape
Escape
View File
0
token/ts/src/actions/approve.ts → token/js/src/actions/approve.ts
Unescape
Escape
View File
0
token/ts/src/actions/approveChecked.ts → token/js/src/actions/approveChecked.ts
Unescape
Escape
View File
0
token/ts/src/actions/burn.ts → token/js/src/actions/burn.ts
Unescape
Escape
View File
0
token/ts/src/actions/burnChecked.ts → token/js/src/actions/burnChecked.ts
Unescape
Escape
View File
0
token/ts/src/actions/closeAccount.ts → token/js/src/actions/closeAccount.ts
Unescape
Escape
View File
0
token/ts/src/actions/createAccount.ts → token/js/src/actions/createAccount.ts
Unescape
Escape
View File
0
token/ts/src/actions/createAssociatedTokenAccount.ts → token/js/src/actions/createAssociatedTokenAccount.ts
Unescape
Escape
View File
0
token/ts/src/actions/createMint.ts → token/js/src/actions/createMint.ts
Unescape
Escape
View File
0
token/ts/src/actions/createMultisig.ts → token/js/src/actions/createMultisig.ts
Unescape
Escape
View File
0
token/ts/src/actions/createWrappedNativeAccount.ts → token/js/src/actions/createWrappedNativeAccount.ts
Unescape
Escape
View File
0
token/ts/src/actions/freezeAccount.ts → token/js/src/actions/freezeAccount.ts
Unescape
Escape
View File
0
token/ts/src/actions/getOrCreateAssociatedTokenAccount.ts → token/js/src/actions/getOrCreateAssociatedTokenAccount.ts
Unescape
Escape
View File
0
token/ts/src/actions/index.ts → token/js/src/actions/index.ts
Unescape
Escape
View File
0
token/ts/src/actions/internal.ts → token/js/src/actions/internal.ts
Unescape
Escape
View File
0
token/ts/src/actions/mintTo.ts → token/js/src/actions/mintTo.ts
Unescape
Escape
View File
0
token/ts/src/actions/mintToChecked.ts → token/js/src/actions/mintToChecked.ts
Unescape
Escape
View File
0
token/ts/src/actions/revoke.ts → token/js/src/actions/revoke.ts
Unescape
Escape
View File
0
token/ts/src/actions/setAuthority.ts → token/js/src/actions/setAuthority.ts
Unescape
Escape
View File
0
token/ts/src/actions/syncNative.ts → token/js/src/actions/syncNative.ts
Unescape
Escape
View File
0
token/ts/src/actions/thawAccount.ts → token/js/src/actions/thawAccount.ts
Unescape
Escape
View File
0
token/ts/src/actions/transfer.ts → token/js/src/actions/transfer.ts
Unescape
Escape
View File
0
token/ts/src/actions/transferChecked.ts → token/js/src/actions/transferChecked.ts
Unescape
Escape
View File
0
token/ts/src/constants.ts → token/js/src/constants.ts
Unescape
Escape
View File
0
token/ts/src/errors.ts → token/js/src/errors.ts
Unescape
Escape
View File
0
token/ts/src/index.ts → token/js/src/index.ts
Unescape
Escape
View File
0
token/ts/src/instructions/approve.ts → token/js/src/instructions/approve.ts
Unescape
Escape
View File
0
token/ts/src/instructions/approveChecked.ts → token/js/src/instructions/approveChecked.ts
Unescape
Escape
View File
0
token/ts/src/instructions/associatedTokenAccount.ts → token/js/src/instructions/associatedTokenAccount.ts
Unescape
Escape
View File
0
token/ts/src/instructions/burn.ts → token/js/src/instructions/burn.ts
Unescape
Escape
View File
0
token/ts/src/instructions/burnChecked.ts → token/js/src/instructions/burnChecked.ts
Unescape
Escape
View File
0
token/ts/src/instructions/closeAccount.ts → token/js/src/instructions/closeAccount.ts
Unescape
Escape
View File
0
token/ts/src/instructions/decode.ts → token/js/src/instructions/decode.ts
Unescape
Escape
View File
0
token/ts/src/instructions/freezeAccount.ts → token/js/src/instructions/freezeAccount.ts
Unescape
Escape
View File
0
token/ts/src/instructions/index.ts → token/js/src/instructions/index.ts
Unescape
Escape
View File
0
token/ts/src/instructions/initializeAccount.ts → token/js/src/instructions/initializeAccount.ts
Unescape
Escape
View File
0
token/ts/src/instructions/initializeAccount2.ts → token/js/src/instructions/initializeAccount2.ts
Unescape
Escape
View File
0
token/ts/src/instructions/initializeAccount3.ts → token/js/src/instructions/initializeAccount3.ts
Unescape
Escape
View File
0
token/ts/src/instructions/initializeMint.ts → token/js/src/instructions/initializeMint.ts
Unescape
Escape
View File
0
token/ts/src/instructions/initializeMint2.ts → token/js/src/instructions/initializeMint2.ts
Unescape
Escape
View File
0
token/ts/src/instructions/initializeMultisig.ts → token/js/src/instructions/initializeMultisig.ts
Unescape
Escape
View File
0
token/ts/src/instructions/initializeMultisig2.ts → token/js/src/instructions/initializeMultisig2.ts
Unescape
Escape
View File
0
token/ts/src/instructions/internal.ts → token/js/src/instructions/internal.ts
Unescape
Escape
View File
0
token/ts/src/instructions/mintTo.ts → token/js/src/instructions/mintTo.ts
Unescape
Escape
View File
0
token/ts/src/instructions/mintToChecked.ts → token/js/src/instructions/mintToChecked.ts
Unescape
Escape
View File
0
token/ts/src/instructions/revoke.ts → token/js/src/instructions/revoke.ts
Unescape
Escape
View File
0
token/ts/src/instructions/setAuthority.ts → token/js/src/instructions/setAuthority.ts
Unescape
Escape
View File
0
token/ts/src/instructions/syncNative.ts → token/js/src/instructions/syncNative.ts
Unescape
Escape
View File
0
token/ts/src/instructions/thawAccount.ts → token/js/src/instructions/thawAccount.ts
Unescape
Escape
View File
0
token/ts/src/instructions/transfer.ts → token/js/src/instructions/transfer.ts
Unescape
Escape
View File
0
token/ts/src/instructions/transferChecked.ts → token/js/src/instructions/transferChecked.ts
Unescape
Escape
View File
0
token/ts/src/instructions/types.ts → token/js/src/instructions/types.ts
Unescape
Escape
View File
0
token/ts/src/state/account.ts → token/js/src/state/account.ts
Unescape
Escape
View File
0
token/ts/src/state/index.ts → token/js/src/state/index.ts
Unescape
Escape
View File
0
token/ts/src/state/mint.ts → token/js/src/state/mint.ts
Unescape
Escape
View File
0
token/ts/src/state/multisig.ts → token/js/src/state/multisig.ts
Unescape
Escape
View File
0
token/ts/test/index.test.ts → token/js/test/index.test.ts
Unescape
Escape
View File
0
token/ts/tsconfig.cjs.json → token/js/tsconfig.cjs.json
Unescape
Escape
View File
0
token/ts/tsconfig.json → token/js/tsconfig.json
Unescape
Escape
View File
0
token/ts/yarn.lock → token/js/yarn.lock
Unescape
Escape
View File
Write
Preview
Loading…
Cancel
Save
Reference in New Issue
Repository
blockworks-foundation/solana-program-library
Title
Body
Create Issue