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

feat: PoC of wasm sdk build #2405

Draft
wants to merge 30 commits into
base: v2.0-dev
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
9b94e8e
build: update wasm-bindgen-cli to 0.2.99
lklimek Dec 17, 2024
a27cdb3
build: bump wasm-bindgen-futures to 0.4.49
lklimek Dec 17, 2024
7475b09
chore(wasm-dpp): fix build
lklimek Dec 17, 2024
068a6fb
chore: dapi-grpc wasm feature
lklimek Dec 19, 2024
3f3f76d
chore: WIP
lklimek Dec 20, 2024
cc1b069
chore: some tests
lklimek Dec 20, 2024
7243de5
chore: experiments
shumkov Jan 2, 2025
c833fb0
chore: fix build issues
lklimek Jan 2, 2025
815a364
feat(wasm-sdk): wasm_channel working on browser
lklimek Jan 2, 2025
aa9ecf8
feat: fetch identity in browser
lklimek Jan 3, 2025
1d3fe75
chore: update quorum keys
lklimek Jan 6, 2025
f6df953
chore: demo fetching contract and identity
shumkov Jan 7, 2025
971c7d2
Merge branch 'v1.8-dev' into feat/wasm-dapi-sdk-client
shumkov Jan 7, 2025
4567c60
chore(wasm): expose more code as bindings
lklimek Jan 8, 2025
0a34d38
deps: rs-tenderdash abci from revision
lklimek Jan 8, 2025
d75387b
Merge remote-tracking branch 'origin/feat/wasm-dapi-sdk-client' into …
shumkov Jan 13, 2025
0417b33
build(dpp): add optimization flags to dpp wasm build script
shumkov Jan 13, 2025
d7c1ebf
deps: change rs-tenderdash-abci version
lklimek Jan 13, 2025
e243d9e
chore: fix build
lklimek Jan 13, 2025
eb29ae9
Merge remote-tracking branch 'origin/feat/wasm-dapi-sdk-client' into …
lklimek Jan 13, 2025
1471068
refactor: replace wasm feature with target_arch
lklimek Jan 13, 2025
fbf6309
chore: remove wasm feature, continued
lklimek Jan 13, 2025
4d4c6a0
chore: replace deprecated FromMilis/ToMilis
lklimek Jan 13, 2025
9df8371
chore(drive-abci): fix build
lklimek Jan 13, 2025
6cb9d19
chore: fix rs-dapi-client build
lklimek Jan 13, 2025
e315a77
Merge remote-tracking branch 'origin/v1.8-dev' into feat/wasm-sdk-poc2
lklimek Jan 13, 2025
f594438
chore: exclude wasm-sdk from cargo.toml
lklimek Jan 13, 2025
cdccee5
chore(drive-abci): fix build and tests
lklimek Jan 13, 2025
96899b5
chore(dpp): fix dpp build with no features
lklimek Jan 13, 2025
5147a41
chore: minor refactor
lklimek Jan 13, 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
3 changes: 3 additions & 0 deletions .cargo/config-release.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ rustflags = ["-C", "target-feature=-crt-static"]

[target.aarch64-unknown-linux-gnu]
linker = "aarch64-linux-gnu-gcc"

[target.wasm32-unknown-unknown]
rustflags = ['--cfg', 'getrandom_backend="wasm_js"']
3 changes: 3 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@ rustflags = ["-C", "target-feature=-crt-static", "--cfg", "tokio_unstable"]
[target.aarch64-unknown-linux-gnu]
linker = "aarch64-linux-gnu-gcc"

[target.wasm32-unknown-unknown]
rustflags = ['--cfg', 'getrandom_backend="wasm_js"']

[build]
rustflags = ["--cfg", "tokio_unstable"]
Loading
Loading