-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstdlib_demo.cpp
55 lines (48 loc) · 1.5 KB
/
stdlib_demo.cpp
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
// Copyright (c) The Diem Core Contributors
// SPDX-License-Identifier: Apache-2.0
#include "diem_framework.hpp"
#include "diem_types.hpp"
#include <memory>
using namespace diem_framework;
using namespace diem_types;
void demo_p2p_script() {
auto token = TypeTag{TypeTag::Struct{StructTag{
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1},
{"XDX"},
{"XDX"},
{},
}}};
auto payee = AccountAddress{0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22,
0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22};
uint64_t amount = 1234567;
auto script =
encode_peer_to_peer_with_metadata_script(token, payee, amount, {}, {});
auto output = script.bcsSerialize();
for (uint8_t o : output) {
printf("%d ", o);
};
printf("\n");
}
void demo_p2p_script_function() {
auto token = TypeTag{TypeTag::Struct{StructTag{
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1},
{"XDX"},
{"XDX"},
{},
}}};
auto payee = AccountAddress{0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22,
0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22};
uint64_t amount = 1234567;
auto payload =
encode_peer_to_peer_with_metadata_script_function(token, payee, amount, {}, {});
auto output = payload.bcsSerialize();
for (uint8_t o : output) {
printf("%d ", o);
};
printf("\n");
}
int main() {
demo_p2p_script();
demo_p2p_script_function();
return 0;
}