-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create ContractJosefEdwards.JSON #138
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,75 @@ | ||||||||||||||||||
{ | ||||||||||||||||||
"contract": { | ||||||||||||||||||
"name": "JKEdwards_Employment_Contract", | ||||||||||||||||||
"version": 1.0, | ||||||||||||||||||
"description": "Employment contract for Josef Kurk Edwards integrating details from OpenAI, Interchain Inc., and blockchain-based compensation structures.\n", | ||||||||||||||||||
"wallets": { | ||||||||||||||||||
"bitcoin_wallet": "35eNZo1A2RTWKkiFVCjxJeYdhUCVBSVL4d", | ||||||||||||||||||
"cosmos_wallet": "cosmos1erfvxk96wdjcure56lx5awqulhy3fk3vnwg0rd" | ||||||||||||||||||
} | ||||||||||||||||||
}, | ||||||||||||||||||
"employee_details": { | ||||||||||||||||||
"name": "Josef Kurk Edwards", | ||||||||||||||||||
"title": "Principal Architect", | ||||||||||||||||||
"address": "6389 W Appomattox Ln, Homosassa, FL 34448", | ||||||||||||||||||
"dob": "June 11, 1995" | ||||||||||||||||||
Comment on lines
+12
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Security Risk: Remove PII from the contract file. Personal Identifiable Information (PII) such as home address and date of birth should be stored in a secure HR system, not in version control. Remove or redact sensitive information: "name": "Josef Kurk Edwards",
"title": "Principal Architect",
- "address": "6389 W Appomattox Ln, Homosassa, FL 34448",
- "dob": "June 11, 1995"
+ "address": "[REDACTED]",
+ "dob": "[REDACTED]" 📝 Committable suggestion
Suggested change
|
||||||||||||||||||
}, | ||||||||||||||||||
"compensation": { | ||||||||||||||||||
"base_salary": 300000, | ||||||||||||||||||
"ppu_equity": { | ||||||||||||||||||
"percentage": 10, | ||||||||||||||||||
"vesting": { | ||||||||||||||||||
"total_months": 48, | ||||||||||||||||||
"cliff_months": 12, | ||||||||||||||||||
"monthly_vesting": true | ||||||||||||||||||
} | ||||||||||||||||||
}, | ||||||||||||||||||
"performance_bonus": 20, | ||||||||||||||||||
"token_compensation": { | ||||||||||||||||||
"amount": 50000, | ||||||||||||||||||
"currency": "ATOM", | ||||||||||||||||||
"vesting": { | ||||||||||||||||||
"total_months": 48, | ||||||||||||||||||
"cliff_months": 12 | ||||||||||||||||||
} | ||||||||||||||||||
}, | ||||||||||||||||||
"estimated_total": 500000 | ||||||||||||||||||
}, | ||||||||||||||||||
josefkedwards marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||
"benefits": { | ||||||||||||||||||
"healthcare": "Comprehensive medical, dental, and vision", | ||||||||||||||||||
"pto": { | ||||||||||||||||||
"type": "Unlimited", | ||||||||||||||||||
"additional_days": 18, | ||||||||||||||||||
"sick_days": 10 | ||||||||||||||||||
}, | ||||||||||||||||||
"retirement_plan": "401(k) with 5% match", | ||||||||||||||||||
"professional_development": 10000, | ||||||||||||||||||
"equipment_stipend": { | ||||||||||||||||||
"initial": 2500, | ||||||||||||||||||
"annual": 1000 | ||||||||||||||||||
}, | ||||||||||||||||||
"remote_work": "Co-working space allowance" | ||||||||||||||||||
}, | ||||||||||||||||||
"responsibilities": [ | ||||||||||||||||||
"Lead PMLL framework integration for AI scaling", | ||||||||||||||||||
"Collaborate on AI ethics, research, and team mentorship", | ||||||||||||||||||
"Automate pipelines for Interchain DevOps tasks", | ||||||||||||||||||
"Ensure IRS compliance as W9 Tax Specialist & Preparer" | ||||||||||||||||||
], | ||||||||||||||||||
"termination_clauses": { | ||||||||||||||||||
"voluntary": "30-day notice required", | ||||||||||||||||||
"involuntary": { | ||||||||||||||||||
"severance_package": "3 months salary", | ||||||||||||||||||
"equity_forfeiture": true | ||||||||||||||||||
} | ||||||||||||||||||
}, | ||||||||||||||||||
"intellectual_property": { | ||||||||||||||||||
"pre_existing_ip": "PMLL Framework", | ||||||||||||||||||
"developed_ip": "Joint ownership with employer" | ||||||||||||||||||
}, | ||||||||||||||||||
"non_compete": { | ||||||||||||||||||
"duration": "3 years", | ||||||||||||||||||
"restrictions": "Employee may not engage in ventures competing with OpenAI or Interchain Inc. for the duration of the non-compete period.\n" | ||||||||||||||||||
}, | ||||||||||||||||||
"governing_law": "New York" | ||||||||||||||||||
} | ||||||||||||||||||
josefkedwards marked this conversation as resolved.
Show resolved
Hide resolved
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Security Risk: Remove wallet addresses from the contract.
Wallet addresses should be managed separately from the employment contract for security reasons. Consider using a secure key management system.
Remove the entire
wallets
section:📝 Committable suggestion