Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AmbireTech/adex-explorer
A simple UI for exploring AdEx campaigns/channels
https://github.com/AmbireTech/adex-explorer
adex advertising blockchain explorer micropayments rust seed-rs webassembly
Last synced: 3 months ago
JSON representation
A simple UI for exploring AdEx campaigns/channels
- Host: GitHub
- URL: https://github.com/AmbireTech/adex-explorer
- Owner: AmbireTech
- Created: 2019-03-31T10:12:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-06-06T19:01:42.000Z (over 2 years ago)
- Last Synced: 2024-05-19T05:37:06.835Z (6 months ago)
- Topics: adex, advertising, blockchain, explorer, micropayments, rust, seed-rs, webassembly
- Language: Rust
- Homepage: https://explorer.adex.network/
- Size: 2.55 MB
- Stars: 3
- Watchers: 5
- Forks: 3
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-seed-rs - AdEx Explorer - Shows curated information about the payment channel network of the AdEx advertising protocol. (Projects Using Seed)
README
# AdEx Explorer
**To get started:**
- Clone this repo: `git clone https://github.com/AdExNetwork/adex-explorer.git`- If you don't have Rust and cargo-make installed, [Download it](https://www.rust-lang.org/tools/install), and run the following commands:
`rustup update`
`rustup target add wasm32-unknown-unknown`
`cargo install --force cargo-make`
`curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh`
Run `cargo make all` or `cargo make watch` in a terminal to build the app, and `cargo make serve` to start a dev server
on `127.0.0.0:8000`.## publish to github pages
```
git checkout gh-pages
git merge master
cargo make create_wasm_release
wasm-opt -Os -o pkg/package_bg.wasm pkg/package_bg.wasm
git commit -am 'new release'
git push
```