Skip to content

Commit a00dad6

Browse files
authored
Merge pull request #672 from PolymathNetwork/chore/copy-changes
Chore/copy changes
2 parents 80c9d5e + 3c39e67 commit a00dad6

21 files changed

Lines changed: 61 additions & 56 deletions

File tree

config/contractDocs.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ const config = {
168168
SecurityToken: {
169169
description: stripIndent`
170170
The security token smart contract. It defines the behavior of the
171-
Security Tokens created through Polymath.
171+
Security Tokens configured through Polymath.
172172
173173
Only the token's owner and the attached STO module (if there is one) can
174174
mint tokens.
@@ -180,9 +180,9 @@ const config = {
180180
Keeps track of all the Security Tokens that exist in the network.
181181
Keeps record of the tickers reserved by users.
182182
183-
Through this contract Security Tokens can be created and Tickers can be registered.
183+
Through this contract Security Tokens can be configured and Tickers can be registered.
184184
It requires an allowance (of at least the registration fee) to be set to be able
185-
to create a Security Token
185+
to configure a Security Token
186186
`,
187187
methods: SecurityTokenRegistryMethods,
188188
},

packages/polymath-issuer/src/actions/sto.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export const fetch = () => async (dispatch: Function, getState: GetState) => {
121121
try {
122122
const { token } = getState().token;
123123

124-
// No token created yet
124+
// No token configured yet
125125
if (!token || !token.contract) {
126126
dispatch(ui.fetched());
127127
return;

packages/polymath-issuer/src/actions/token.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -209,15 +209,15 @@ export const issue = (values: Object) => async (
209209
ui.confirm(
210210
<div>
211211
<p>
212-
Completion of your token creation will require{' '}
212+
Completion of your token configuration will require{' '}
213213
{limitInvestors ? 'three' : !isApproved ? 'two' : 'one'} wallet
214214
transaction(s).
215215
</p>
216216
{!isApproved ? (
217217
<div>
218218
<p>
219219
• The first transaction will be used to prepare for the payment of
220-
the token creation cost of:
220+
the token configuration cost of:
221221
</p>
222222
<div className="bx--details poly-cost">{feeView} POLY</div>
223223
</div>
@@ -226,8 +226,8 @@ export const issue = (values: Object) => async (
226226
)}
227227
<p>
228228
{!isApproved ? 'The second' : 'This'} transaction will be used to
229-
pay for the token creation cost (POLY + mining fee) to complete the
230-
creation of your token.
229+
pay for the token configuration cost (POLY + mining fee) to complete
230+
the configuration of your token.
231231
</p>
232232
{limitInvestors && (
233233
<p>
@@ -239,19 +239,19 @@ export const issue = (values: Object) => async (
239239
)}
240240
<p>
241241
Please hit &laquo;CONFIRM&raquo; when you are ready to proceed. Once
242-
you hit &laquo;CONFIRM&raquo;, your security token will be created on
243-
the blockchain.
242+
you hit &laquo;CONFIRM&raquo;, your security token will be configured
243+
on the blockchain.
244244
<br />
245-
If you do not wish to pay the token creation fee or wish to review
246-
your information, simply select &laquo;CANCEL&raquo;.
245+
If you do not wish to pay the token configuration fee or wish to
246+
review your information, simply select &laquo;CANCEL&raquo;.
247247
</p>
248248
</div>,
249249
async () => {
250250
// $FlowFixMe
251251
if (getState().pui.account.balance.lt(fee)) {
252252
dispatch(
253253
ui.faucet(
254-
`The creation of a security token has a fixed cost of ${feeView} POLY.`
254+
`The configuration of a security token has a fixed cost of ${feeView} POLY.`
255255
)
256256
);
257257
return;
@@ -263,7 +263,7 @@ export const issue = (values: Object) => async (
263263
// );
264264

265265
//Skip approve transaction if transfer is already allowed
266-
let title = ['Creating Security Token'];
266+
let title = ['Configuring Security Token'];
267267

268268
if (!isApproved) {
269269
title.unshift('Approving POLY Spend');
@@ -303,11 +303,11 @@ export const issue = (values: Object) => async (
303303
`/dashboard/${ticker}`,
304304
undefined,
305305
false,
306-
ticker.toUpperCase() + ' Token Creation'
306+
ticker.toUpperCase() + ' Token Configuration'
307307
)
308308
);
309309
},
310-
`Before you Proceed with Your ${ticker.toUpperCase()} Token Creation`,
310+
`Before you Proceed with Your ${ticker.toUpperCase()} Token Configuration`,
311311
undefined,
312312
'pui-large-confirm-modal'
313313
)

packages/polymath-issuer/src/components/MigrateTokenPage.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,8 @@ class MigrateTokenPage extends Component<{| handleClick: Function |}> {
231231
<p>
232232
The cost of this migration is the gas fee required to complete
233233
the simple 2-step process to migrate your tokens from v1.3.0 to
234-
v2.0.0. The cost of creating the security token will be borne by
235-
Polymath.
234+
v2.0.0. The cost of configuring the security token will be borne
235+
by Polymath.
236236
</p>
237237
</AccordionItem>
238238
<AccordionItem title="What benefits would I get by moving to v2.0.0?">

packages/polymath-issuer/src/pages/home/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class HomePage extends Component {
2626
<p>
2727
<Link to="/ticker">
2828
<Button id="create-token-btn" icon="arrow--right">
29-
Create your security token
29+
Configure your security token
3030
</Button>
3131
</Link>
3232
</p>

packages/polymath-issuer/src/pages/providers/ProvidersPage.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -183,14 +183,14 @@ class ProvidersPage extends Component<Props, State> {
183183
<p>
184184
Please make sure you have received sufficient information from one of
185185
the Advisors or the Legal firms listed below or your own advisor before
186-
you proceed with the token creation.
186+
you proceed with the token configuration.
187187
</p>,
188188
() => {
189189
// $FlowFixMe
190190
this.props.history.push('/dashboard/' + this.props.token.ticker);
191191
},
192192
'Before You Proceed',
193-
'Create Token'
193+
'Configure Token'
194194
);
195195
};
196196

@@ -271,9 +271,9 @@ class ProvidersPage extends Component<Props, State> {
271271
<div className="pui-countdown-container">
272272
{!token.address && token.expires ? (
273273
<Countdown
274-
title="Time Left to Create Your Token"
274+
title="Time Left to Configure Your Token"
275275
deadline={token.expires}
276-
buttonTitle="Create Your Token Now"
276+
buttonTitle="Configure Your Token Now"
277277
handleButtonClick={this.handleCreateToken}
278278
/>
279279
) : (

packages/polymath-issuer/src/pages/ticker/TickerPage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class TickerPage extends Component<Props, State> {
7979
</Heading>
8080
<Heading as="h3" variant="h4" mr={190}>
8181
Your token symbol will be reserved for {this.props.expiryLimit}{' '}
82-
days, and is permanently yours once you create your Token. This
82+
days, and is permanently yours once you configure your Token. This
8383
reservation ensures that no other organization can create a token
8484
symbol identical to yours using the Polymath platform. This
8585
operation carries a cost of: {this.state.tickerRegistrationFee}{' '}

packages/polymath-issuer/src/pages/token/TokenPage.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,14 +165,14 @@ class TokenPage extends Component<Props, State> {
165165
<div className="token-countdown-container">
166166
<Countdown small title="Time Left" deadline={token.expires} />
167167
</div>
168-
<h2 className="pui-h2">Create Your Security Token</h2>
168+
<h2 className="pui-h2">Configure Your Security Token</h2>
169169
<Heading variant="h4">
170-
Create your security token before your token reservation
170+
Configure your security token before your token reservation
171171
expires. If you let your token reservation expire, the token
172172
symbol you selected will be available for others to claim.
173173
</Heading>
174174
<Heading variant="h4">
175-
To proceed with the creation of your security token, we
175+
To proceed with the configuration of your security token, we
176176
recommend you work with your Advisory to answer the following
177177
questions:
178178
</Heading>

packages/polymath-issuer/src/pages/token/components/CompleteTokenForm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ export const CompleteTokenFormComponent = ({ handleSubmit, values }) => (
154154
) : null}
155155
</Grid.Col>
156156
</Grid.Row>
157-
<Button type="submit">Create my security token</Button>
157+
<Button type="submit">Configure my security token</Button>
158158
</Form>
159159
);
160160

packages/polymath-issuer/src/pages/token/components/Progress.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class Progress extends Component<Props> {
4343
<ProgressIndicator currentIndex={index}>
4444
<ProgressIndicator.Step label="Reserve Token Symbol" />
4545
<ProgressIndicator.Step label="Choose Your Providers" />
46-
<ProgressIndicator.Step label="Create Token" />
46+
<ProgressIndicator.Step label="Configure Token" />
4747
<ProgressIndicator.Step label="Set Up Offering Details" />
4848
<ProgressIndicator.Step label="Whitelist Investors" />
4949
</ProgressIndicator>

0 commit comments

Comments
 (0)