Skip to content

Commit

Permalink
fix: use lords for all tx types
Browse files Browse the repository at this point in the history
  • Loading branch information
MartianGreed committed Sep 4, 2024
1 parent 1b16921 commit 44221a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export default function TokenActionsMakeBid({

const processedValues = {
brokerId: env.NEXT_PUBLIC_BROKER_ID,
currencyAddress: config.starknetCurrencyContract,
currencyAddress: env.NEXT_PUBLIC_LORDS_TOKEN_ADDRESS,
tokenAddress: token.collection_address,
tokenId: BigInt(token.token_id),
startAmount: parseEther(values.startAmount),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ function TokenActionsMakeOffer({ token, small }: TokenActionsMakeOfferProps) {

const processedValues = {
brokerId: env.NEXT_PUBLIC_BROKER_ID,
currencyAddress: env.NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID,
currencyAddress: env.NEXT_PUBLIC_LORDS_TOKEN_ADDRESS,
tokenAddress: token.collection_address,
tokenId: BigInt(token.token_id),
startAmount: parseEther(values.startAmount),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default function TokenActionsTokenOverview({

<div className="flex flex-col items-end gap-1">
<div className="flex whitespace-nowrap text-lg font-semibold sm:text-xl">
<LordsLogo className="size-6" />
<LordsLogo className="size-6 mr-2" />
{formattedAmount || "---"} LORDS
</div>
<div className="overflow-hidden text-clip text-right text-sm font-semibold text-muted-foreground">
Expand Down

0 comments on commit 44221a4

Please sign in to comment.