-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparse-abi.js
163 lines (128 loc) · 4.38 KB
/
parse-abi.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
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
import keccak256 from 'keccak256';
import {supportedTypesDict, typeToName, eventTableName, contractEventTableName} from './util.js'
export function parseEventAbi(abi) {
if (abi.anonymous) {
console.log('skipping abi anonymous')
return
}
if (abi.type !== 'event') {
console.warn('skipping abi for abi type ' + abi.type)
return
}
const types = []
const typesWithNames = []
const typesWithNamesIndexed = []
const argsUnpack = []
const argsJson = []
const columns = []
let counterTopic = 1
let counterData = 0
const abiName = abi.name
if (abi.inputs.length === 0) {
console.warn(`skipping abi ${abiName} for no inputs`) // todo allow no input abis?
return
}
// let prevInputIndexed
for (let i = 0; i < abi.inputs.length; i++) {
const input = abi.inputs[i]
const t = supportedTypesDict[input.type]
if (!t) {
// todo use raw hex value for unsupported type?
// console.warn(`skipping abi ${abiName} for unsupported input type ${input.type}`)
// console.warn(`skipping abi for unsupported input type ${input.type}`)
return
}
// if (counterData > 1) {
// // console.warn(`truncating abi ${abiName} for data having more than one input`)
// // console.warn(`truncating abi for data having more than one input ${JSON.stringify(abi)}`)
// break
// }
// if (i !== 0 && !prevInputIndexed && input.indexed) {
// console.warn(`indexed input ${JSON.stringify(input)} after non indexed in abi ${abiName}`)
// }
// prevInputIndexed = input.indexed
input.nameFromType = typeToName(input.type, i)
if(!input.name)
input.name = input.nameFromType
types.push(input.type)
columns.push(`${input.nameFromType} as ${input.name}`)
const args = []
if (input.indexed) {
args.push(2)
args.push(`topic${counterTopic}::text`)
typesWithNames.push(`${input.type}_${input.name}`)
typesWithNamesIndexed.push(`${input.type} indexed ${input.name}`)
counterTopic++
} else {
args.push(2 + counterData * 64)
args.push(`data::text`)
typesWithNames.push(`${input.type}_${input.name}_d`)
typesWithNamesIndexed.push(`${input.type} ${input.name}`)
counterData++
}
argsUnpack.push(`${t.function}(${args.concat(t.args).join()}) "${input.name}"`)
argsJson.push(`'${input.name}',${t.function}(${args.concat(t.args).join()})`)
}
const signature_typed = `${abiName}(${types.join()})`
const signature_named = `${abiName}_${typesWithNames.join('_')}`
const signature_indexed = `${abiName}(${typesWithNamesIndexed.join(',')})`
const table_name = eventTableName(signature_named)
const hash = '0x' + keccak256(signature_typed).toString('hex')
const unpack = `${argsUnpack.join()}`
const json = `object(${argsJson.join()})`
return {
name: abiName,
hash: hash,
signature: signature_indexed,
canonical: signature_typed,
table_name: table_name,
unpack: unpack,
json: json,
// columns: columns.join()
}
}
export function parseEventAbiWithLabels(d, labels, contracts, abis, events, contractEvents) {
if (!d.abi) {
console.warn(`skipping record for missing abi in ${JSON.stringify(d)}`)
return
}
if (!d.address) {
console.warn(`skipping record for missing address in ${JSON.stringify(d)}`)
return
}
if (!d.namespace) {
console.warn(`skipping record for missing namespace in ${JSON.stringify(d)}`)
return
}
if (!d.name) {
console.warn(`skipping record for missing name in ${JSON.stringify(d)}`)
return
}
if (d.address.length !== 42) {
console.warn(`skipping record ${d.address} for address length ${d.address.length}`)
return
}
labels.add(d.namespace)
const address = d.address.replace('\\', '0')
contracts.set(address, {
label: d.namespace,
name: d.name
})
const dabis = d.abi.filter(o => o.type === 'event' && !o.anonymous && o.inputs && o.inputs.length > 0)
for (const a of dabis) {
const abi = parseEventAbi(a)
if (abi) {
abis.set(abi.signature, abi)
events.add(JSON.stringify({
contract_address: address,
abi_signature: abi.signature,
}))
contractEvents.set(contractEventTableName(d.namespace, d.name, abi.name), {
contract_label: d.namespace,
contract_name: d.name,
abi_signature: abi.signature,
abi_table_name: abi.table_name,
})
}
}
}