Skip to content

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
mudrila committed Mar 27, 2024
1 parent 84bf6d8 commit b337c02
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/ui/modals/CreateSablierProposalModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ export default function CreateSablierProposalModal({ close }: { close: () => voi
hardCodedSegments = [
[0, '1000000000000000000', startDate + 3599], // First number represents amount of tokens denoted in units of token's decimals. Second number represents exponent, denoted as a fixed-point number. Third value is a Unix timestamp till when amount set in first value will be fully streamed
[segmentAmount, '1000000000000000000', startDate + 3600],
[0, '1000000000000000000', startDate + (3600 * 2) - 1],
[0, '1000000000000000000', startDate + 3600 * 2 - 1],
[segmentAmount, '1000000000000000000', startDate + 3600 * 2],
[0, '1000000000000000000', startDate + (3600 * 3) - 1],
[0, '1000000000000000000', startDate + 3600 * 3 - 1],
[segmentAmount, '1000000000000000000', startDate + 3600 * 3],
[0, '1000000000000000000', startDate + (3600 * 4) - 1],
[0, '1000000000000000000', startDate + 3600 * 4 - 1],
[segmentAmount, '1000000000000000000', startDate + 3600 * 4],
[0, '1000000000000000000', startDate + (3600 * 5) - 1],
[0, '1000000000000000000', startDate + 3600 * 5 - 1],
[segmentAmount, '1000000000000000000', startDate + 3600 * 5],
]; // Array of segments, see explanation above. Additional explanation: https://github.com/sablier-labs/v2-core/blob/main/src/types/DataTypes.sol#L131-L140
} else if (chainId === mainnet.id) {
Expand Down

0 comments on commit b337c02

Please sign in to comment.