feat(core): Add backend services, scripts, and initial test structure

This commit is contained in:
2025-11-19 18:48:54 +03:00
parent 703e11711e
commit bdf59cea47
51 changed files with 3460 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
// Commission Configuration
export const COMMISSIONS = {
KYC: {
name: 'KYC Approval Commission',
proxyAccount: '5Hdybwv6Kbd3DJGY8DzfY4rKJWWFDPbLbuKQ81fk6eJATcTj', // KYC Commission proxy account
threshold: 7, // 60% of 11 members
totalMembers: 11,
},
// Future commissions
VAKIF: {
name: 'Vakıf Commission',
proxyAccount: '', // TBD
threshold: 5,
totalMembers: 7,
},
} as const;
export type CommissionType = keyof typeof COMMISSIONS;