ckb-script 0.107.0

CKB component to run the type/lock scripts.
Documentation
1
2
3
4
5
6
7
8
9
10
#include "ckb_syscalls.h"
#include <stdio.h>

int main() {
    char message[2048];
    sprintf(message, "debugger print utf-8 string");
    ckb_debug(message);

    return CKB_SUCCESS;
}