-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/octopus-network/octopus-app…
…chain-anchor into init-version
- Loading branch information
Showing
85 changed files
with
25,120 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
* @en | ||
* @riversyang | ||
* @hsxyl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,32 @@ | ||
.DS_Store | ||
.VSCodeCounter | ||
tmp/ | ||
|
||
# Generated by Cargo | ||
# will have compiled files and executables | ||
/target/ | ||
target/ | ||
out/ | ||
res/ | ||
|
||
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries | ||
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html | ||
Cargo.lock | ||
|
||
# These are backup files generated by rustfmt | ||
**/*.rs.bk | ||
|
||
node_modules/ | ||
neardev/ | ||
|
||
e2e-tests/nearkeys/shared-test/* | ||
!/e2e-tests/nearkeys/shared-test/test.near.json | ||
|
||
e2e-tests/nearkeys/testnet/* | ||
!/e2e-tests/nearkeys/testnet/e2e-test.testnet.json | ||
|
||
e2e-tests/nearkeys/local/* | ||
|
||
e2e-tests/nearkeys/sandbox/* | ||
|
||
# e2e-tests/nearkeys/shared-test-staging/* | ||
# !/e2e-tests/nearkeys/hared-test-staging/test.near.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"trailingComma": "es5", | ||
"tabWidth": 2, | ||
"semi": true, | ||
"singleQuote": true | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[workspace] | ||
members = [ | ||
"appchain-anchor", | ||
"mock-appchain-registry", | ||
"mock-oct-token", | ||
"mock-wrapped-appchain-token" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[package] | ||
name = "appchain-anchor" | ||
version = "1.3.1" | ||
authors = ["Octopus Network"] | ||
edition = "2018" | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[dependencies] | ||
beefy-light-client = { git = "https://github.com/octopus-network/beefy-light-client", tag = "v1.0.1" } | ||
near-sdk = "3.1.0" | ||
near-contract-standards = "3.1.0" | ||
hex = "0.4.2" | ||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } | ||
getrandom = { version = "0.2", features = ["custom"] } | ||
ed25519-dalek = { version = "1.0.1", features = ["alloc"] } | ||
|
||
[dev-dependencies] | ||
hex-literal = "0.3.1" | ||
near-sdk = "3.1.0" | ||
near-sdk-sim = "3.1.0" | ||
num-format = "0.4.0" | ||
secp256k1-test = { package = "secp256k1", version = "0.20.3", features = ["rand-std", "recovery"] } | ||
beefy-merkle-tree = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.12", features = ["keccak"], default-features = false } | ||
# remember to include related mock contracts | ||
mock-appchain-registry = { path = "../mock-appchain-registry" } | ||
mock-oct-token = { path = "../mock-oct-token" } | ||
wrapped-appchain-token = { git = "https://github.com/octopus-network/wrapped-appchain-token" } |
Oops, something went wrong.