-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPARSE_ABI_EVENTS_UDF.sql
81 lines (77 loc) · 2.14 KB
/
PARSE_ABI_EVENTS_UDF.sql
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
CREATE OR REPLACE FUNCTION `blocktrekker.udfs.PARSE_ABI_EVENTS`(abi STRING, dune_name STRING) RETURNS ARRAY<STRUCT<name STRING, anonymous BOOL, hash_id STRING, inputs STRING, types STRING>> LANGUAGE js
OPTIONS (library=["gs://blockchain-etl-bigquery/ethers.js"]) AS R"""
abi = JSON.parse(abi);
res = [];
const typeMap = {
"uint32[]": "INT64",
"uint16[]": "INT64",
"uint8[]": "INT64",
"uint64[]": "INT64",
"uint128[]": "INT64",
"uint256[]": "BIGNUMERIC",
"bool[]": "BOOL",
"address[]": "STRING",
"string[]": "STRING",
"bytes[]": "BYTES",
"bytes4": "BYTES",
"bytes32": "BYTES",
"uint32": "INT64",
"uint16": "INT64",
"uint8": "INT64",
"uint64": "INT64",
"unit80": "INT64",
"uint112": "INT64",
"uint128": "INT64",
"uint168": "BIGNUMERIC",
"uint256": "BIGNUMERIC",
"BIGNUMERIC": "BIGNUMERIC",
"bool": "BOOL",
"address": "STRING",
"STRING": "STRING",
"string": "STRING",
"bytes": "BYTES"
};
const nameMap = {
"from": "from_address",
"to": "to_address",
"limit": "_limit",
"all": "_all"
};
abi.forEach(function(x){
tuple = [];
tuple['name'] = dune_name + "_evt_" + x.name;
tuple['anonymous'] = x.anonymous;
if (x.type != 'event') {
return;
}
argtypes = [];
argpairs = [];
let count = 1;
x.inputs.forEach(function(y){
pair = {};
argtypes.push(y.type);
if (y.name in nameMap) {
pair.name = nameMap[y.name];
} else if (y.name == "") {
pair.name = `input_${count}`;
} else {
pair.name = y.name ? y.name : `input_${count}`;
}
if (y.type in typeMap) {
pair.type = typeMap[y.type];
} else {
if (y.type.slice(0, 4).toLowerCase() === "uint") {
pair.type = "BIGNUMERIC";
} else {
pair.type = "STRING";
}
}
argpairs.push(JSON.stringify(pair));
count = count + 1;
});
tuple['inputs'] = argpairs.join(",");
tuple['hash_id'] = ethers.utils.keccak256(ethers.utils.toUtf8Bytes(tuple['name'] + '(' + argtypes.join(',') + ')'));
res.push(tuple);
});
return res;
""";