A contract's only clock is a number of seconds, and its maths has no decimal point. Read OpenZeppelin's VestingWallet end to end and you can compute any release it will ever make, by hand, from two lines.
Your first contract from OpenZeppelin, and the first one whose whole job is arithmetic. A vesting wallet holds assets for one person and hands them over gradually, a little more with every second that passes. One hundred and sixty lines, and well over half of them comment.
Almost everything here you have already met: state, a constructor, events, a mapping, inheritance, `view` functions. What is new is one word for the time and one line of maths. By the end of this checkpoint you will be able to compute any release in it by hand.
Straight to the state block, the habit you now have. Line 40 counts the ether already handed over. Line 41 does the same for each token, a mapping you can read at a glance. Both of those change over the life of the contract.
Lines 42 and 43 do not. `immutable` you met last week: a value written once while the contract is being deployed and never touched afterwards. The second the schedule starts and the number of seconds it runs are decided once, and after that they are facts.
Line 49 takes three things: who the assets are for, the second the schedule starts, and how long it runs. Lines 50 and 51 copy the last two straight into the immutable pair, and that is the entire body. The first is passed upward to `Ownable`.
Look at the types. Both are `uint64`, a whole number and nothing else, and the third parameter is called `durationSeconds` rather than `durationDays`. The unit lives in the name, because the type cannot carry it. A number is all the compiler sees.