Spaces:
Sleeping
Sleeping
Create src/programs.rs
Browse files- src/programs.rs +6 -14
src/programs.rs
CHANGED
|
@@ -1,15 +1,7 @@
|
|
| 1 |
-
//
|
| 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 |
-
|
| 11 |
-
pub const
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 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
|
|
|