-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathcontractResult.js
64 lines (58 loc) · 1.94 KB
/
contractResult.js
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-2025 Hedera Hashgraph, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import _ from 'lodash';
class ContractResult {
/**
* Parses contract_result table columns into object
*/
constructor(contractResult) {
Object.assign(
this,
_.mapKeys(contractResult, (v, k) => _.camelCase(k))
);
}
static tableAlias = 'cr';
static tableName = 'contract_result';
static AMOUNT = 'amount';
static BLOOM = 'bloom';
static CALL_RESULT = 'call_result';
static CONSENSUS_TIMESTAMP = 'consensus_timestamp';
static CONTRACT_ID = 'contract_id';
static CREATED_CONTRACT_IDS = 'created_contract_ids';
static ERROR_MESSAGE = 'error_message';
static FAILED_INITCODE = 'failed_initcode';
static FUNCTION_PARAMETERS = 'function_parameters';
static FUNCTION_RESULT = 'function_result';
static GAS_CONSUMED = 'gas_consumed';
static GAS_LIMIT = 'gas_limit';
static GAS_USED = 'gas_used';
static PAYER_ACCOUNT_ID = 'payer_account_id';
static SENDER_ID = 'sender_id';
static TRANSACTION_HASH = 'transaction_hash';
static TRANSACTION_INDEX = 'transaction_index';
static TRANSACTION_NONCE = 'transaction_nonce';
static TRANSACTION_RESULT = 'transaction_result';
/**
* Gets full column name with table alias prepended.
*
* @param {string} columnName
* @private
*/
static getFullName(columnName) {
return `${this.tableAlias}.${columnName}`;
}
}
export default ContractResult;