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
121
122
123
124
125
126
127
128
129
130
131
132
133
// --- crates.io ---
use codec::{Decode, Encode, MaxEncodedLen};
use scale_info::TypeInfo;
// --- paritytech ---
use frame_support::traits::InstanceFilter;
use pallet_proxy::Config;
use sp_runtime::RuntimeDebug;
// --- darwinia-network ---
use crate::{weights::pallet_proxy::WeightInfo, *};

/// The type used to represent the kinds of proxying allowed.
#[derive(
	Copy,
	Clone,
	Eq,
	PartialEq,
	Ord,
	PartialOrd,
	Encode,
	Decode,
	RuntimeDebug,
	MaxEncodedLen,
	TypeInfo,
)]
pub enum ProxyType {
	Any,
	NonTransfer,
	Governance,
	Staking,
	EthereumBridge,
}
impl Default for ProxyType {
	fn default() -> Self {
		Self::Any
	}
}
impl InstanceFilter<Call> for ProxyType {
	fn filter(&self, c: &Call) -> bool {
		match self {
			ProxyType::Any => true,
			ProxyType::NonTransfer => matches!(
				c,
				Call::System(..) |
							Call::Babe(..) |
							Call::Timestamp(..) |
							// Specifically omitting the entire Balances pallet
							Call::Authorship(..) |
							Call::Staking(..) |
							Call::Session(..) |
							Call::Grandpa(..) |
							Call::ImOnline(..) |
							Call::Democracy(..) |
							Call::Council(..) |
							Call::TechnicalCommittee(..) |
							Call::PhragmenElection(..) |
							Call::TechnicalMembership(..) |
							Call::Treasury(..) |
							Call::KtonTreasury(..) |
							Call::Tips(..) |
							Call::Bounties(..) |
							Call::Sudo(..) |
							// Specifically omitting Vesting `vested_transfer`, and `force_vested_transfer`
							Call::Vesting(pallet_vesting::Call::vest{ .. }) |
							Call::Vesting(pallet_vesting::Call::vest_other{ .. }) |
							Call::Utility(..)|
							Call::Identity(..)|
							Call::Society(..)|
							// Specifically omitting Recovery `create_recovery`, `initiate_recovery`
							Call::Recovery(pallet_recovery::Call::as_recovered{ .. }) |
							Call::Recovery(pallet_recovery::Call::vouch_recovery{ .. }) |
							Call::Recovery(pallet_recovery::Call::claim_recovery{ .. }) |
							Call::Recovery(pallet_recovery::Call::close_recovery{ .. }) |
							Call::Recovery(pallet_recovery::Call::remove_recovery{ .. }) |
							Call::Recovery(pallet_recovery::Call::cancel_recovered{ .. }) |
							Call::Scheduler(..)|
							Call::Proxy(..)|
							Call::Multisig(..)|
							Call::EcdsaAuthority(..) /* Specifically omitting the entire
				                             * TronBacking pallet
				                             * Specifically omitting the entire EVM
				                             * pallet
				                             * Specifically omitting the entire
				                             * Ethereum pallet */
			),
			ProxyType::Governance => matches!(
				c,
				Call::Democracy(..)
					| Call::Council(..) | Call::TechnicalCommittee(..)
					| Call::PhragmenElection(..)
					| Call::Treasury(..) | Call::KtonTreasury(..)
					| Call::Tips(..) | Call::Bounties(..)
			),
			ProxyType::Staking => matches!(c, Call::Staking(..)),
			ProxyType::EthereumBridge => matches!(c, Call::EcdsaAuthority(..)),
		}
	}

	fn is_superset(&self, o: &Self) -> bool {
		match (self, o) {
			(x, y) if x == y => true,
			(ProxyType::Any, _) => true,
			(_, ProxyType::Any) => false,
			(ProxyType::NonTransfer, _) => true,
			_ => false,
		}
	}
}

frame_support::parameter_types! {
	// One storage item; key size 32, value size 8; .
	pub const ProxyDepositBase: Balance = pangolin_deposit(1, 8);
	// Additional storage item size of 33 bytes.
	pub const ProxyDepositFactor: Balance = pangolin_deposit(0, 33);
	pub const MaxProxies: u16 = 32;
	pub const AnnouncementDepositBase: Balance = pangolin_deposit(1, 8);
	pub const AnnouncementDepositFactor: Balance = pangolin_deposit(0, 66);
	pub const MaxPending: u16 = 32;
}

impl Config for Runtime {
	type AnnouncementDepositBase = AnnouncementDepositBase;
	type AnnouncementDepositFactor = AnnouncementDepositFactor;
	type Call = Call;
	type CallHasher = Hashing;
	type Currency = Ring;
	type Event = Event;
	type MaxPending = MaxPending;
	type MaxProxies = MaxProxies;
	type ProxyDepositBase = ProxyDepositBase;
	type ProxyDepositFactor = ProxyDepositFactor;
	type ProxyType = ProxyType;
	type WeightInfo = WeightInfo<Self>;
}