All Downloads are FREE. Search and download functionalities are using the official Maven repository.

contracts.wallets.library-deployer.fc Maven / Gradle / Ivy

There is a newer version: 0.8.0
Show newest version
#pragma version =0.4.4;
#include "stdlib.fc";

() set_lib_code(cell code, int mode) impure asm "SETLIBCODE";

() deploy_lib() impure {
    set_lib_code(get_data(), 2);
    cell empty = begin_cell().end_cell();
    dump_stack();
    set_code(empty);
    set_data(empty);
}

() recv_internal() impure {
    deploy_lib();
}

() recv_external() impure {
    deploy_lib();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy