Skip to content
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

Merged
merged 1 commit into from
Feb 14, 2025
Merged
Changes from all commits
Commits
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
75 changes: 75 additions & 0 deletions .deploy/ContractJosefEdwards.JSON
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"
}
Comment on lines +6 to +9
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

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:

-        "wallets": {
-            "bitcoin_wallet": "35eNZo1A2RTWKkiFVCjxJeYdhUCVBSVL4d",
-            "cosmos_wallet": "cosmos1erfvxk96wdjcure56lx5awqulhy3fk3vnwg0rd"
-        }
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
"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
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

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

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
"name": "Josef Kurk Edwards",
"title": "Principal Architect",
"address": "6389 W Appomattox Ln, Homosassa, FL 34448",
"dob": "June 11, 1995"
"name": "Josef Kurk Edwards",
"title": "Principal Architect",
"address": "[REDACTED]",
"dob": "[REDACTED]"

},
"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
Loading