Type Alias SerializedResolvedOutput
SerializedResolvedOutput: { 
    output: 
        | { 
            amount: string; 
            assetId: string; 
            to: string; 
            type: "ChangeOutput"; 
        }
        | { 
            amount: string; 
            assetId: string; 
            to: string; 
            type: "CoinOutput"; 
        }
        | { 
            contract: string; 
            stateRoot: string; 
            type: "ContractCreated"; 
        }
        | { 
            balanceRoot: string; 
            inputIndex: string; 
            stateRoot: string; 
            type: "ContractOutput"; 
        }
        | { 
            amount: string; 
            assetId: string; 
            to: string; 
            type: "VariableOutput"; 
        }; 
    utxoId: string; 
}