This repository has been archived by the owner on Oct 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSRTL.h
64 lines (51 loc) · 2.12 KB
/
SRTL.h
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
/*
* Copyright (C) 2019 Zilliqa
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include <functional>
#include <memory>
#include <optional>
#include <string>
#include <vector>
namespace ScillaRTL {
class ScillaExecImpl;
namespace ScillaTypes {
struct Typ;
}
using ByteVec = std::vector<uint8_t>;
const auto Schnorr_Pubkey_Len = 33;
const auto Schnorr_Signature_Len = 64;
const auto Ecdsa_Pubkey_Len = 33;
const auto Ecdsa_Signature_Len = 64;
const auto Ecdsa_Pubkey_Uncompressed_Len = 65;
const auto Zilliqa_Address_Len = 20;
const uint64_t GasScaleFactor = 8;
// Fetch the type of a remote field, if it exists.
std::optional<std::string> remoteFieldType(const ScillaExecImpl *SJ,
const std::string &Addr,
const std::string &FName);
// Is the given address a contract?
bool isContrAddr(const ScillaExecImpl *SJ, const std::string &Addr);
// Check if the given address has balance > 0 || nonce > 0
bool isUserAddr(const ScillaExecImpl *SJ, const std::string &Addr);
// Check that @Val is of type @Target. Asserts valueCompatible(Target, ParsedT).
// @ParsedT is the type specified in the JSON from which @Val is parsed.
// The dynamic typecheck itself is essentially ensuring that Addresses conform.
// Gas is charged only when specified.
bool dynamicTypecheck(const ScillaExecImpl *SJ, const ScillaTypes::Typ *Target,
const ScillaTypes::Typ *ParsedT, const void *Val,
bool ChargeGas);
} // namespace ScillaRTL