Skip to content

Commit

Permalink
Token Manager to Tokens (#870)
Browse files Browse the repository at this point in the history
  • Loading branch information
delfipolito committed May 30, 2019
1 parent 73a3702 commit d13e85c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
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

0 comments on commit d13e85c

Please sign in to comment.