Struct pallet_payment::pallet::Pallet
source · pub struct Pallet<T>(_);
Expand description
The pallet implementing the on-chain logic.
Implementations§
source§impl<T: Config> Pallet<T>
impl<T: Config> Pallet<T>
pub fn balance_to_u128_option(input: BalanceOf<T>) -> Option<u128>
pub fn u128_to_balance_option(input: u128) -> Option<BalanceOf<T>>
source§impl<T: Config> Pallet<T>
impl<T: Config> Pallet<T>
pub fn check_task(now: T::BlockNumber, remaining_weight: Weight) -> Weight
source§impl<T: Config> Pallet<T>
impl<T: Config> Pallet<T>
sourcepub fn pay(
origin: OriginFor<T>,
recipient: T::AccountId,
amount: BalanceOf<T>,
remark: Option<BoundedDataOf<T>>
) -> DispatchResultWithPostInfo
pub fn pay(
origin: OriginFor<T>,
recipient: T::AccountId,
amount: BalanceOf<T>,
remark: Option<BoundedDataOf<T>>
) -> DispatchResultWithPostInfo
This allows any user to create a new payment, that releases only to specified recipient The only action is to store the details of this payment in storage and reserve the specified amount. User also has the option to add a remark, this remark can then be used to run custom logic and trigger alternate payment flows. the specified amount.
sourcepub fn release(
origin: OriginFor<T>,
to: T::AccountId
) -> DispatchResultWithPostInfo
pub fn release(
origin: OriginFor<T>,
to: T::AccountId
) -> DispatchResultWithPostInfo
Release any created payment, this will transfer the reserved amount from the creator of the payment to the assigned recipient
sourcepub fn cancel(
origin: OriginFor<T>,
creator: T::AccountId
) -> DispatchResultWithPostInfo
pub fn cancel(
origin: OriginFor<T>,
creator: T::AccountId
) -> DispatchResultWithPostInfo
Cancel a payment in created state, this will release the reserved back to creator of the payment. This extrinsic can only be called by the recipient of the payment
sourcepub fn resolve_payment(
origin: OriginFor<T>,
from: T::AccountId,
recipient: T::AccountId,
recipient_share: Percent
) -> DispatchResultWithPostInfo
pub fn resolve_payment(
origin: OriginFor<T>,
from: T::AccountId,
recipient: T::AccountId,
recipient_share: Percent
) -> DispatchResultWithPostInfo
This extrinsic is used to resolve disputes between the creator and recipient of the payment. This extrinsic allows the assigned judge to cancel/release/partial_release the payment.
sourcepub fn request_refund(
origin: OriginFor<T>,
recipient: T::AccountId
) -> DispatchResultWithPostInfo
pub fn request_refund(
origin: OriginFor<T>,
recipient: T::AccountId
) -> DispatchResultWithPostInfo
Allow the creator of a payment to initiate a refund that will return the funds after a configured amount of time that the reveiver has to react and opose the request
sourcepub fn dispute_refund(
origin: OriginFor<T>,
creator: T::AccountId
) -> DispatchResultWithPostInfo
pub fn dispute_refund(
origin: OriginFor<T>,
creator: T::AccountId
) -> DispatchResultWithPostInfo
Allow payment recipient to dispute the refund request from the payment creator This does not cancel the request, instead sends the payment to a NeedsReview state The assigned resolver account can then change the state of the payment after review.
pub fn request_payment(
origin: OriginFor<T>,
from: T::AccountId,
amount: BalanceOf<T>
) -> DispatchResultWithPostInfo
pub fn accept_and_pay(
origin: OriginFor<T>,
to: T::AccountId
) -> DispatchResultWithPostInfo
source§impl<T: Config> Pallet<T>
impl<T: Config> Pallet<T>
sourcepub fn payment<KArg1, KArg2>(k1: KArg1, k2: KArg2) -> Option<PaymentDetail<T>>where
KArg1: EncodeLike<T::AccountId>,
KArg2: EncodeLike<T::AccountId>,
pub fn payment<KArg1, KArg2>(k1: KArg1, k2: KArg2) -> Option<PaymentDetail<T>>where
KArg1: EncodeLike<T::AccountId>,
KArg2: EncodeLike<T::AccountId>,
Payments created by a user, this method of storageDoubleMap is chosen since there is no usecase for listing payments by provider/currency. The payment will only be referenced by the creator in any transaction of interest. The storage map keys are the creator and the recipient, this also ensures that for any (sender,recipient) combo, only a single payment is active. The history of payment is not stored.
Trait Implementations§
source§impl<T: Config> GetStorageVersion for Pallet<T>
impl<T: Config> GetStorageVersion for Pallet<T>
source§fn current_storage_version() -> StorageVersion
fn current_storage_version() -> StorageVersion
source§fn on_chain_storage_version() -> StorageVersion
fn on_chain_storage_version() -> StorageVersion
source§impl<T: Config> Hooks<<T as Config>::BlockNumber> for Pallet<T>
impl<T: Config> Hooks<<T as Config>::BlockNumber> for Pallet<T>
source§fn on_idle(now: T::BlockNumber, remaining_weight: Weight) -> Weight
fn on_idle(now: T::BlockNumber, remaining_weight: Weight) -> Weight
Hook that execute when there is leftover space in a block This function will look for any pending scheduled tasks that can be executed and will process them.
§fn on_finalize(_n: BlockNumber)
fn on_finalize(_n: BlockNumber)
§fn on_initialize(_n: BlockNumber) -> Weight
fn on_initialize(_n: BlockNumber) -> Weight
§fn on_runtime_upgrade() -> Weight
fn on_runtime_upgrade() -> Weight
§fn try_state(_n: BlockNumber) -> Result<(), &'static str>
fn try_state(_n: BlockNumber) -> Result<(), &'static str>
§fn pre_upgrade() -> Result<(), &'static str>
fn pre_upgrade() -> Result<(), &'static str>
§fn post_upgrade() -> Result<(), &'static str>
fn post_upgrade() -> Result<(), &'static str>
§fn offchain_worker(_n: BlockNumber)
fn offchain_worker(_n: BlockNumber)
§fn integrity_test()
fn integrity_test()
source§impl<T: Config> IntegrityTest for Pallet<T>
impl<T: Config> IntegrityTest for Pallet<T>
source§fn integrity_test()
fn integrity_test()
source§impl<T: Config> OffchainWorker<<T as Config>::BlockNumber> for Pallet<T>
impl<T: Config> OffchainWorker<<T as Config>::BlockNumber> for Pallet<T>
source§fn offchain_worker(n: <T as Config>::BlockNumber)
fn offchain_worker(n: <T as Config>::BlockNumber)
source§impl<T: Config> OnFinalize<<T as Config>::BlockNumber> for Pallet<T>
impl<T: Config> OnFinalize<<T as Config>::BlockNumber> for Pallet<T>
source§fn on_finalize(n: <T as Config>::BlockNumber)
fn on_finalize(n: <T as Config>::BlockNumber)
source§impl<T: Config> OnGenesis for Pallet<T>
impl<T: Config> OnGenesis for Pallet<T>
source§fn on_genesis()
fn on_genesis()
source§impl<T: Config> OnIdle<<T as Config>::BlockNumber> for Pallet<T>
impl<T: Config> OnIdle<<T as Config>::BlockNumber> for Pallet<T>
source§fn on_idle(n: <T as Config>::BlockNumber, remaining_weight: Weight) -> Weight
fn on_idle(n: <T as Config>::BlockNumber, remaining_weight: Weight) -> Weight
remaining_weight
to make sure it is high enough to allow for
your pallet’s extra computation. Read moresource§impl<T: Config> OnInitialize<<T as Config>::BlockNumber> for Pallet<T>
impl<T: Config> OnInitialize<<T as Config>::BlockNumber> for Pallet<T>
source§fn on_initialize(n: <T as Config>::BlockNumber) -> Weight
fn on_initialize(n: <T as Config>::BlockNumber) -> Weight
source§impl<T: Config> PalletInfoAccess for Pallet<T>
impl<T: Config> PalletInfoAccess for Pallet<T>
source§fn module_name() -> &'static str
fn module_name() -> &'static str
source§fn crate_version() -> CrateVersion
fn crate_version() -> CrateVersion
source§impl<T: Config> PaymentHandler<T> for Pallet<T>
impl<T: Config> PaymentHandler<T> for Pallet<T>
source§fn create_payment(
from: &T::AccountId,
recipient: &T::AccountId,
amount: BalanceOf<T>,
payment_state: PaymentState<T>,
incentive_percentage: Percent,
remark: Option<&[u8]>
) -> Result<PaymentDetail<T>, DispatchError>
fn create_payment(
from: &T::AccountId,
recipient: &T::AccountId,
amount: BalanceOf<T>,
payment_state: PaymentState<T>,
incentive_percentage: Percent,
remark: Option<&[u8]>
) -> Result<PaymentDetail<T>, DispatchError>
The function will create a new payment. The fee and incentive
amounts will be calculated and the PaymentDetail
will be added to
storage.
source§fn reserve_payment_amount(
from: &T::AccountId,
to: &T::AccountId,
payment: PaymentDetail<T>
) -> DispatchResult
fn reserve_payment_amount(
from: &T::AccountId,
to: &T::AccountId,
payment: PaymentDetail<T>
) -> DispatchResult
The function will reserve the fees+transfer amount from the from
account. After reserving the payment.amount will be transferred to
the recipient but will stay in Reserve state.
source§fn settle_payment(
from: &T::AccountId,
to: &T::AccountId,
recipient_share: Percent
) -> DispatchResult
fn settle_payment(
from: &T::AccountId,
to: &T::AccountId,
recipient_share: Percent
) -> DispatchResult
This function allows the caller to settle the payment by specifying a recipient_share this will unreserve the fee+incentive to sender and unreserve transferred amount to recipient if the settlement is a release (ie recipient_share=100), the fee is transferred to fee_recipient For cancelling a payment, recipient_share = 0 For releasing a payment, recipient_share = 100 In other cases, the custom recipient_share can be specified
source§fn get_payment_details(
from: &T::AccountId,
to: &T::AccountId
) -> Option<PaymentDetail<T>>
fn get_payment_details(
from: &T::AccountId,
to: &T::AccountId
) -> Option<PaymentDetail<T>>
source§impl<T: Config> StorageInfoTrait for Pallet<T>
impl<T: Config> StorageInfoTrait for Pallet<T>
fn storage_info() -> Vec<StorageInfo> ⓘ
impl<T> Eq for Pallet<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for Pallet<T>where
T: RefUnwindSafe,
impl<T> Send for Pallet<T>where
T: Send,
impl<T> Sync for Pallet<T>where
T: Sync,
impl<T> Unpin for Pallet<T>where
T: Unpin,
impl<T> UnwindSafe for Pallet<T>where
T: UnwindSafe,
Blanket Implementations§
§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
§fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
§fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read moresource§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<U> OnRuntimeUpgradeHelpersExt for Uwhere
U: OnRuntimeUpgrade,
impl<U> OnRuntimeUpgradeHelpersExt for Uwhere
U: OnRuntimeUpgrade,
§fn storage_key(ident: &str) -> [u8; 32]
fn storage_key(ident: &str) -> [u8; 32]
§fn get_temp_storage<T>(at: &str) -> Option<T>where
T: Decode,
fn get_temp_storage<T>(at: &str) -> Option<T>where
T: Decode,
Self::set_temp_storage
]. Read more§fn set_temp_storage<T>(data: T, at: &str)where
T: Encode,
fn set_temp_storage<T>(data: T, at: &str)where
T: Encode,
Self::get_temp_storage
]. Read more§impl<T> PalletVersionToStorageVersionHelper for Twhere
T: GetStorageVersion + PalletInfoAccess,
impl<T> PalletVersionToStorageVersionHelper for Twhere
T: GetStorageVersion + PalletInfoAccess,
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
T
. Read more§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
unchecked_from
.§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.