Skip to content
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
4 changes: 2 additions & 2 deletions packages/polymath-issuer/src/actions/compliance.js
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ export const fetchWhitelist = () => async (
};

export const uploadCSV = (file: Object) => async (dispatch: Function) => {
const maxRows = 75;
const maxRows = 50;
const reader = new FileReader();

dispatch({ type: UPLOAD_START });
Expand Down Expand Up @@ -435,7 +435,7 @@ export const uploadCSV = (file: Object) => async (dispatch: Function) => {
reader.result,
config
);
isTooMany = data.length > 75;
isTooMany = data.length > 50;

if (validationErrors.length) {
dispatch({
Expand Down
2 changes: 1 addition & 1 deletion packages/polymath-issuer/src/actions/restrictions.js
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ export const removeDefaultDailyRestriction = () => async (
};

export const uploadCSV = (file: Object) => async (dispatch: Function) => {
const maxRows = 75;
const maxRows = 50;
const reader = new FileReader();

dispatch({ type: UPLOAD_START });
Expand Down
2 changes: 1 addition & 1 deletion packages/polymath-issuer/src/actions/token.js
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ export const uploadCSV = (file: Object) => async (dispatch: Function) => {
reader.result,
config
);
isTooMany = data.length > 75;
isTooMany = data.length > 50;

if (validationErrors.length) {
dispatch({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class ImportWhitelistModal extends Component<Props> {
<h4 className="pui-h4">
Add multiple addresses to the whitelist by uploading a comma separated
.CSV file.{' '}
<strong>You may add up to 75 addresses per .CSV file</strong>. The
<strong>You may add up to 50 addresses per .CSV file</strong>. The
format should be as follows:
<br />• ETH Address (address to whitelist);
<br />• Sell Restriction Date: <strong>mm/dd/yyyy</strong> (date when
Expand Down Expand Up @@ -158,7 +158,7 @@ class ImportWhitelistModal extends Component<Props> {
re-upload this information.
<br />
<br /> Maximum numbers of investors per transaction is{' '}
<strong>75</strong>.
<strong>50</strong>.
</p>
</h4>
<h5 className="pui-h5">
Expand Down Expand Up @@ -218,15 +218,15 @@ class ImportWhitelistModal extends Component<Props> {
) : isTooMany ? (
<InlineNotification
hideCloseButton
title="The file you uploaded contains more than 75 investors"
subtitle="You can still continue, but only 75 first investors will be submitted."
title="The file you uploaded contains more than 50 investors"
subtitle="You can still continue, but only 50 first investors will be submitted."
kind="error"
/>
) : (
<Remark title="Reminder">
Investors must be approved before they are added to the whitelist.{' '}
<br />
Your file cannot exceed 75 addresses. If you have more than 75
Your file cannot exceed 50 addresses. If you have more than 50
addresses on your whitelist, upload multiple files.
</Remark>
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ class MintTokens extends Component<Props> {
<br />• KYC/AML Expiry Date mm/dd/yyyy;
<br />• Number of tokens to mint for the ETH address.
<br />
<Remark title="Note">Your file cannot exceed 75 addresses.</Remark>
<Remark title="Note">Your file cannot exceed 50 addresses.</Remark>
</h4>
<h5 className="pui-h5">
You can&nbsp;&nbsp;&nbsp;
Expand Down Expand Up @@ -359,7 +359,7 @@ class MintTokens extends Component<Props> {
) : isTooMany ? (
<InlineNotification
hideCloseButton
title="The file you uploaded contains more than 75 addresses"
title="The file you uploaded contains more than 50 addresses"
kind="error"
/>
) : (
Expand Down