Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): v1.0.7-beta #1936

Merged
merged 17 commits into from
Sep 8, 2023
Merged

chore(release): v1.0.7-beta #1936

merged 17 commits into from
Sep 8, 2023

Commits on Jul 26, 2023

  1. feat(adex-cli): Set config file permissions to 660 in unix (#1913)

    The file permissions of the cli config file is now set to 660 to disallow reading by other users.
    rozhkovdmitrii authored Jul 26, 2023
    Configuration menu
    Copy the full SHA
    d4d5add View commit details
    Browse the repository at this point in the history
  2. feat(adex-cli): activation request types (#1912)

    Activation types in cli have been introduced by this commit to ensure that if a malicious person substituted them in the activation scheme file it would not lead to any unexpected action.
    rozhkovdmitrii authored Jul 26, 2023
    Configuration menu
    Copy the full SHA
    80f7e6f View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2023

  1. fix(posv): fix missing n_time in posv transactions (#1925)

    This commit fixes PoSV coins withdrawal issue. The issue was a missing n_time field in the generated transaction. The fix now correctly considers when n_time is required, and the rawtransaction can be broadcasted.
    reddink authored Aug 2, 2023
    Configuration menu
    Copy the full SHA
    7b29553 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e333635 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    867a01a View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2023

  1. Configuration menu
    Copy the full SHA
    54dce3c View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2023

  1. fix(nft): add log_index to history table and use in PK (#1926)

    - This commmit fixes transactions that transfer multiple NFT tokens in db. These transactions cause errors when adding due to the db constraint on tx hash uniqueness. To solve this, the PR uses log_index as part of the transfers history table primary key.
    - nft_tx_history table is now called nft_transfer_history and tx/txs are renamed to transfer/transfers throughout the NFT code since what's added/retrieved from DB is NFT transfers not transactions (Multiple NFT transfers can be in one transaction). By renaming the table, there are no need for db migrations due to the addition of log_index column. Although NFT is not used in production yet, if anybody used it, transfers will be re-fetched and saved to the new DB table when using the related API methods.
    shamardy authored Aug 7, 2023
    Configuration menu
    Copy the full SHA
    92372cb View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2023

  1. Configuration menu
    Copy the full SHA
    3cbb54d View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2023

  1. feat(trading-proto-upgrade): UTXO PoC + State machine refactor (#1927)

    SwapOpsV2 trait was added containing methods of the new protocol (WIP).
    SwapOpsV2 was implemented for UtxoStandardCoin.
    Dockerized integration tests added, sending and spending/refunding "dex fee + premium" UTXO.
    State machine was refactored as a preparation step for StorableStateMachine pattern extension.
    
    ---------
    
    Co-authored-by: Artem Vitae <[email protected]>
    artemii235 and Artem Vitae authored Aug 23, 2023
    Configuration menu
    Copy the full SHA
    483f04c View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2023

  1. fix(cli): use the updated activation scheme (#1938)

    Activation scheme was changed hence related data types have to be fit for it.
    rozhkovdmitrii authored Aug 24, 2023
    Configuration menu
    Copy the full SHA
    9d5ab11 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    410eda2 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2023

  1. Configuration menu
    Copy the full SHA
    e4b091b View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2023

  1. fix(hd-wallet): enable/withdraw using any account'/change/address_ind…

    …ex (#1933)
    
    Global enabling of an account'/change/address_index path for all coins using hd_account_id config parameter is replaced by enable_hd which is a bool that defaults to false.
    
    path_to_address parameter is added to coins activation requests to set the default account'/change/address_index path that will be used for swaps. If not provided, the default will be 0'/0/0.
    
    HD withdrawal from any account'/change/address_index path is implemented for UTXO, EVM and Tendermint coins for now, other coins will be added later.
    shamardy authored Aug 31, 2023
    Configuration menu
    Copy the full SHA
    51c44f6 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2023

  1. Configuration menu
    Copy the full SHA
    9a71744 View commit details
    Browse the repository at this point in the history
  2. chore(mm2 binary): remove debug info from release binary

    Binary report comparison from old to new mm2 builds shows reduction in file size after this commit.
    
    ---------------------
    Signed-off-by: onur-ozkan <[email protected]>
    onur-ozkan authored Sep 4, 2023
    Configuration menu
    Copy the full SHA
    96a53ce View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2023

  1. feat(zcoin): allow ARRR to sync using a start date (#1922)

    Improve ARRR synchronization based on a user-selected date. This feature will enable users to specify a specific date as the starting point for synchronization as a substitute for the checkpoint block from config or syncing from the first block.
    
    ---------
    
    Signed-off-by: borngraced <[email protected]>
    borngraced authored Sep 7, 2023
    Configuration menu
    Copy the full SHA
    1538564 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1b10a06 View commit details
    Browse the repository at this point in the history