mirror of
https://github.com/FlipsideCrypto/optimism-models.git
synced 2026-02-06 15:46:43 +00:00
7 lines
252 B
SQL
7 lines
252 B
SQL
{% macro create_js_hex_to_int() %}
|
|
CREATE
|
|
OR REPLACE FUNCTION {{ target.schema }}.js_hex_to_int (
|
|
s STRING
|
|
) returns DOUBLE LANGUAGE javascript AS 'if (S !== null) { yourNumber = parseInt(S, 16); } return yourNumber'
|
|
{% endmacro %}
|