thru-core 0.2.20

Shared implementation for the Thru CLI
1
2
3
4
5
6
7
8
9
10
11
/* {{PROJECT_NAME}} - Thru Program
 * A simple hello world program for the Thru blockchain
 */

#include <thru-sdk/c/tn_sdk.h>

TSDK_ENTRYPOINT_FN void
start( void const * instruction_data    TSDK_PARAM_UNUSED,
       ulong        instruction_data_sz TSDK_PARAM_UNUSED ) {
  tsdk_return( 0UL );
}