-
Notifications
You must be signed in to change notification settings - Fork 18
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
prevent duplicate tokens being added in adminJS #1852
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -129,6 +129,43 @@ export const createToken = async ( | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
organizations, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} = request.payload; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (!address || !decimals || !name || !networkId || !symbol) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
message = 'Please fill all required fields'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type = 'danger'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
notice: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
message, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const duplicateAddress = await Token.createQueryBuilder('token') | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.where('LOWER(token.address) = LOWER(:address)', { address }) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.andWhere('token.networkId = :networkId', { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
networkId: Number(networkId), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.getOne(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const duplicateSymbol = await Token.createQueryBuilder('token') | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.where('LOWER(token.symbol) = LOWER(:symbol)', { symbol }) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.andWhere('token.networkId = :networkId', { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
networkId: Number(networkId), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.getOne(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (duplicateSymbol || duplicateAddress) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
message = `Token ${ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
duplicateAddress ? 'address' : 'symbol' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} already exists!`; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type = 'danger'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
record: {}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
notice: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
message, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+156
to
+168
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Improve error message to reflect all duplicate fields When both the token address and symbol already exist, the current error message only indicates one of them. To provide clearer feedback to the user, consider updating the error message to list all duplicate fields that are causing the conflict. Apply this diff to enhance the error message: if (duplicateSymbol || duplicateAddress) {
- message = `Token ${
- duplicateAddress ? 'address' : 'symbol'
- } already exists!`;
+ let duplicateFields = [];
+ if (duplicateAddress) duplicateFields.push('address');
+ if (duplicateSymbol) duplicateFields.push('symbol');
+ const fields = duplicateFields.join(' and ');
+ message = `Token ${fields} already exist${duplicateFields.length > 1 ? '' : 's'}!`;
type = 'danger';
return {
record: {},
notice: {
message,
type,
},
};
} This change ensures that if both the address and symbol are duplicates, the error message will inform the user accordingly. 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
newToken = Token.create({ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
symbol, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Validate 'decimals' is a valid number
Currently, 'decimals' is only checked for a truthy value. If 'decimals' cannot be converted to a valid number,
Number(decimals)
will result inNaN
, which may cause issues when saving the token. Consider adding a validation check to ensure 'decimals' is a valid number before proceeding.Apply this diff to improve validation:
📝 Committable suggestion