-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document
@solana/addresses
with TypeDoc
Preview at https://peaceful-sorbet-e44996.netlify.app/
- Loading branch information
1 parent
d1c787c
commit c209b98
Showing
5 changed files
with
190 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
/** | ||
* This package contains utilities for generating account addresses. It can be used standalone, but | ||
* it is also exported as part of the Solana JavaScript SDK | ||
* [`@solana/web3.js@next`](https://github.com/anza-xyz/solana-web3.js/tree/main/packages/library). | ||
* | ||
* @packageDocumentation | ||
*/ | ||
export * from './address'; | ||
export * from './program-derived-address'; | ||
export * from './public-key'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"$schema": "https://typedoc.org/schema.json", | ||
"extends": ["../typedoc.base.json"], | ||
"entryPoints": ["src/index.ts"] | ||
"entryPoints": ["src/index.ts"], | ||
"readme": "none" | ||
} |