Skip to content

Commit

Permalink
Merge branch 'main' into toufeeq/tokenomics
Browse files Browse the repository at this point in the history
  • Loading branch information
ToufeeqP committed Oct 19, 2023
2 parents 579b866 + ad898ee commit df0dbbc
Show file tree
Hide file tree
Showing 68 changed files with 1,159 additions and 742 deletions.
1 change: 0 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@ target
.github
.maintain
misc
fuzzing
avail-subxt
tests
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Please add the labels corresponding to the type of changes your PR introduces:

## Checklist
- [ ] I have performed a self-review of my own code.
- [ ] The tests pass succesfully with `cargo test`.
- [ ] The tests pass successfully with `cargo test`.
- [ ] The code was formatted with `cargo fmt`.
- [ ] The code compiles with no new warnings with `cargo build --release` and `cargo build --release --features runtime-benchmarks`.
- [ ] The code has no new warnings when using `cargo clippy`.
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion SECURITY.md → .github/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ If you discover any vulnerabilities in **Avail Technology**, please follow these

2. **Describe the Vulnerability**: Provide a detailed description of the vulnerability. Include steps to reproduce it if possible. If you have a fix, please link it in your message.

3. **Wait for Evaluation**: Our team will evaluate the vulnerability and determine the appropriate course of action. We will kepp you informed and credit you in any public report if you wish. **Please avoid public disclosure** of the vulnerability until we release a fix or provide specific guidance.
3. **Wait for Evaluation**: Our team will evaluate the vulnerability and determine the appropriate course of action. We will keep you informed and credit you in any public report if you wish. **Please avoid public disclosure** of the vulnerability until we release a fix or provide specific guidance.

## Commitment to Security

Expand Down
Binary file added .github/img/terminal.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 0 additions & 11 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,17 +176,6 @@ jobs:
- name: Display SCCache Stats
run: ${{ env.SCCACHE_BIN }} --show-stats

- name: Generate test code coverage report
run: |
df -h
cargo +stable install --force grcov
grcov . -s . --binary-path ./target/release/ -t lcov --branch --ignore-not-existing -o lcov.info
- name: Upload test code coverage report to codecov.io
uses: codecov/codecov-action@v2
with:
files: lcov.info

- name: Cleanup
run: find . -name \*.profraw -type f -exec rm -f {} +

Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ target
.DS_Store
node_modules
dist
fuzzing/testing/out
tests/rust_scripts/target
.vscode
output
53 changes: 0 additions & 53 deletions CHANGELOG.md

This file was deleted.

76 changes: 68 additions & 8 deletions Cargo.lock

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

16 changes: 9 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ frame-system-rpc-runtime-api = { path = "pallets/system/rpc/runtime-api" }
frame-system-benchmarking = { path = "pallets/system/benchmarking" }

# DA Primitives
avail-core = { version = "0.5", git = "https://github.com/availproject/avail-core", branch = "main" }
kate = { version = "0.8", git = "https://github.com/availproject/avail-core", branch = "main" }
kate-recovery = { version = "0.9", git = "https://github.com/availproject/avail-core", branch = "main" }
avail-core = { version = "0.5", git = "https://github.com/availproject/avail-core", tag = "v1.7.1" }
kate = { version = "0.8", git = "https://github.com/availproject/avail-core", tag = "v1.7.1" }
kate-recovery = { version = "0.9", git = "https://github.com/availproject/avail-core", tag = "v1.7.1" }

# Nomad
nomad-signature = { version = "0.1", git = "https://github.com/availproject/avail-core", branch = "main" }
nomad-merkle = { version = "0.1", git = "https://github.com/availproject/avail-core", branch = "main" }
nomad-base = { version = "0.1", git = "https://github.com/availproject/avail-core", branch = "main" }
nomad-core = { version = "0.1", git = "https://github.com/availproject/avail-core", branch = "main" }
nomad-signature = { version = "0.1", git = "https://github.com/availproject/avail-core", tag = "v1.7.1" }
nomad-merkle = { version = "0.1", git = "https://github.com/availproject/avail-core", tag = "v1.7.1" }
nomad-base = { version = "0.1", git = "https://github.com/availproject/avail-core", tag = "v1.7.1" }
nomad-core = { version = "0.1", git = "https://github.com/availproject/avail-core", tag = "v1.7.1" }

# Other stuff
uint = { git = "https://github.com/paritytech/parity-common.git", tag = "rlp-v0.5.2" }
Expand All @@ -48,6 +48,7 @@ sp-io = { git = "https://github.com/paritytech/substrate.git", branch = "polkado
sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
sc-executor = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
sc-service = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
sc-storage-monitor = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
sc-telemetry = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
sc-keystore = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
sc-transaction-pool = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
Expand All @@ -73,6 +74,7 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate.git", bra
sp-transaction-storage-proof = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
sp-keystore = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
sp-state-machine = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
sc-offchain = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
sp-statement-store = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
sp-trie = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
sp-externalities = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
Expand Down
Loading

0 comments on commit df0dbbc

Please sign in to comment.