private generateUnlockScriptsForDataTx(privateKey: PrivateKey, initiator: Address, witness: string, actions: Array<DataAction>): string {
        if (!privateKey) return null;
        let hashContent = this.getDataTxHashContent(initiator, witness, actions);
        return this.generateUnlockScriptsForTx(privateKey, hashContent);
    }