Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit92a46ff

Browse files
committed
readme
1 parent53f3b27 commit92a46ff

File tree

2 files changed

+43
-62
lines changed

2 files changed

+43
-62
lines changed

‎README.md‎

Lines changed: 16 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -21,30 +21,26 @@
2121

2222
##Table of Contents
2323
1.[Core Concepts](#core-concepts)
24-
2.[Getting Started](#getting-started)
25-
1.[Prerequisites](#prerequisites)
26-
2.[Setup Rust Toolchain](#setup-rust-toolchain)
27-
3.[Setup`ant` Wallet](#setup-ant-wallet)
28-
3.[Installation](#installation)
29-
4.[Quick start demo](#quick-start-demo)
30-
5.[Command-Line Interface (CLI)](#command-line-interface-cli)
24+
2.[Installation](#installation)
25+
3.[Quick start demo](#quick-start-demo)
26+
4.[Command-Line Interface (CLI)](#command-line-interface-cli)
3127
1.[CLI Usage Examples](#cli-usage-examples)
3228
2.[Basic Usage](#basic-usage)
3329
1.[Store/fetch private data](#storefetch-private-data)
3430
2.[Store/fetch public data](#storefetch-public-data)
3531
3.[Pipes and redirects](#pipes-and-redirects)
3632
4.[Stats and debug](#stats-and-debug)
3733
3.[Screenshots](#screenshots)
38-
6.[Library Usage](#library-usage)
34+
5.[Library Usage](#library-usage)
3935
1.[Fetching Public Data (Keyless Initialization)](#fetching-public-data-keyless-initialization)
40-
7.[Development and Testing](#development-and-testing)
36+
6.[Development and Testing](#development-and-testing)
4137
1.[Local Testnet Management (`scripts/manage_local_testnet.sh`)](#local-testnet-management-scriptsmanage_local_testnetsh)
4238
2.[Running Integration Tests (`scripts/run_tests_with_env.sh`)](#running-integration-tests-scriptsrun_tests_with_envsh)
43-
8.[Migration](#migration)
44-
9.[Architecture Overview](#architecture-overview)
45-
10.[Configuration](#configuration)
46-
11.[License](#license)
47-
12.[Contributing](#contributing)
39+
7.[Migration](#migration)
40+
8.[Architecture Overview](#architecture-overview)
41+
9.[Configuration](#configuration)
42+
10.[License](#license)
43+
11.[Contributing](#contributing)
4844

4945
##Core Concepts
5046

@@ -71,61 +67,19 @@
7167
- Text/Code viewer/editor
7268
- Universal video format support with real-time transcoding and streaming with ffmpeg
7369

74-
##Getting Started
75-
76-
###Prerequisites
77-
78-
* Rust Toolchain (latest stable recommended)
79-
*`ant` CLI configured with a wallet (see below)
80-
81-
###Setup Rust Toolchain
82-
83-
This will install rustup
84-
85-
```bash
86-
$> curl --proto'=https' --tlsv1.2 -sSf https://sh.rustup.rs| sh
87-
```
88-
89-
This will install the latest stable version of the Rust toolchain and cargo
90-
91-
```bash
92-
$> rustup install nightly
93-
```
94-
95-
###Setup`ant` Wallet
96-
97-
####If you just want to fetch public data, you can skip this section.
98-
99-
Before using`mutant` to actually store data, you need to have an`ant` wallet configured for the target network (Mainnet by default, or Devnet if using the`--local` flag). If you don't have`ant` installed, you can get it using[antup](https://github.com/maidsafe/antup):
100-
101-
```bash
102-
$> curl -sSf https://raw.githubusercontent.com/maidsafe/antup/main/install.sh| sh
103-
```
104-
105-
This will install the`ant` CLI and configure it for the Mainnet.
106-
107-
```bash
108-
$> antup client
109-
```
70+
##Installation
11071

111-
Once`ant`isinstalled, if you haven't already, you can import your existing Ethereum/ANT wallet's private key usingthe`ant` CLI:
72+
Thisisthe all-in-one installation script that will install all dependencies, build the project, then run the daemon andtheweb interface.
11273

11374
```bash
114-
$> ant wallet import YOUR_PRIVATE_KEY_HERE
75+
curl https://raw.githubusercontent.com/Champii/Mutant/refs/heads/master/install.sh| bash"
11576
```
11677
117-
Replace`YOUR_PRIVATE_KEY_HERE` with your actual private key.`mutant` will automatically detect and use this wallet.
118-
119-
Alternatively, you can create a new empty wallet using`ant wallet create` and fund it with the necessary ANT or ETH later.
120-
121-
MutAnt will look for your ant wallets and ask you which one you want to use if you have multiple on the first run, then save your choice in`~/.config/mutant/config.json`.
78+
You will need to provide an Ethereum private key as well as an mnemonic phrasefor the colony.
79+
While this script propose to generate both, this feature is currently broken.
12280
123-
##Installation
81+
You need to generate both from [https://devtoolcafe.com/tools/bip39-generator](https://devtoolcafe.com/tools/bip39-generator) and give them to the script when asked.
12482
125-
```bash
126-
$> cargo install mutant-daemon
127-
$> cargo install mutant
128-
```
12983
13084
## Quick start demo
13185

‎docs/ant_wallet.md‎

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
###Setup`ant` Wallet
2+
3+
####If you just want to fetch public data, you can skip this section.
4+
5+
Before using`mutant` to actually store data, you need to have an`ant` wallet configured for the target network (Mainnet by default, or Devnet if using the`--local` flag). If you don't have`ant` installed, you can get it using[antup](https://github.com/maidsafe/antup):
6+
7+
```bash
8+
$> curl -sSf https://raw.githubusercontent.com/maidsafe/antup/main/install.sh| sh
9+
```
10+
11+
This will install the`ant` CLI and configure it for the Mainnet.
12+
13+
```bash
14+
$> antup client
15+
```
16+
17+
Once`ant` is installed, if you haven't already, you can import your existing Ethereum/ANT wallet's private key using the`ant` CLI:
18+
19+
```bash
20+
$> ant wallet import YOUR_PRIVATE_KEY_HERE
21+
```
22+
23+
Replace`YOUR_PRIVATE_KEY_HERE` with your actual private key.`mutant` will automatically detect and use this wallet.
24+
25+
Alternatively, you can create a new empty wallet using`ant wallet create` and fund it with the necessary ANT or ETH later.
26+
27+
MutAnt will look for your ant wallets and ask you which one you want to use if you have multiple on the first run, then save your choice in`~/.config/mutant/config.json`.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp