---
tags: organism
---
# Organism / Cap Table
This organism is a part of Legals Tab within the Deal Room (both Founder & Investor)
This organism differs slightly between the Founder & Investor view. For the Investor, they are able to use a toggle to preview what the Cap Table will look like post raise. For the founder, they will be able to use a toggle to decide whether or not they actually show their Cap Table in their deal room.
We decided to opt for a Detailed cap table, providing information such as shareholder names, ownership %, etc.
## States & Variables
...
### Founder View
The founder has the ability to turn Cap Table viewing on/off using the toggle in the organism header.
#### Happy State
<iframe style="border: 1px solid rgba(0, 0, 0, 0.1);" width="800" height="450" src="https://www.figma.com/embed?embed_host=share&url=https%3A%2F%2Fwww.figma.com%2Ffile%2Fe7aAVFo0T5tVAjxCmCh3XK%2FRaise%3Fnode-id%3D17881%253A77018&chrome=DOCUMENTATION" allowfullscreen></iframe>
...
##### Variables
- Amount of Shareclasses
- This will differ from company to company
- Shareholder Information
- Name, Type, and Photo will differ
- Convertibles & Employee Stock Options
- These will differ from company to company. Some may not have these at all, others will.
- Vesting Tooltips
- The data values displayed within the tooltip will vary from case to case. Here is the tooltip Molecule
<iframe style="border: 1px solid rgba(0, 0, 0, 0.1);" width="800" height="450" src="https://www.figma.com/embed?embed_host=share&url=https%3A%2F%2Fwww.figma.com%2Ffile%2Fe7aAVFo0T5tVAjxCmCh3XK%2FRaise%3Fnode-id%3D14870%253A2027&chrome=DOCUMENTATION" allowfullscreen></iframe>
...
#### Empty/Hidden State
As mentioned, the founder has the option to hide the Cap Table, in which case, it will not appear within the investors' Deal Room.
When hidden, it would look like this to the company/founder...
<iframe style="border: 1px solid rgba(0, 0, 0, 0.1);" width="800" height="450" src="https://www.figma.com/embed?embed_host=share&url=https%3A%2F%2Fwww.figma.com%2Ffile%2Fe7aAVFo0T5tVAjxCmCh3XK%2FRaise%3Fnode-id%3D15733%253A2843&chrome=DOCUMENTATION" allowfullscreen></iframe>
...
...
...
### Investor View
The investor will see the same cap table display and information as the founder does, however, they will be able to use a toggle (within the organism header) that allows them to simulate the current investment round (a before and after) to show how the company structure will change.
One thing to look out for between these two states is the "Post-Money SAFEs (Convertibles)" section. When the fundraising round is simulated within the cap table, those who hold SAFEs will be transfered into the Prefered Shares section of the cap table.
...
#### Unapplied Scenario ("Before" View)
<iframe style="border: 1px solid rgba(0, 0, 0, 0.1);" width="800" height="450" src="https://www.figma.com/embed?embed_host=share&url=https%3A%2F%2Fwww.figma.com%2Ffile%2Fe7aAVFo0T5tVAjxCmCh3XK%2FRaise%3Fnode-id%3D17881%253A77688&chrome=DOCUMENTATION" allowfullscreen></iframe>
...
#### Applied Scenario ("After" View)
<iframe style="border: 1px solid rgba(0, 0, 0, 0.1);" width="800" height="450" src="https://www.figma.com/embed?embed_host=share&url=https%3A%2F%2Fwww.figma.com%2Ffile%2Fe7aAVFo0T5tVAjxCmCh3XK%2FRaise%3Fnode-id%3D17881%253A76673&chrome=DOCUMENTATION" allowfullscreen></iframe>
...
## Interactions
```gherkin
Feature: Investor / Cap Table
Scenario: View Cap Table
Given I am an Investor
And I click on "Legals" tab
Then I see a card titled Cap Table
```
```gherkin
Feature: Founder / Cap Table
Scenario: View Cap Table
Given I am a Founder
When I click on "Deal Room"
And I scroll down past the Company Overview
Then I see a card titled Capitalisation (Cap Table)
And I toggle on
Then I see the card Cap Table in Happy State
Scenario: Hidden Cap Table
Given I am a Founder
When I click on "Deal Room"
And I scroll down past the Company Overview
Then I see a card titled Capitalisation (Cap Table)
And I toggle off
Then I see the card Cap Table in Hidden State
```