Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename Token Manager to Tokens #870

Merged
merged 2 commits into from
May 30, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This repository contains the following apps:
- **[Vault](apps/vault)**: Securely owns and manages tokens on behalf of a DAO.
- **[Finance](apps/finance)**: Send payments and manage expenses with budgeting.
- **[Voting](apps/voting)**: Create votes that execute actions on behalf of token holders.
- **[Token Manager](apps/token-manager)**: Manages organization tokens.
- **[Tokens](apps/token-manager)**: Manages organization tokens.

You can read more about how the individual apps work in the [Aragon user guide](https://wiki.aragon.org/tutorials/Aragon_User_Guide/#3-aragon-apps).

Expand Down
2 changes: 1 addition & 1 deletion apps/token-manager/app/README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# Token Manager
# Tokens
2 changes: 1 addition & 1 deletion apps/token-manager/app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<title>Token Manager</title>
<title>Tokens</title>
</head>
<body>
<noscript>
Expand Down
2 changes: 1 addition & 1 deletion apps/token-manager/app/public/meta/details.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
The Token Manager app is used to manage the supply and distribution of an organization's token. Each Token Manager installation manages only one token. Tokens can be used to give different types of powers or rights to members of an organization, such as the power to vote on proposals or the right to receive a share of the organization's profits.
The Tokens app is used to manage the supply and distribution of an organization's token. Each installation of the Tokens app manages only one token. Tokens can be used to give different types of powers or rights to members of an organization, such as the power to vote on proposals or the right to receive a share of the organization's profits.

**Features**
- Issue new tokens and remove existing tokens.
Expand Down
2 changes: 1 addition & 1 deletion apps/token-manager/app/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class App extends React.PureComponent {
>
<SyncIndicator visible={isSyncing} />
<AppLayout
title="Token Manager"
title="Tokens"
afterTitle={tokenSymbol && <Badge.App>{tokenSymbol}</Badge.App>}
onMenuOpen={requestMenu}
mainButton={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class AssignVotePanelContent extends React.Component {
<div>
<form onSubmit={this.handleSubmit}>
<InfoMessage
title="Token Manager action"
title="Action"
text={`This action will ${
mode === 'assign'
? 'mint tokens to the recipient below'
Expand Down
2 changes: 1 addition & 1 deletion apps/token-manager/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "Token Manager",
"name": "Tokens",
"author": "Aragon Association",
"description": "Manage an organization's token supply and distribution",
"changelog_url": "https://github.com/aragon/aragon-apps/releases",
Expand Down