Skip to content

Commit

Permalink
Wrap RET Addresses (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
CyonAlexRDX authored Feb 21, 2024
1 parent dd4eda6 commit eb0bc7d
Show file tree
Hide file tree
Showing 50 changed files with 3,146 additions and 12,675 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Attention! This is the HEART of iOS, ignoring it leads to better
# PR since less noisy Lines of Code change delta, and smaller git
# history. And we CAN ignore it because:
# CD will add and commit it and tag that commit and push it to GH releases,
# so the file is updated and included in releases, so will work with SPM.
# And locally, when we run `./scripts/ios/build-sargon.sh` the file gets
# updated to something runnable and we can run locally... So we never need
# this file part of git history.
apple/Sources/UniFFI/Sargon.swift

/target
tarpaulin-report.html
.vscode
Expand Down
23 changes: 0 additions & 23 deletions BuildProcess.md

This file was deleted.

9 changes: 6 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ serde_repr = "0.1.17"
strum = { version = "0.25.0", features = ["derive"] }
strum_macros = { version = "0.26.1" }

# 587d5988cd4ca3c5193ddf37027ff4e4ecd637dc is the Scrypto commit that RET 9dc3deeb3299b4f4c255f36bb3d504681379ad5a uses
# 587d5988cd4ca3c5193ddf37027ff4e4ecd637dc is the Scrypto commit that RET e0e79548e71066d7569f8871c5b002fd5805d9d5 uses
radix-engine-common = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "587d5988cd4ca3c5193ddf37027ff4e4ecd637dc", features = [
"serde",
] }
radix-engine-interface = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "587d5988cd4ca3c5193ddf37027ff4e4ecd637dc", features = [
"std",
] }
radix-engine-toolkit-json = { git = "https://github.com/radixdlt/radix-engine-toolkit", rev = "9dc3deeb3299b4f4c255f36bb3d504681379ad5a" }
radix-engine-toolkit = { git = "https://github.com/radixdlt/radix-engine-toolkit", rev = "9dc3deeb3299b4f4c255f36bb3d504681379ad5a" }
radix-engine-toolkit-json = { git = "https://github.com/radixdlt/radix-engine-toolkit", rev = "e0e79548e71066d7569f8871c5b002fd5805d9d5" }
radix-engine-toolkit = { git = "https://github.com/radixdlt/radix-engine-toolkit", rev = "e0e79548e71066d7569f8871c5b002fd5805d9d5" }
enum-iterator = "1.4.1"
bip32 = "0.5.1" # only need Secp256k1, to do validation of PublicKey
ed25519-dalek = "1.0.1"
Expand All @@ -69,6 +69,7 @@ time-util = { version = "0.3.4", features = ["chrono"] }
assert-json-diff = "2.0.2"
url = { version = "2.5.0", features = ["serde"] }
num-format = "0.4.4"
paste = "1.0.14"

[build-dependencies]
uniffi = { version = "0.26.0", features = ["build"] }
Expand Down
3 changes: 2 additions & 1 deletion _typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ extend-exclude = [

[default.extend-identifiers]
inout = "inout"
pool_tdx_2_1c4ml86h8lvfk7jma0jy0vksh8srcxhmtax8nd3aur29qtd2k2wmlzk = "pool_tdx_2_1c4ml86h8lvfk7jma0jy0vksh8srcxhmtax8nd3aur29qtd2k2wmlzk"

[default.extend-words]
inout = "inout"
inout = "inout"
Loading

0 comments on commit eb0bc7d

Please sign in to comment.