Update Token TS Docs (#2938)
* Revert "Added token ts docs (#2575)"
This reverts commit f64df314a3
.
* Added token ts docs
* Added token ts docs
* Upgrade docusaurus
* Upgrade docusaurus
* Add autocomplete.js
* Update docusaurus
* fix: update feature-proposal
* Updated token docs
Update token docs backlinks
Update docusaurus
This commit is contained in:
parent
45ce0818f0
commit
77330230bf
|
@ -14,7 +14,7 @@ module.exports = {
|
|||
src: "img/logo-horizontal.svg",
|
||||
srcDark: "img/logo-horizontal-dark.svg",
|
||||
},
|
||||
links: [
|
||||
items: [
|
||||
{
|
||||
href: "https://docs.solana.com/",
|
||||
label: "Docs »",
|
||||
|
@ -74,7 +74,6 @@ module.exports = {
|
|||
docs: {
|
||||
path: "src",
|
||||
routeBasePath: "/",
|
||||
homePageId: "introduction",
|
||||
sidebarPath: require.resolve("./sidebars.js"),
|
||||
},
|
||||
theme: {
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -13,9 +13,10 @@
|
|||
"lint:fix": "npm run lint -- --fix"
|
||||
},
|
||||
"dependencies": {
|
||||
"@docusaurus/core": "^2.0.0-alpha.58",
|
||||
"@docusaurus/preset-classic": "^2.0.0-alpha.58",
|
||||
"@docusaurus/theme-search-algolia": "^2.0.0-alpha.32",
|
||||
"@docusaurus/core": "^2.0.0-alpha.73",
|
||||
"@docusaurus/preset-classic": "^2.0.0-alpha.73",
|
||||
"@docusaurus/theme-search-algolia": "^2.0.0-alpha.73",
|
||||
"autocomplete.js": "^0.38.1",
|
||||
"babel-eslint": "^10.1.0",
|
||||
"clsx": "^1.1.1",
|
||||
"docusaurus-lunr-search": "^2.1.7",
|
||||
|
|
|
@ -24,7 +24,7 @@ campaigns difficult and just generally increases the friction of token
|
|||
transfers. AToken allows the sender to create the associated token account for
|
||||
the receiver, so the token transfer just works.
|
||||
|
||||
See the [SPL Token](token.md) program for more information about tokens in
|
||||
See the [SPL Token](token.mdx) program for more information about tokens in
|
||||
general.
|
||||
|
||||
## Background
|
||||
|
|
|
@ -5,7 +5,7 @@ title: Feature Proposal Program
|
|||
The Feature Proposal Program provides a workflow for activation of Solana
|
||||
network features through community vote based on validator stake weight.
|
||||
|
||||
Community voting is accomplished using [SPL Tokens](token.md). Tokens are
|
||||
Community voting is accomplished using [SPL Tokens](token.mdx). Tokens are
|
||||
minted that represent the total active stake on the network, and distributed to
|
||||
all validators based on their stake. Validators vote for feature activation by
|
||||
transferring their vote tokens to a predetermined address. Once the vote
|
||||
|
@ -144,4 +144,4 @@ Anybody may tally the vote. Once the required number of votes are tallied, the
|
|||
feature will be automatically activated at the start of the next epoch.
|
||||
|
||||
Upon a successful activation the feature will now show as activated by
|
||||
`solana feature status` as well.
|
||||
`solana feature status` as well.
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: Introduction
|
||||
id: introduction
|
||||
slug: /
|
||||
---
|
||||
|
||||
The Solana Program Library (SPL) is a collection of on-chain programs targeting
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue