Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
46535e8
Merge pull request #1771 from KomodoPlatform/dev
ca333 Apr 28, 2023
371595d
Merge pull request #1804 from KomodoPlatform/dev
shamardy May 22, 2023
1d8bebd
Merge pull request #1844 from KomodoPlatform/dev
shamardy Jun 8, 2023
ef89614
Merge pull request #1871 from KomodoPlatform/dev
shamardy Jul 24, 2023
79f6205
Merge pull request #1936 from KomodoPlatform/dev
shamardy Sep 8, 2023
b0fd99e
Merge pull request #1968 from KomodoPlatform/dev
shamardy Dec 18, 2023
35e9239
Merge pull request #2043 from KomodoPlatform/dev
shamardy Aug 1, 2024
bb749a9
Merge pull request #2197 from KomodoPlatform/dev
shamardy Nov 22, 2024
8206c6e
chore(release): v2.3.0-beta (#2284)
shamardy Dec 19, 2024
9c485c3
feat(p2p): ensure time synchronization in the network (#2255)
onur-ozkan Dec 23, 2024
60ff162
chore(p2p): follow-up nits (#2302)
onur-ozkan Dec 24, 2024
4a40241
chore(ci): Update docker build for wasm (#2294)
smk762 Dec 24, 2024
fc02757
fix(wasm): add test-ext-api feature to mm2_main and mm2_bin_lib tomls…
laruh Dec 25, 2024
0cff4aa
improvement(CI): switch to proper rust caching (#2303)
onur-ozkan Dec 26, 2024
83659c9
chore(eth-websocket): remove some unnecessary wrappers (#2291)
mariocynicys Dec 26, 2024
cd7e6e8
replace broken rpc link (#2305)
onur-ozkan Dec 26, 2024
e1ef0e1
add `wasm` feature on WASM for timed-map (#2306)
onur-ozkan Dec 26, 2024
5c7de8d
chore(CI): unlock wasm-pack version (#2307)
onur-ozkan Dec 26, 2024
2037056
update Cargo.lock (#2308)
laruh Dec 27, 2024
e9f0bb4
fix mm2_p2p dev build (#2311)
Jan 6, 2025
9d83ec0
test(P2P): add test for peer time sync validation (#2304)
Jan 7, 2025
51fe292
chore(CI): validate Cargo lock file (#2309)
laruh Jan 7, 2025
281098f
feat(tendermint): validators RPC (#2310)
onur-ozkan Jan 8, 2025
61b72cf
fix(legacy_swap): check for existing maker/taker payment before timeo…
shamardy Jan 9, 2025
39e619e
fix(crypto): allow non bip39 mnemonics storage (#2312)
borngraced Jan 9, 2025
3bdc1f0
refactor(build script): rewrite the main build script (#2319)
onur-ozkan Jan 21, 2025
33427cc
chore(dep-bump): libp2p (#2326)
onur-ozkan Jan 22, 2025
9e65e7a
fix(mem-leak): `running_swap` never shrinks (#2301)
mariocynicys Jan 22, 2025
fc3964a
chore(deps): `timed-map` migration (#2247)
shamardy Jan 23, 2025
59154bd
feat(tendermint): staking/delegation (#2322)
onur-ozkan Jan 27, 2025
aba22e2
fix(ARRR): store unconfirmed change output (#2276)
borngraced Jan 28, 2025
bf63104
fix(hash-types): remove panic, enforce fixed-size arrays (#2279)
borngraced Feb 3, 2025
e728705
feat(event-streaming): API-driven subscription management (#2172)
mariocynicys Feb 6, 2025
b105c30
fix(utxo-withdraw): get hw ctx only when `PrivKeyPolicy` is trezor (#…
shamardy Feb 7, 2025
d4537e3
feat(tendermint): unstaking/undelegation (#2330)
onur-ozkan Feb 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM docker.io/debian:10

MAINTAINER Onur Özkan <onur@komodoplatform.com>
LABEL authors="Onur Özkan <onur@komodoplatform.com>"

RUN apt-get update -y

Expand All @@ -11,6 +11,7 @@ RUN apt-get install -y \
curl \
wget \
unzip \
libudev-dev \
gnupg

RUN ln -s /usr/bin/python3 /bin/python
Expand Down Expand Up @@ -49,8 +50,9 @@ RUN apt-get install -y \
docker-buildx-plugin

RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --profile minimal --default-toolchain nightly-2023-06-01 -y

RUN wget https://github.com/protocolbuffers/protobuf/releases/download/v3.20.1/protoc-3.20.1-linux-x86_64.zip
RUN unzip protoc-3.20.1-linux-x86_64.zip && mv ./include/google /usr/include/google

ENV PATH="/root/.cargo/bin:$PATH"
# TODO: Lock wasm-pack version
RUN curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | bash -s -- -y
RUN wget https://github.com/protocolbuffers/protobuf/releases/download/v25.3/protoc-25.3-linux-x86_64.zip
RUN unzip protoc-25.3-linux-x86_64.zip && mv ./include/google /usr/include/google

1 change: 0 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,4 @@ cmake-build-debug
/wasm-build.log

# Opt out from history in order to speed the `COPY .` up.
# Note that we should create and/or update the MM_VERSION file when using `COPY .` to build a custom version.
/.git
10 changes: 10 additions & 0 deletions .github/actions/build-cache/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: 'Set up build cache'
description: 'Sets up caching for KDF builds'
runs:
using: 'composite'
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up rust-cache
uses: Swatinem/rust-cache@v2
20 changes: 0 additions & 20 deletions .github/actions/cargo-cache/action.yml

This file was deleted.

Loading