Full Payment Upon Signature
This is a one-time full payment clause applicable at the signature of the contract.
This is a one-time full payment clause applicable at the signature of the contract.
This is a one-time full payment clause applicable at the signature of the contract.
Upon the signing of this Agreement, "Dan" shall pay the total purchase price to "Steve" in the amount of 0.01 USD.
Upon the signing of this Agreement, "Dan" shall pay the total purchase price to "Steve" in the amount of 0.01 USD.
Upon the signing of this Agreement, {{buyer}} shall pay the total purchase price to {{seller}} in the amount of {{amount}}.
{
"$class": "org.accordproject.payment.fulluponsignature.FullPaymentUponSignatureContract",
"buyer": "resource:org.accordproject.party.Party#Dan",
"seller": "resource:org.accordproject.party.Party#Steve",
"amount": {
"$class": "org.accordproject.money.MonetaryAmount",
"doubleValue": 0.01,
"currencyCode": "USD"
},
"contractId": "8e844b8d-f26e-4796-b5e1-c33016d6a76b",
"$identifier": "8e844b8d-f26e-4796-b5e1-c33016d6a76b"
}
namespace org.accordproject.payment.fulluponsignature
import org.accordproject.contract.* from https://models.accordproject.org/accordproject/contract.cto
import org.accordproject.party.* from https://models.accordproject.org/accordproject/party.cto
import org.accordproject.runtime.* from https://models.accordproject.org/accordproject/runtime.cto
import org.accordproject.obligation.* from https://models.accordproject.org/accordproject/obligation.cto
import org.accordproject.money.MonetaryAmount from https://models.accordproject.org/money@0.2.0.cto
import org.accordproject.signature.ContractSigned from https://models.accordproject.org/signature/signature@0.2.0.cto
import org.accordproject.payment.PaymentReceived from https://models.accordproject.org/payment/payment@0.2.0.cto
asset FullPaymentUponSignatureState extends State {
o ContractLifecycleStatus status
}
enum ContractLifecycleStatus {
o INITIALIZED
o OBLIGATION_EMITTED
o COMPLETED
}
/**
* The template model
*/
asset FullPaymentUponSignatureContract extends Contract {
--> Party buyer
--> Party seller
o MonetaryAmount amount
}
Find the full logic for this template on on GitHub.
Type | Sample JSON |
---|---|
org.accordproject.payment.fulluponsignature.FullPaymentUponSignatureState |
|
Type | Sample JSON |
---|---|
org.accordproject.payment.PaymentReceived |
|
org.accordproject.signature.ContractSigned |
|
Type | Sample JSON |
---|---|
org.accordproject.runtime.Response |
|
Type | Sample JSON |
---|---|
concerto.Event |
|
org.accordproject.obligation.PaymentObligation |
|
Please refer to the Accord Project documentation for how to use a template or integrate it within your application.
View the Latest code for this template on GitHub.