1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#![cfg_attr(not(feature = "std"), no_std)]
use codec::{Decode, Encode};
use governance_os_support::impl_enum_default;
#[cfg(feature = "std")]
use serde::{Deserialize, Serialize};
use sp_runtime::{
generic,
traits::{BlakeTwo256, IdentifyAccount, Verify},
MultiSignature, OpaqueExtrinsic, RuntimeDebug,
};
#[derive(Encode, Decode, Clone, PartialEq, Eq, RuntimeDebug, Copy, PartialOrd, Ord)]
#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]
pub enum CurrencyId {
Native,
Custom(u32),
}
impl_enum_default!(CurrencyId, Native);
pub type BlockNumber = u32;
pub type Signature = MultiSignature;
pub type AccountId = <<Signature as Verify>::Signer as IdentifyAccount>::AccountId;
pub type Balance = u128;
pub type Moment = u64;
pub type Index = u32;
pub type Hash = sp_core::H256;
pub type Header = generic::Header<BlockNumber, BlakeTwo256>;
pub type Block = generic::Block<Header, OpaqueExtrinsic>;
#[derive(Encode, Decode, RuntimeDebug, Clone, PartialEq, Eq, Ord, PartialOrd)]
#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]
pub enum Role {
ApplyAsOrganization(AccountId),
CreateCurrencies,
CreateOrganizations,
ManageCurrency(CurrencyId),
ManageRoles,
Root,
TransferCurrency(CurrencyId),
}
impl_enum_default!(Role, CreateCurrencies);
impl governance_os_pallet_tokens::RoleBuilder for Role {
type CurrencyId = CurrencyId;
type Role = Role;
fn transfer_currency(id: CurrencyId) -> Role {
Role::TransferCurrency(id)
}
fn manage_currency(id: CurrencyId) -> Role {
Role::ManageCurrency(id)
}
fn create_currencies() -> Role {
Role::CreateCurrencies
}
}
impl governance_os_pallet_bylaws::RoleBuilder for Role {
type Role = Role;
fn manage_roles() -> Role {
Role::ManageRoles
}
fn root() -> Role {
Role::Root
}
}
impl governance_os_pallet_organizations::RoleBuilder for Role {
type OrganizationId = AccountId;
type Role = Role;
fn create_organizations() -> Role {
Role::CreateOrganizations
}
fn apply_as_organization(org_id: &AccountId) -> Role {
Role::ApplyAsOrganization(org_id.clone())
}
}