View TxMojos.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import os | |
import sys | |
import sqlite3 | |
import pathlib | |
import random | |
from chia.consensus.default_constants import DEFAULT_CONSTANTS as constants | |
from blspy import AugSchemeMPL | |
from chia.types.coin_spend import CoinSpend | |
from chia.types.condition_opcodes import ConditionOpcode |
View createmojos.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
import os | |
import asyncio | |
import math | |
import sys | |
import sqlite3 | |
import traceback | |
from chia.cmds.wallet_funcs import execute_with_wallet | |
from chia.rpc.full_node_rpc_client import FullNodeRpcClient |