forked from kadena-io/KIPs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fungible-v2.pact
133 lines (114 loc) · 3.92 KB
/
fungible-v2.pact
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
(interface fungible-v2
" Standard for fungible coins and tokens as specified in KIP-0002. "
; ----------------------------------------------------------------------
; Schema
(defschema account-details
@doc "Schema for results of 'account' operation."
account:string
balance:decimal
guard:guard)
; ----------------------------------------------------------------------
; Caps
(defcap TRANSFER:bool
( sender:string
receiver:string
amount:decimal
)
@doc " Managed capability sealing AMOUNT for transfer from SENDER to \
\ RECEIVER. Permits any number of transfers up to AMOUNT."
@managed amount TRANSFER-mgr
)
(defun TRANSFER-mgr:decimal
( managed:decimal
requested:decimal
)
@doc " Manages TRANSFER AMOUNT linearly, \
\ such that a request for 1.0 amount on a 3.0 \
\ managed quantity emits updated amount 2.0."
)
; ----------------------------------------------------------------------
; Functionality
(defun transfer:string
( sender:string
receiver:string
amount:decimal
)
@doc " Transfer AMOUNT between accounts SENDER and RECEIVER. \
\ Fails if either SENDER or RECEIVER does not exist."
@model [ (property (> amount 0.0))
(property (!= sender ""))
(property (!= receiver ""))
(property (!= sender receiver))
]
)
(defun transfer-create:string
( sender:string
receiver:string
receiver-guard:guard
amount:decimal
)
@doc " Transfer AMOUNT between accounts SENDER and RECEIVER. \
\ Fails if SENDER does not exist. If RECEIVER exists, guard \
\ must match existing value. If RECEIVER does not exist, \
\ RECEIVER account is created using RECEIVER-GUARD. \
\ Subject to management by TRANSFER capability."
@model [ (property (> amount 0.0))
(property (!= sender ""))
(property (!= receiver ""))
(property (!= sender receiver))
]
)
(defpact transfer-crosschain:string
( sender:string
receiver:string
receiver-guard:guard
target-chain:string
amount:decimal
)
@doc " 2-step pact to transfer AMOUNT from SENDER on current chain \
\ to RECEIVER on TARGET-CHAIN via SPV proof. \
\ TARGET-CHAIN must be different than current chain id. \
\ First step debits AMOUNT coins in SENDER account and yields \
\ RECEIVER, RECEIVER_GUARD and AMOUNT to TARGET-CHAIN. \
\ Second step continuation is sent into TARGET-CHAIN with proof \
\ obtained from the spv 'output' endpoint of Chainweb. \
\ Proof is validated and RECEIVER is credited with AMOUNT \
\ creating account with RECEIVER_GUARD as necessary."
@model [ (property (> amount 0.0))
(property (!= sender ""))
(property (!= receiver ""))
(property (!= sender receiver))
(property (!= target-chain ""))
]
)
(defun get-balance:decimal
( account:string )
" Get balance for ACCOUNT. Fails if account does not exist."
)
(defun details:object{account-details}
( account: string )
" Get an object with details of ACCOUNT. \
\ Fails if account does not exist."
)
(defun precision:integer
()
"Return the maximum allowed decimal precision."
)
(defun enforce-unit:bool
( amount:decimal )
" Enforce minimum precision allowed for transactions."
)
(defun create-account:string
( account:string
guard:guard
)
" Create ACCOUNT with 0.0 balance, with GUARD controlling access."
)
(defun rotate:string
( account:string
new-guard:guard
)
" Rotate guard for ACCOUNT. Transaction is validated against \
\ existing guard before installing new guard. "
)
)