Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
8 changes: 8 additions & 0 deletions Acolyte/Docs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# How to Deploy `StoragePin.sol` in Remix

For the **test**, you must deploy the contract with these values:

- **shares**: `1000`
- **name**: `Pat`
- **salary**: `50000`
- **idNumber**: `112358132134`
File renamed without changes.
23 changes: 23 additions & 0 deletions Consul/Docs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# How to Deploy According to the Exercise Instructions **Inheritance.sol** :

## 1. Deploy `Salesperson`
Use these constructor values:
- **idNumber** = `55555`
- **managerId** = `12345`
- **hourlyRate** = `20`

## 2. Deploy `EngineeringManager`
Use these constructor values:
- **idNumber** = `54321`
- **managerId** = `11111`
- **annualSalary** = `200000`

## 3. Deploy `InheritanceSubmission`
When deploying this contract, enter the addresses from the two previous deployments:
- Address of the deployed `Salesperson`
- Address of the deployed `EngineeringManager`

## Notes
- Always deploy the contracts in order: `Salesperson` → `EngineeringManager` → `InheritanceSubmission`.
- Copy the deployed contract addresses from **Deployed Contracts** in Remix.
- Make sure to paste the correct addresses into the `InheritanceSubmission` constructor.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion AddressBook.sol → Prefect/AddressBook.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT use this instead ( // SPDX-License-Identifier: GPL-3.0 )
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.8;

import "@openzeppelin/contracts/access/Ownable.sol";
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.