pub struct Pallet<T>(_);
Expand description

The pallet implementing the on-chain logic.

Implementations§

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.

Release any created payment, this will transfer the reserved amount from the creator of the payment to the assigned recipient

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

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.

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

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.

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.

Store the list of tasks to be executed in the on_idle function

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the current storage version as supported by the pallet.
Returns the on-chain storage version of the pallet as stored in the storage.

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.

The block is being finalized. Implement to have something happen.
The block is being initialized. Implement to have something happen. Read more
Perform a module upgrade. Read more
Execute the sanity checks of this pallet, per block. Read more
Execute some pre-checks prior to a runtime upgrade. Read more
Execute some post-checks after a runtime upgrade. Read more
Implementing this function on a module allows you to perform long-running tasks that make (by default) validators generate transactions that feed results of those long-running computations back on chain. Read more
Run integrity test. Read more
Run integrity test. Read more
This function is being called after every block import (when fully synced). Read more
The block is being finalized. Implement to have something happen. Read more
Something that should happen at genesis.
The block is being finalized. Implement to have something happen in case there is leftover weight. Check the passed remaining_weight to make sure it is high enough to allow for your pallet’s extra computation. Read more
The block is being initialized. Implement to have something happen. Read more
Perform a module upgrade. Read more
Execute some pre-checks prior to a runtime upgrade. Read more
Execute some post-checks after a runtime upgrade. Read more
Index of the pallet as configured in the runtime.
Name of the pallet as configured in the runtime.
Name of the Rust module containing the pallet.
Version of the crate containing the pallet.
The number of pallets’ information that this type represents. Read more
All of the pallets’ information that this type represents.
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

The function will create a new payment. The fee and incentive amounts will be calculated and the PaymentDetail will be added to storage.

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.

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

Attempt to fetch the details of a payment from the given payment_id Possible reasons for failure include: Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Convert from a value of T into an equivalent instance of Option<Self>. Read more
Consume self to return Some equivalent value of Option<T>. Read more
Convert 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
Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more
Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s. Read more
Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s. Read more
Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait. Read more
Compare self to key and return true if they are equal.

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Cast reference.
Cast reference.
Cast mutable reference.
Cast mutable reference.

Get a reference to the inner from the outer.

Get a mutable reference to the inner from the outer.

Generate a storage key unique to this runtime upgrade. Read more
Get temporary storage data written by [Self::set_temp_storage]. Read more
Write some temporary data to a specific storage that can be read (potentially in post-upgrade hook) via [Self::get_temp_storage]. Read more
The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. Read more
Dereferences the given pointer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
Should always be Self
Convert from a value of T into an equivalent instance of Self. Read more
Consume self to return an equivalent value of T. Read more
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
The counterpart to unchecked_from.
Consume self to return an equivalent value of T.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more