import { useT } from '../../lib/use-t';
import { Table } from './table';
export const HowItWorksTable = () => {
const t = useT();
return (
1
),
step: t(
'Referrers generate a code assigned to their key via an on chain transaction'
),
},
{
number: (
2
),
step: t(
'Anyone with the referral link can apply it to their key(s) of choice via an on chain transaction'
),
},
{
number: (
3
),
step: t(
'Discounts are applied automatically during trading based on the key(s) used'
),
},
{
number: (
4
),
step: t(
'Referrers earn commission based on a percentage of the taker fees their referees pay'
),
},
{
number: (
5
),
step: t(
'The commission is taken from the infrastructure fee, maker fee, and liquidity provider fee, not from the referee'
),
},
]}
>
);
};