LordXido commited on
Commit
0d27766
·
verified ·
1 Parent(s): 4bf4530

Create src/programs.rs

Browse files
Files changed (1) hide show
  1. src/programs.rs +6 -14
src/programs.rs CHANGED
@@ -1,15 +1,7 @@
1
- // Governance Vote Program
2
- pub const GOVERNANCE_VOTE: [u8; 40] = [
3
- 0x20,0,0,0,0,0,0,0,
4
- 0x81,0,12,2,4,0,0,0,
5
- 0x80,0,1,12,0,1,0,0,
6
- 0x20,0,0,0,0,0,0,0,
7
- 0xA0,0,0,0,0,0,0,0,
8
- ];
9
 
10
- // Simulation Tick Program
11
- pub const SIM_TICK: [u8; 24] = [
12
- 0x90,0,0,0,0,1,0,0,
13
- 0x40,0,3,1,0,10,0,0,
14
- 0x41,0,4,3,0,0,0,0,
15
- ];
 
1
+ // src/programs.rs
 
 
 
 
 
 
 
2
 
3
+ pub const CREDIT_REQUEST: &str = "credit_request_program_v1";
4
+ pub const GOVERNANCE_VOTE: &str = "governance_vote_program_v1";
5
+
6
+ // Future logic for actual behavior can be added here
7
+ // For now, they are string identifiers representing program hooks or names