43 lines
643 B
Markdown
43 lines
643 B
Markdown
# `@solana/spl-memo`
|
|
|
|
A TypeScript library for interacting with the SPL Memo program.
|
|
|
|
## Links
|
|
|
|
- [TypeScript Docs](https://solana-labs.github.io/solana-program-library/memo/js/)
|
|
- [Install](#install)
|
|
- [Build from Source](#build-from-source)
|
|
|
|
## Install
|
|
|
|
```shell
|
|
yarn add @solana/spl-memo
|
|
```
|
|
|
|
## Build from Source
|
|
|
|
1. Clone the project:
|
|
```shell
|
|
git clone https://github.com/solana-labs/solana-program-library.git
|
|
```
|
|
|
|
2. Navigate to the library:
|
|
```shell
|
|
cd solana-program-library/memo/js
|
|
```
|
|
|
|
3. Install the dependencies:
|
|
```shell
|
|
yarn install
|
|
```
|
|
|
|
4. Build the library:
|
|
```shell
|
|
yarn build
|
|
```
|
|
|
|
5. Run the tests:
|
|
```shell
|
|
yarn test
|
|
```
|