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
// This file is part of Darwinia.
//
// Copyright (C) 2018-2022 Darwinia Network
// SPDX-License-Identifier: GPL-3.0
//
// Darwinia is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Darwinia is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Darwinia. If not, see <https://www.gnu.org/licenses/>.

//! # Tron Backing Module

#![cfg_attr(not(feature = "std"), no_std)]

pub mod weights;
pub use weights::WeightInfo;

#[frame_support::pallet]
pub mod pallet {
	pub mod types {
		// --- darwinia-network ---
		#[cfg(feature = "std")]
		use crate::pallet::*;

		pub type AccountId<T> = <T as frame_system::Config>::AccountId;
		// Generic type
		#[cfg(feature = "std")]
		pub type RingBalance<T> = <RingCurrency<T> as Currency<AccountId<T>>>::Balance;
		#[cfg(feature = "std")]
		pub type KtonBalance<T> = <KtonCurrency<T> as Currency<AccountId<T>>>::Balance;
		#[cfg(feature = "std")]
		type RingCurrency<T> = <T as Config>::RingCurrency;
		#[cfg(feature = "std")]
		type KtonCurrency<T> = <T as Config>::KtonCurrency;
	}
	pub use types::*;

	// --- paritytech ---
	#[cfg(feature = "std")]
	use frame_support::traits::GenesisBuild;
	use frame_support::{
		traits::{Currency, Get},
		PalletId,
	};
	use sp_runtime::traits::AccountIdConversion;
	// --- darwinia-network ---
	use crate::weights::WeightInfo;

	#[pallet::config]
	pub trait Config: frame_system::Config {
		// --- paritytech ---
		type WeightInfo: WeightInfo;
		// --- darwinia-network ---
		#[pallet::constant]
		type PalletId: Get<PalletId>;
		type RingCurrency: Currency<AccountId<Self>>;
		type KtonCurrency: Currency<AccountId<Self>>;
	}

	#[pallet::genesis_config]
	pub struct GenesisConfig<T: Config> {
		pub backed_ring: RingBalance<T>,
		pub backed_kton: KtonBalance<T>,
	}
	#[cfg(feature = "std")]
	impl<T: Config> Default for GenesisConfig<T> {
		fn default() -> Self {
			GenesisConfig { backed_ring: Default::default(), backed_kton: Default::default() }
		}
	}
	#[pallet::genesis_build]
	impl<T: Config> GenesisBuild<T> for GenesisConfig<T> {
		fn build(&self) {
			let module_account = <Pallet<T>>::account_id();

			let _ = T::RingCurrency::make_free_balance_be(
				&module_account,
				T::RingCurrency::minimum_balance() + self.backed_ring,
			);
			let _ = T::KtonCurrency::make_free_balance_be(&module_account, self.backed_kton);
		}
	}

	#[pallet::pallet]
	pub struct Pallet<T>(_);
	impl<T: Config> Pallet<T> {
		pub fn account_id() -> T::AccountId {
			T::PalletId::get().into_account()
		}
	}
}
pub use pallet::*;