-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/partial-fulfillments
- Loading branch information
Showing
18 changed files
with
1,403 additions
and
43 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#[frame_support::pallet] | ||
pub mod pallet { | ||
use cfg_traits::IdentityCurrencyConversion; | ||
use frame_support::pallet_prelude::*; | ||
use mock_builder::{execute_call, register_call}; | ||
|
||
#[pallet::config] | ||
pub trait Config: frame_system::Config { | ||
type Balance; | ||
type CurrencyId; | ||
} | ||
|
||
#[pallet::pallet] | ||
#[pallet::generate_store(pub(super) trait Store)] | ||
pub struct Pallet<T>(_); | ||
|
||
#[pallet::storage] | ||
pub(super) type CallIds<T: Config> = StorageMap< | ||
_, | ||
Blake2_128Concat, | ||
<Blake2_128 as frame_support::StorageHasher>::Output, | ||
mock_builder::CallId, | ||
>; | ||
|
||
impl<T: Config> Pallet<T> { | ||
pub fn mock_stable_to_stable( | ||
f: impl Fn(T::CurrencyId, T::CurrencyId, T::Balance) -> Result<T::Balance, DispatchError> | ||
+ 'static, | ||
) { | ||
register_call!(move |(a, b, c)| f(a, b, c)); | ||
} | ||
} | ||
|
||
impl<T: Config> IdentityCurrencyConversion for Pallet<T> { | ||
type Balance = T::Balance; | ||
type Currency = T::CurrencyId; | ||
type Error = DispatchError; | ||
|
||
fn stable_to_stable( | ||
a: Self::Currency, | ||
b: Self::Currency, | ||
c: Self::Balance, | ||
) -> Result<Self::Balance, DispatchError> { | ||
execute_call!((a, b, c)) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
#[frame_support::pallet] | ||
pub mod pallet { | ||
use cfg_traits::investments::{Investment, InvestmentCollector}; | ||
use frame_support::pallet_prelude::*; | ||
use mock_builder::{execute_call, register_call}; | ||
|
||
#[pallet::config] | ||
pub trait Config: frame_system::Config { | ||
type Amount; | ||
type CurrencyId; | ||
type InvestmentId; | ||
} | ||
|
||
#[pallet::pallet] | ||
#[pallet::generate_store(pub(super) trait Store)] | ||
pub struct Pallet<T>(_); | ||
|
||
#[pallet::storage] | ||
pub(super) type CallIds<T: Config> = StorageMap< | ||
_, | ||
Blake2_128Concat, | ||
<Blake2_128 as frame_support::StorageHasher>::Output, | ||
mock_builder::CallId, | ||
>; | ||
|
||
impl<T: Config> Pallet<T> { | ||
pub fn mock_update_investment( | ||
f: impl Fn(&T::AccountId, T::InvestmentId, T::Amount) -> DispatchResult + 'static, | ||
) { | ||
register_call!(move |(a, b, c)| f(a, b, c)); | ||
} | ||
|
||
pub fn mock_accepted_payment_currency( | ||
f: impl Fn(T::InvestmentId, T::CurrencyId) -> bool + 'static, | ||
) { | ||
register_call!(move |(a, b)| f(a, b)); | ||
} | ||
|
||
pub fn mock_investment( | ||
f: impl Fn(&T::AccountId, T::InvestmentId) -> Result<T::Amount, DispatchError> + 'static, | ||
) { | ||
register_call!(move |(a, b)| f(a, b)); | ||
} | ||
|
||
pub fn mock_update_redemption( | ||
f: impl Fn(&T::AccountId, T::InvestmentId, T::Amount) -> DispatchResult + 'static, | ||
) { | ||
register_call!(move |(a, b, c)| f(a, b, c)); | ||
} | ||
|
||
pub fn mock_accepted_payout_currency( | ||
f: impl Fn(T::InvestmentId, T::CurrencyId) -> bool + 'static, | ||
) { | ||
register_call!(move |(a, b)| f(a, b)); | ||
} | ||
|
||
pub fn mock_redemption( | ||
f: impl Fn(&T::AccountId, T::InvestmentId) -> Result<T::Amount, DispatchError> + 'static, | ||
) { | ||
register_call!(move |(a, b)| f(a, b)); | ||
} | ||
|
||
pub fn mock_collect_investment( | ||
f: impl Fn(T::AccountId, T::InvestmentId) -> Result<(), DispatchError> + 'static, | ||
) { | ||
register_call!(move |(a, b)| f(a, b)); | ||
} | ||
|
||
pub fn mock_collect_redemption( | ||
f: impl Fn(T::AccountId, T::InvestmentId) -> Result<(), DispatchError> + 'static, | ||
) { | ||
register_call!(move |(a, b)| f(a, b)); | ||
} | ||
|
||
pub fn mock_investment_requires_collect( | ||
f: impl Fn(&T::AccountId, T::InvestmentId) -> bool + 'static, | ||
) { | ||
register_call!(move |(a, b)| f(a, b)); | ||
} | ||
|
||
pub fn mock_redemption_requires_collect( | ||
f: impl Fn(&T::AccountId, T::InvestmentId) -> bool + 'static, | ||
) { | ||
register_call!(move |(a, b)| f(a, b)); | ||
} | ||
} | ||
|
||
impl<T: Config> Investment<T::AccountId> for Pallet<T> { | ||
type Amount = T::Amount; | ||
type CurrencyId = T::CurrencyId; | ||
type Error = DispatchError; | ||
type InvestmentId = T::InvestmentId; | ||
|
||
fn update_investment( | ||
a: &T::AccountId, | ||
b: Self::InvestmentId, | ||
c: Self::Amount, | ||
) -> DispatchResult { | ||
execute_call!((a, b, c)) | ||
} | ||
|
||
fn accepted_payment_currency(a: Self::InvestmentId, b: Self::CurrencyId) -> bool { | ||
execute_call!((a, b)) | ||
} | ||
|
||
fn investment( | ||
a: &T::AccountId, | ||
b: Self::InvestmentId, | ||
) -> Result<Self::Amount, Self::Error> { | ||
execute_call!((a, b)) | ||
} | ||
|
||
fn update_redemption( | ||
a: &T::AccountId, | ||
b: Self::InvestmentId, | ||
c: Self::Amount, | ||
) -> DispatchResult { | ||
execute_call!((a, b, c)) | ||
} | ||
|
||
fn accepted_payout_currency(a: Self::InvestmentId, b: Self::CurrencyId) -> bool { | ||
execute_call!((a, b)) | ||
} | ||
|
||
fn redemption( | ||
a: &T::AccountId, | ||
b: Self::InvestmentId, | ||
) -> Result<Self::Amount, Self::Error> { | ||
execute_call!((a, b)) | ||
} | ||
|
||
fn investment_requires_collect(a: &T::AccountId, b: T::InvestmentId) -> bool { | ||
execute_call!((a, b)) | ||
} | ||
|
||
fn redemption_requires_collect(a: &T::AccountId, b: T::InvestmentId) -> bool { | ||
execute_call!((a, b)) | ||
} | ||
} | ||
|
||
impl<T: Config> InvestmentCollector<T::AccountId> for Pallet<T> { | ||
type Error = DispatchError; | ||
type InvestmentId = T::InvestmentId; | ||
type Result = (); | ||
|
||
fn collect_investment( | ||
a: T::AccountId, | ||
b: Self::InvestmentId, | ||
) -> Result<Self::Result, Self::Error> { | ||
execute_call!((a, b)) | ||
} | ||
|
||
fn collect_redemption( | ||
a: T::AccountId, | ||
b: Self::InvestmentId, | ||
) -> Result<Self::Result, Self::Error> { | ||
execute_call!((a, b)) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#[frame_support::pallet] | ||
pub mod pallet { | ||
use cfg_traits::StatusNotificationHook; | ||
use frame_support::pallet_prelude::*; | ||
use mock_builder::{execute_call_instance, register_call_instance}; | ||
|
||
#[pallet::config] | ||
pub trait Config<I: 'static = ()>: frame_system::Config { | ||
type Id; | ||
type Status; | ||
} | ||
|
||
#[pallet::pallet] | ||
#[pallet::generate_store(pub(super) trait Store)] | ||
pub struct Pallet<T, I = ()>(_); | ||
|
||
#[pallet::storage] | ||
pub(super) type CallIds<T: Config<I>, I: 'static = ()> = StorageMap< | ||
_, | ||
Blake2_128Concat, | ||
<Blake2_128 as frame_support::StorageHasher>::Output, | ||
mock_builder::CallId, | ||
>; | ||
|
||
impl<T: Config<I>, I: 'static> Pallet<T, I> { | ||
pub fn mock_notify_status_change(f: impl Fn(T::Id, T::Status) -> DispatchResult + 'static) { | ||
register_call_instance!(move |(a, b)| f(a, b)); | ||
} | ||
} | ||
|
||
impl<T: Config<I>, I: 'static> StatusNotificationHook for Pallet<T, I> { | ||
type Error = DispatchError; | ||
type Id = T::Id; | ||
type Status = T::Status; | ||
|
||
fn notify_status_change(a: Self::Id, b: Self::Status) -> DispatchResult { | ||
execute_call_instance!((a, b)) | ||
} | ||
} | ||
} |
Oops, something went wrong.