ckb-script 0.117.0

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

int main() {
  uint64_t length = 5;
  if (ckb_set_content((uint8_t *)"hello", &length) != 0) {
    return 1;
  }
  if (length != 0) {
    return 1;
  }
  return 0;
}