Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
marshall2112 committed Dec 15, 2024
1 parent 82df3b0 commit d433c76
Showing 1 changed file with 21 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,44 +15,49 @@ enum TableHeaders {

const data: Transaction[] = [
{
epochId: 1,
epochId: '1',
auctionEndDateTime: '30.09.2024',
bidAmount: 100,
bidAmount: '100',
claimableTokens: '-',
unit: 'WSBI',
unitPrice: '-',
action: 'Bid',
},
{
epochId: 2,
epochId: '2',
auctionEndDateTime: '14.10.2024',
bidAmount: 100,
claimableTokens: 100000,
bidAmount: '100',
claimableTokens: '100000',
unit: 'WSBI',
unitPrice: 231,
unitPrice: '231',
action: 'Bid',
},
{
epochId: 3,
epochId: '3',
auctionEndDateTime: '28.10.2024',
bidAmount: 100,
claimableTokens: 200000,
bidAmount: '100',
claimableTokens: '200000',
unit: 'ENA',
unitPrice: 99,
unitPrice: '99',
action: 'Bid',
},
{
epochId: 4,
epochId: '4',
auctionEndDateTime: '28.10.2024',
bidAmount: 100,
claimableTokens: 150000,
bidAmount: '100',
claimableTokens: '150000',
unit: 'WSBI',
unitPrice: 78,
unitPrice: '78',
action: 'Bid',
},
{
epochId: 5,
epochId: '5',
auctionEndDateTime: '-',
bidAmount: 100,
bidAmount: '100',
claimableTokens: '-',
unit: 'ENA',
unitPrice: '-',
action: 'Bid',
},
];

Expand Down

0 comments on commit d433c76

Please sign in to comment.