# Generating the ABI Bindings To generate them, we used the following command: ```bash bindgen --use-core \ --allowlist-function '[A-Z][A-Z_]+' \ --allowlist-type '[A-Z][A-Z_]+' \ --allowlist-var '[A-Z][A-Z_]+' \ --blocklist-type '_.*' \ --ctypes-prefix cty wrapper.h ``` with the following `wrapper.h`: ```c #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include ```