You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.2 KiB
Markdown

2 years ago
# Install
```
yarn
```
# pkg
```
yarn pkg
```
# mac install
```
yarn install-mac
2 years ago
```
2 years ago
# Git3 URI Protocol
2 years ago
```
git3://[sender_wallet]@[contract_address or NS]:[chain_id]/<repo_name>
```
2 years ago
- [sender_wallet] Optional, address/NS or local wallet name, the default value is `default`.
- [contract_address or NS] Optional, the default value is `git3.w3q`, that's git3 on ETHStorage official contract.
- [chain_id] Optional, chain_id will follow the chain where NS by default, overrides if chain_id is specified
2 years ago
- <repo_name> Required, your repo name
2 years ago
## Example:
2 years ago
- `git3://helloworld`
2 years ago
select `default` wallet, git3 official contract address, on ETHStorage chainId: 3334, repo name is `helloworld`
It's equl to `git3://default@git3.w3q:3334/helloworld`
2 years ago
- `git3://myname.eth@git3.w3q/helloworld`
2 years ago
select `myname.eth` wallet, `git3.w3q` contract address, on ETHStorage chainId: 3334, repo name is `helloworld`
2 years ago
2 years ago
- `git3://your_git3.eth:137/helloworld`
2 years ago
select `default` wallet, `your_git3.eth` contract address, on Polygon chainId: 137, repo name is `helloworld`
2 years ago
2 years ago
- `git3://0x0068bD3ec8D16402690C1Eddff06ACb913A209ef:1/helloworld`
2 years ago
select `default` wallet, `0x0068...9ef` contract address, on ETH chainId: 1, repo name is `helloworld`
2 years ago