diff --git a/modules/statics/src/account.ts b/modules/statics/src/account.ts index 64b8a0b832..c0a10376fc 100644 --- a/modules/statics/src/account.ts +++ b/modules/statics/src/account.ts @@ -3788,7 +3788,8 @@ export function polyxToken( * @param name unique identifier of the token * @param fullName Complete human-readable name of the token * @param decimalPlaces Number of decimal places this token supports (divisibility exponent) - * @param subnetId The uid of the subnet this token belongs to, numerical string + * @param ticker The ticker symbol of the token + * @param assetId The unique asset identifier for this token * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin. * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES * @param prefix? Optional token prefix. Defaults to empty string diff --git a/modules/statics/src/base.ts b/modules/statics/src/base.ts index df54690e18..f7e354480d 100644 --- a/modules/statics/src/base.ts +++ b/modules/statics/src/base.ts @@ -3199,6 +3199,7 @@ export enum UnderlyingAsset { 'tpolyx:WEBINRASSET7' = 'tpolyx:WEBINRASSET7', 'tpolyx:BULLRWA' = 'tpolyx:BULLRWA', 'tpolyx:0x4a002922d38b8a7f87484b9c65a7ca0c' = 'tpolyx:0x4a002922d38b8a7f87484b9c65a7ca0c', + 'tpolyx:0x753b5a2cb97c83e8b1bd66ed6643e4e9' = 'tpolyx:0x753b5a2cb97c83e8b1bd66ed6643e4e9', // Polymesh mainnet tokens 'polyx:0xa0ce6bc4c60981e08eca6504656c99e6' = 'polyx:0xa0ce6bc4c60981e08eca6504656c99e6', diff --git a/modules/statics/src/coins/polyxTokens.ts b/modules/statics/src/coins/polyxTokens.ts index fd0c7513aa..9599afceff 100644 --- a/modules/statics/src/coins/polyxTokens.ts +++ b/modules/statics/src/coins/polyxTokens.ts @@ -104,4 +104,14 @@ export const polyxTokens = [ UnderlyingAsset['tpolyx:0x4a002922d38b8a7f87484b9c65a7ca0c'], POLYX_TOKEN_FEATURES ), + tpolyxToken( + '4dee57ed-846e-4cf9-b032-19534f8d4ec2', + 'tpolyx:0x753b5a2cb97c83e8b1bd66ed6643e4e9', + 'BRCK', + 6, + '', + '0x753b5a2cb97c83e8b1bd66ed6643e4e9', + UnderlyingAsset['tpolyx:0x753b5a2cb97c83e8b1bd66ed6643e4e9'], + POLYX_TOKEN_FEATURES + ), ];