diff --git a/README.md b/README.md index 968e0a7..845500a 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ You can find installation instructions in the [Foundry docs](https://book.getfou We use [just](https://github.com/casey/just) to save and run a few larger, more complex commands. You can find installation instructions in the [just docs](https://just.systems/man/en/). -All commands can be listed by running `just -l` from the repo root, or by viewing the [`justfile`](https://github.com/llamaxyz/llama/blob/main/justfile). +All commands can be listed by running `just -l` from the repo root, or by viewing the [`justfile`](https://github.com/llamaxyz/llama-periphery/blob/main/justfile). ### VS Code @@ -54,7 +54,7 @@ The comments in that file explain what each variable is for and when they're nee ### Deploy and Verify - `just deploy` - deploy and verify payload on mainnet -- Run `just -l` or see the [`justfile`](https://github.com/llamaxyz/llama/blob/main/justfile) for other commands such as dry runs. +- Run `just -l` or see the [`justfile`](https://github.com/llamaxyz/llama-periphery/blob/main/justfile) for other commands such as dry runs. ## Testnet deployment @@ -76,7 +76,7 @@ $ forge doc -o reference/ -b -s ``` ## Bug bounty program -This repository is subject to the Llama bug bounty program. Details can be found [here](https://github.com/llamaxyz/llama/blob/main/README.md#bug-bounty-program). +This repository is subject to the [Llama bug bounty program](https://github.com/llamaxyz/llama/blob/main/README.md#bug-bounty-program). ## Slither diff --git a/docs/token-voting/README.md b/docs/token-voting/README.md index c24aa79..d5e0e47 100644 --- a/docs/token-voting/README.md +++ b/docs/token-voting/README.md @@ -1,10 +1,10 @@ # Llama Token Voting Module -![Llama Token Voting Module Overview](https://github.com/llamaxyz/llama/blob/main/diagrams/llama-token-voting-module-overview.png) +![Llama Token Voting Module Overview](https://github.com/llamaxyz/llama-periphery/blob/main/diagrams/llama-token-voting-module-overview.png) The Llama token voting module allows governance token delegates to create actions and collectively cast approvals and disapprovals on an associated Llama instance. It follows established token voting framework best practices and is deployed through a dedicated factory contract. Resources: -- [Token Voting Factory](https://github.com/llamaxyz/llama/blob/main/docs/token-voting/token-voting-factory.md) -- [Token Voting Module](https://github.com/llamaxyz/llama/blob/main/docs/token-voting/token-voting-module.md) +- [Token Voting Factory](https://github.com/llamaxyz/llama-periphery/blob/main/docs/token-voting/token-voting-factory.md) +- [Token Voting Module](https://github.com/llamaxyz/llama-periphery/blob/main/docs/token-voting/token-voting-module.md) diff --git a/docs/token-voting/token-voting-module.md b/docs/token-voting/token-voting-module.md index f88e1b2..9c4bf8e 100644 --- a/docs/token-voting/token-voting-module.md +++ b/docs/token-voting/token-voting-module.md @@ -1,9 +1,9 @@ # Llama Token Voting Module -![Llama Token Voting Module Overview](https://github.com/llamaxyz/llama/blob/main/diagrams/llama-token-voting-module-overview.png) +![Llama Token Voting Module Overview](https://github.com/llamaxyz/llama-periphery/blob/main/diagrams/llama-token-voting-module-overview.png) The Llama token voting module consists of a pair of smart contracts: a `LlamaTokenGovernor` and a token adapter. -It is deployed by the dedicated [token voting module factory](https://github.com/llamaxyz/llama/blob/main/docs/token-voting/token-voting-factory.md). +It is deployed by the dedicated [token voting module factory](https://github.com/llamaxyz/llama-periphery/blob/main/docs/token-voting/token-voting-factory.md). Each token voting module is associated with a Llama instance and a governance token that is used to get past total supply and account voting balances. The `LlamaTokenGovernor` contract uses the token adapter to standardize interactions with the governance token.