Commit e4ae705e authored by Charles Bachmeier's avatar Charles Bachmeier Committed by GitHub

fix: listing ens to x2y2 (#5477)

fix listing ens to x2y2
Co-authored-by: default avatarCharles Bachmeier <charlie@genie.xyz>
parent 1afc3645
...@@ -240,7 +240,12 @@ export async function signListing( ...@@ -240,7 +240,12 @@ export async function signListing(
tokens: [ tokens: [
{ {
token: asset.asset_contract.address, token: asset.asset_contract.address,
tokenId: BigNumber.from(parseFloat(asset.tokenId)), tokenId: BigNumber.from(
parseFloat(asset.tokenId)
.toLocaleString('fullwide', { useGrouping: false })
.replace(',', '.')
.replace(' ', '')
),
}, },
], ],
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment