@@ -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 «CONFIRM» when you are ready to proceed. Once
242- you hit «CONFIRM», your security token will be created on
243- the blockchain.
242+ you hit «CONFIRM», 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 «CANCEL».
245+ If you do not wish to pay the token configuration fee or wish to
246+ review your information, simply select «CANCEL».
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 )
0 commit comments