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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
// Copyright (c) The Diem Core Contributors
// SPDX-License-Identifier: Apache-2.0

//! Support for encoding transactions for common situations.

use crate::account::Account;
use compiler::Compiler;
use diem_framework_releases::legacy::transaction_scripts::LegacyStdlibScript;
use diem_transaction_builder::stdlib::encode_peer_to_peer_by_signers_script_function;
use diem_types::{
    account_config,
    transaction::{
        RawTransaction, Script, SignedTransaction, TransactionArgument, TransactionPayload,
    },
};
use move_core_types::language_storage::TypeTag;
use once_cell::sync::Lazy;

pub static CREATE_ACCOUNT_SCRIPT: Lazy<Vec<u8>> = Lazy::new(|| {
    let code = "
    import 0x1.Diem;
    import 0x1.DiemAccount;

    main<Token>(account: signer, fresh_address: address, auth_key_prefix: vector<u8>, initial_amount: u64) {
      let with_cap: DiemAccount.WithdrawCapability;
      let name: vector<u8>;
      name = h\"\";

      DiemAccount.create_parent_vasp_account<Token>(
        &account,
        copy(fresh_address),
        move(auth_key_prefix),
        move(name),
        false
      );
      if (copy(initial_amount) > 0) {
         with_cap = DiemAccount.extract_withdraw_capability(&account);
         DiemAccount.pay_from<Token>(
           &with_cap,
           move(fresh_address),
           move(initial_amount),
           h\"\",
           h\"\"
         );
         DiemAccount.restore_withdraw_capability(move(with_cap));
      }
      return;
    }
";

    let compiler = Compiler {
        deps: diem_framework_releases::current_modules().iter().collect(),
    };
    compiler
        .into_script_blob("file_name", code)
        .expect("Failed to compile")
});

pub static EMPTY_SCRIPT: Lazy<Vec<u8>> = Lazy::new(|| {
    let code = "
    main(account: signer) {
      return;
    }
";

    let compiler = Compiler {
        deps: diem_framework_releases::current_modules().iter().collect(),
    };
    compiler
        .into_script_blob("file_name", code)
        .expect("Failed to compile")
});

pub static MULTI_AGENT_SWAP_SCRIPT: Lazy<Vec<u8>> = Lazy::new(|| {
    let code = "
    import 0x1.DiemAccount;
    import 0x1.Signer;
    import 0x1.XDX;
    import 0x1.XUS;

    // Alice and Bob agree on the value of amount_xus and amount_xdx off-chain.
    main(alice: signer, bob: signer, amount_xus: u64, amount_xdx: u64) {
        // First, Alice pays Bob in currency XUS.
        let alice_withdrawal_cap: DiemAccount.WithdrawCapability;
        let bob_withdrawal_cap: DiemAccount.WithdrawCapability;
        let alice_addr: address;
        let bob_addr: address;

        alice_withdrawal_cap = DiemAccount.extract_withdraw_capability(&alice);
        bob_addr = Signer.address_of(&bob);
        DiemAccount.pay_from<XUS.XUS>(
            &alice_withdrawal_cap, move(bob_addr), move(amount_xus), h\"\", h\"\"
        );
        DiemAccount.restore_withdraw_capability(move(alice_withdrawal_cap));

        // Then, Bob pays Alice in currency XDX.
        bob_withdrawal_cap = DiemAccount.extract_withdraw_capability(&bob);
        alice_addr = Signer.address_of(&alice);
        DiemAccount.pay_from<XDX.XDX>(
            &bob_withdrawal_cap, move(alice_addr), move(amount_xdx), h\"\", h\"\"
        );
        DiemAccount.restore_withdraw_capability(move(bob_withdrawal_cap));
        return;
    }
";

    let compiler = Compiler {
        deps: diem_framework_releases::current_modules().iter().collect(),
    };
    compiler
        .into_script_blob("file_name", code)
        .expect("Failed to compile")
});

pub static MULTI_AGENT_MINT_SCRIPT: Lazy<Vec<u8>> = Lazy::new(|| {
    let code = "
    import 0x1.DiemAccount;
    import 0x1.Signer;
    import 0x1.XDX;
    import 0x1.XUS;

    main<CoinType>(
        tc_account: signer,
        dd_account: signer,
        vasp_account: signer,
        amount: u64,
        tier_index: u64
    ) {

        let dd_address: address;
        let dd_withdrawal_cap: DiemAccount.WithdrawCapability;
        let vasp_address: address;

        dd_address = Signer.address_of(&dd_account);
        // First, TC mints to DD.
        DiemAccount.tiered_mint<CoinType>(
            &tc_account, move(dd_address), copy(amount), move(tier_index)
        );

        // Then, DD distributes funds to VASP.
        dd_withdrawal_cap = DiemAccount.extract_withdraw_capability(&dd_account);
        vasp_address = Signer.address_of(&vasp_account);
        DiemAccount.pay_from<CoinType>(
            &dd_withdrawal_cap, move(vasp_address), move(amount), h\"\", h\"\"
        );
        DiemAccount.restore_withdraw_capability(move(dd_withdrawal_cap));
        return;
    }
";

    let compiler = Compiler {
        deps: diem_framework_releases::current_modules().iter().collect(),
    };
    compiler
        .into_script_blob("file_name", code)
        .expect("Failed to compile")
});

pub fn empty_txn(
    sender: &Account,
    seq_num: u64,
    max_gas_amount: u64,
    gas_unit_price: u64,
    gas_currency_code: String,
) -> SignedTransaction {
    sender
        .transaction()
        .script(Script::new(EMPTY_SCRIPT.to_vec(), vec![], vec![]))
        .sequence_number(seq_num)
        .max_gas_amount(max_gas_amount)
        .gas_unit_price(gas_unit_price)
        .gas_currency_code(&gas_currency_code)
        .sign()
}

/// Returns a transaction to create a new account with the given arguments.
pub fn create_account_txn(
    sender: &Account,
    new_account: &Account,
    seq_num: u64,
    initial_amount: u64,
    type_tag: TypeTag,
) -> SignedTransaction {
    let args: Vec<TransactionArgument> = vec![
        TransactionArgument::Address(*new_account.address()),
        TransactionArgument::U8Vector(new_account.auth_key_prefix()),
        TransactionArgument::U64(initial_amount),
    ];

    sender
        .transaction()
        .script(Script::new(
            CREATE_ACCOUNT_SCRIPT.to_vec(),
            vec![type_tag],
            args,
        ))
        .sequence_number(seq_num)
        .sign()
}

/// Returns a transaction to transfer coin from one account to another (possibly new) one, with the
/// given arguments.
pub fn peer_to_peer_txn(
    sender: &Account,
    receiver: &Account,
    seq_num: u64,
    transfer_amount: u64,
) -> SignedTransaction {
    let args: Vec<TransactionArgument> = vec![
        TransactionArgument::Address(*receiver.address()),
        TransactionArgument::U64(transfer_amount),
        TransactionArgument::U8Vector(vec![]),
        TransactionArgument::U8Vector(vec![]),
    ];

    // get a SignedTransaction
    sender
        .transaction()
        .script(Script::new(
            LegacyStdlibScript::PeerToPeerWithMetadata
                .compiled_bytes()
                .into_vec(),
            vec![account_config::xus_tag()],
            args,
        ))
        .sequence_number(seq_num)
        .sign()
}

/// Returns a transaction to change the keys for the given account.
pub fn rotate_key_txn(sender: &Account, new_key_hash: Vec<u8>, seq_num: u64) -> SignedTransaction {
    let args = vec![TransactionArgument::U8Vector(new_key_hash)];
    sender
        .transaction()
        .script(Script::new(
            LegacyStdlibScript::RotateAuthenticationKey
                .compiled_bytes()
                .into_vec(),
            vec![],
            args,
        ))
        .sequence_number(seq_num)
        .sign()
}

/// Returns a transaction to change the keys for the given account.
pub fn raw_rotate_key_txn(sender: &Account, new_key_hash: Vec<u8>, seq_num: u64) -> RawTransaction {
    let args = vec![TransactionArgument::U8Vector(new_key_hash)];
    sender
        .transaction()
        .script(Script::new(
            LegacyStdlibScript::RotateAuthenticationKey
                .compiled_bytes()
                .into_vec(),
            vec![],
            args,
        ))
        .sequence_number(seq_num)
        .raw()
}

/// Returns a transaction to swap currencies between two accounts.
pub fn multi_agent_swap_txn(
    sender: &Account,
    secondary_signer: &Account,
    seq_num: u64,
    xus_amount: u64,
    xdx_amount: u64,
) -> SignedTransaction {
    let args: Vec<TransactionArgument> = vec![
        TransactionArgument::U64(xus_amount),
        TransactionArgument::U64(xdx_amount),
    ];

    // get a SignedTransaction
    sender
        .transaction()
        .secondary_signers(vec![secondary_signer.clone()])
        .script(Script::new(MULTI_AGENT_SWAP_SCRIPT.to_vec(), vec![], args))
        .sequence_number(seq_num)
        .sign_multi_agent()
}

/// Returns a multi-agent p2p transaction.
pub fn multi_agent_p2p_txn(
    payer: &Account,
    payee: &Account,
    seq_num: u64,
    amount: u64,
) -> SignedTransaction {
    // get a SignedTransaction
    payer
        .transaction()
        .secondary_signers(vec![payee.clone()])
        .payload(encode_peer_to_peer_by_signers_script_function(
            account_config::xus_tag(),
            amount,
            vec![],
        ))
        .sequence_number(seq_num)
        .sign_multi_agent()
}

/// Returns a transaction to mint coins from TC to DD to VASP.
pub fn multi_agent_mint_txn(
    tc_account: &Account,
    dd_account: &Account,
    vasp_account: &Account,
    seq_num: u64,
    amount: u64,
    tier_index: u64,
) -> SignedTransaction {
    let args: Vec<TransactionArgument> = vec![
        TransactionArgument::U64(amount),
        TransactionArgument::U64(tier_index),
    ];
    // get a SignedTransaction
    tc_account
        .transaction()
        .secondary_signers(vec![dd_account.clone(), vasp_account.clone()])
        .script(Script::new(
            MULTI_AGENT_MINT_SCRIPT.to_vec(),
            vec![account_config::xus_tag()],
            args,
        ))
        .sequence_number(seq_num)
        .sign_multi_agent()
}

/// Returns an unsigned raw transaction to swap currencies between two accounts.
pub fn raw_multi_agent_swap_txn(
    sender: &Account,
    secondary_signer: &Account,
    seq_num: u64,
    xus_amount: u64,
    xdx_amount: u64,
) -> RawTransaction {
    let args: Vec<TransactionArgument> = vec![
        TransactionArgument::U64(xus_amount),
        TransactionArgument::U64(xdx_amount),
    ];

    sender
        .transaction()
        .secondary_signers(vec![secondary_signer.clone()])
        .script(Script::new(MULTI_AGENT_SWAP_SCRIPT.to_vec(), vec![], args))
        .sequence_number(seq_num)
        .raw()
}

pub fn multi_agent_swap_script(xus_amount: u64, xdx_amount: u64) -> Script {
    let args: Vec<TransactionArgument> = vec![
        TransactionArgument::U64(xus_amount),
        TransactionArgument::U64(xdx_amount),
    ];
    Script::new(MULTI_AGENT_SWAP_SCRIPT.to_vec(), vec![], args)
}

pub fn multi_agent_p2p_script_function(amount: u64) -> TransactionPayload {
    encode_peer_to_peer_by_signers_script_function(account_config::xus_tag(), amount, vec![])
}

pub fn multi_agent_mint_script(mint_amount: u64, tier_index: u64) -> Script {
    let args: Vec<TransactionArgument> = vec![
        TransactionArgument::U64(mint_amount),
        TransactionArgument::U64(tier_index),
    ];
    Script::new(MULTI_AGENT_MINT_SCRIPT.to_vec(), vec![], args)
}