laconic-registry-cli/README.md

517 lines
12 KiB
Markdown
Raw Normal View History

2022-10-10 22:19:11 +00:00
# laconic-cns-client
2022-04-26 12:58:35 +00:00
2023-01-03 14:22:37 +00:00
CLI utility written in TS, used to interact with laconicd. Depends on [laconic-sdk](https://github.com/cerc-io/laconic-sdk).
## Setup
* Run `yarn` to install all dependencies.
* Create a `config.yml` file from [config.example.yml](./config.example.yml) file.
2022-04-26 12:58:35 +00:00
## Account Setup
2023-03-01 09:21:15 +00:00
Run the chain:
- In laconicd repo run:
```bash
TEST_AUCTION_ENABLED=true ./init.sh
```
2022-04-26 12:58:35 +00:00
Registering records in CNS requires an account. To get account private key run:
```bash
2022-09-28 19:31:20 +00:00
$ laconicd keys export mykey --unarmored-hex --unsafe
2022-04-26 12:58:35 +00:00
```
In `config.yml` file assign the account private key to `userKey`.
2022-04-26 12:58:35 +00:00
## Gas and Fees
https://docs.evmos.org/users/basics/gas.html
* Transactions require `gas`, set to the maximum value the transaction is allowed to consume.
* Typically, validators also require transaction `fees` to be provided to allow the transaction into the mempool.
The `gas` and `fees` can be set to some default values in the config, and can be overriden for each command using the `--gas` and `--fees` arguments.
Example:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns bond create --type aphoton --quantity 1000000000 --gas 200000 --fees 200000aphoton
2022-04-26 12:58:35 +00:00
```
## Operations
These commands require a `config.yml` file present in the current working directory when using the CLI.
2022-04-26 12:58:35 +00:00
Get node status:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns status
2022-04-26 12:58:35 +00:00
{
"version": "0.3.0",
"node": {
"id": "de88d9400eea3040ee7e12dfc4b08d513d9781e2",
2022-09-29 02:51:27 +00:00
"network": "laconic_9000-1",
2022-04-26 12:58:35 +00:00
"moniker": "localtestnet"
},
"sync": {
"latest_block_hash": "5C97CBB692A9D06AE0B271F51DD76B919899870B5B3A0D892595D40EAA478BC5",
"latest_block_height": "243",
"latest_block_time": "2022-04-26 16:29:59.57788157 +0530 IST",
"catching_up": false
},
"validator": {
"address": "0B897228C1F46EC306BA36B69134725BCC75E747",
"voting_power": "1000000000000000"
},
"validators": [
{
"address": "0B897228C1F46EC306BA36B69134725BCC75E747",
"voting_power": "1000000000000000",
"proposer_priority": "0"
}
],
"num_peers": "0",
"peers": [],
"disk_usage": "4.7M"
}
```
Get account details:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns account get --address ethm133y09mveksh76uc99h4rl38nd033tk4e3y2z52
2022-04-26 12:58:35 +00:00
[
{
"address": "ethm133y09mveksh76uc99h4rl38nd033tk4e3y2z52",
"pubKey": "A2BeFMnq4h0v5/hP+trvQbCtVWwGGYNSHWRJ7Ae60biS",
"number": "0",
"sequence": "37",
"balance": [
{
"type": "aphoton",
"quantity": "89998999999999991999799300"
}
]
}
]
```
Send tokens:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns tokens send --address ethm1vc62ysqu504at932jjq8pwrqgjt67rx6ggn5yu --type aphoton --quantity 1000000000
2022-04-26 12:58:35 +00:00
[
{
"address": "ethm1lfekr7gvqtnhpp2kwdc6u2n569cqsp4ww0m4y8",
"pubKey": "A68/q7/xazFzNj+rrvE07ALxkMgqw1ugL35VECkWAYvt",
"number": "0",
"sequence": "16",
"balance": [
{
"type": "aphoton",
"quantity": "99998999999999997973999700"
}
]
},
{
"address": "ethm1vc62ysqu504at932jjq8pwrqgjt67rx6ggn5yu",
"pubKey": null,
"number": "12",
"sequence": "0",
"balance": [
{
"type": "aphoton",
"quantity": "1000000000"
}
]
}
]
```
Create record (generic):
```yaml
# watcher.yml
record:
2023-03-01 06:18:50 +00:00
type: WebsiteRegistrationRecord
url: 'https://cerc.io'
repo_registration_record_cid: QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D
build_artifact_cid: QmP8jTG1m9GSDJLCbeWhVSVgEzCPPwXRdCRuJtQ5Tz9Kc9
tls_cert_cid: QmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnR
version: 1.0.23
2022-04-26 12:58:35 +00:00
```
Publish record (see below for commands to create/query bonds):
```bash
2023-03-01 06:18:50 +00:00
$ laconic cns record publish --filename watcher.yml --bond-id 58508984500aa2ed18e059fa8203b40fbc9828e3bfa195361335c4e4524c4785 --gas 250000
2022-04-26 12:58:35 +00:00
{ id: 'bafyreic3auqajvgszh3vfjsouew2rsctswukc346dmlf273ln4g6iyyhba' }
```
Get record:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns record get --id bafyreic3auqajvgszh3vfjsouew2rsctswukc346dmlf273ln4g6iyyhba
2022-04-26 12:58:35 +00:00
[
{
"id": "bafyreic3auqajvgszh3vfjsouew2rsctswukc346dmlf273ln4g6iyyhba",
"names": null,
"owners": [
"A44019FBD06DA0425C15B064F5AF854DE35129BA"
],
"bondId": "f9921625fa07fef0e499653b2ac88371c1aaf5dd0c1732ded6df8c7f9fb5665a",
"createTime": "2022-04-26T11:17:09Z",
"expiryTime": "2023-04-26T11:17:09Z",
"attributes": {
"name": "ERC20 Watcher",
"package": {
"linux": {
"arm": {
"/": "QmX3DDmeFunX5aVmaTNnViwQUe15Wa4UbZYcC3AwFwoWcg"
},
"x64": {
"/": "QmVRmLrQeLZS8Xee7YVzYYAQANWmXqsNgNkaPMxM8MtPLA"
}
},
"macos": {
"x64": {
"/": "QmXogCVZZ867qZfS3CYjYdDEziPb4ARiDfgwqbd7urVKkr"
}
}
},
"protocol": {
"/": "QmbQiRpLX5djUsfc2yDswHvTkHTGd9uQEy6oUJfxkBYwRq"
},
"type": "watcher",
"version": "1.0.0"
}
}
]
```
List records:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns record list
2022-04-26 12:58:35 +00:00
```
Reserve authority:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns authority reserve laconic
2022-04-26 12:58:35 +00:00
```
Check authority information:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns authority whois laconic
2022-04-26 12:58:35 +00:00
[
{
"ownerAddress": "",
"ownerPublicKey": "",
"height": "183",
"status": "expired",
"bondId": "",
"expiryTime": "2022-04-26 11:50:45.679728594 +0000 UTC",
"auction": {
"id": "0294fb2e3659c347b53a6faf4bef041fd934f0f3ab13df6d2468d5d63abacd48",
"status": "commit",
"ownerAddress": "ethm1lfekr7gvqtnhpp2kwdc6u2n569cqsp4ww0m4y8",
"createTime": "2022-04-26T11:43:45.679728594",
"commitsEndTime": "2022-04-26T11:44:45.679728594",
"revealsEndTime": "2022-04-26T11:45:45.679728594",
"commitFee": {
"type": "aphoton",
"quantity": "1000000"
},
"revealFee": {
"type": "aphoton",
"quantity": "1000000"
},
"minimumBid": {
"type": "aphoton",
"quantity": "5000000"
},
"winnerAddress": "",
"winnerBid": {
"type": "",
"quantity": "0"
},
"winnerPrice": {
"type": "",
"quantity": "0"
},
"bids": []
}
}
]
```
Get authority auction info:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns auction get 0294fb2e3659c347b53a6faf4bef041fd934f0f3ab13df6d2468d5d63abacd48
2022-04-26 12:58:35 +00:00
[
{
"id": "0294fb2e3659c347b53a6faf4bef041fd934f0f3ab13df6d2468d5d63abacd48",
"status": "commit",
"ownerAddress": "ethm1lfekr7gvqtnhpp2kwdc6u2n569cqsp4ww0m4y8",
"createTime": "2022-04-26T11:42:05.256059269",
"commitsEndTime": "2022-04-26T11:44:45.679728594",
"revealsEndTime": "2022-04-26T11:45:45.679728594",
"commitFee": {
"type": "aphoton",
"quantity": "1000000"
},
"revealFee": {
"type": "aphoton",
"quantity": "1000000"
},
"minimumBid": {
"type": "aphoton",
"quantity": "5000000"
},
"winnerAddress": "",
"winnerBid": {
"type": "",
"quantity": "0"
},
"winnerPrice": {
"type": "",
"quantity": "0"
},
"bids": []
}
]
```
Commit an auction bid:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns auction bid commit 0294fb2e3659c347b53a6faf4bef041fd934f0f3ab13df6d2468d5d63abacd48 25000000 aphoton
2022-04-26 12:58:35 +00:00
Reveal file: ./out/bafyreiay2rccax64yn4ljhvzvm3jkbebvzheyucuma5jlbpzpzd5i5gjuy.json
```
Reveal an auction bid:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns auction bid reveal 0294fb2e3659c347b53a6faf4bef041fd934f0f3ab13df6d2468d5d63abacd48 ./out/bafyreiay2rccax64yn4ljhvzvm3jkbebvzheyucuma5jlbpzpzd5i5gjuy.json
2022-04-26 12:58:35 +00:00
```
Set authority bond (after winning auction):
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns authority bond set laconic 58508984500aa2ed18e059fa8203b40fbc9828e3bfa195361335c4e4524c4785
2022-04-26 12:58:35 +00:00
```
Create sub-authority (same owner as parent authority):
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns authority reserve echo.laconic
2022-04-26 12:58:35 +00:00
```
Create sub-authority (custom owner for sub-authority):
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns authority reserve kube.laconic --owner ethm1vc62ysqu504at932jjq8pwrqgjt67rx6ggn5yu
2022-04-26 12:58:35 +00:00
```
Set name:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns name set crn://laconic/watcher/erc20 bafyreic3auqajvgszh3vfjsouew2rsctswukc346dmlf273ln4g6iyyhba
2022-04-26 12:58:35 +00:00
```
Lookup name information:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns name lookup crn://laconic/watcher/erc20
2022-04-26 12:58:35 +00:00
[
{
"latest": {
"id": "bafyreic3auqajvgszh3vfjsouew2rsctswukc346dmlf273ln4g6iyyhba",
"height": "736"
}
}
]
```
Resolve name:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns name resolve crn://laconic/watcher/erc20
2022-04-26 12:58:35 +00:00
[
{
"id": "bafyreic3auqajvgszh3vfjsouew2rsctswukc346dmlf273ln4g6iyyhba",
"names": null,
"owners": [
"D90CC0B1D4AF0CF17408060A22521333DEC8B59C"
],
"bondId": "58508984500aa2ed18e059fa8203b40fbc9828e3bfa195361335c4e4524c4785",
"createTime": "2022-04-26T12:28:07Z",
"expiryTime": "2023-04-26T12:28:07Z",
"attributes": {
"package": {
"linux": {
"arm": {
"/": "QmX3DDmeFunX5aVmaTNnViwQUe15Wa4UbZYcC3AwFwoWcg"
},
"x64": {
"/": "QmVRmLrQeLZS8Xee7YVzYYAQANWmXqsNgNkaPMxM8MtPLA"
}
},
"macos": {
"x64": {
"/": "QmXogCVZZ867qZfS3CYjYdDEziPb4ARiDfgwqbd7urVKkr"
}
}
},
"protocol": {
"/": "QmbQiRpLX5djUsfc2yDswHvTkHTGd9uQEy6oUJfxkBYwRq"
},
"type": "watcher",
"version": "1.0.0",
"name": "ERC20 Watcher"
}
}
]
```
Delete name:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns name delete crn://laconic/watcher/erc20
2022-04-26 12:58:35 +00:00
2022-09-28 19:31:20 +00:00
$ laconic cns name resolve crn://laconic/watcher/erc20
2022-04-26 12:58:35 +00:00
[
null
]
```
Create bond:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns bond create --type aphoton --quantity 1000
2022-04-26 12:58:35 +00:00
```
List bonds:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns bond list
2022-04-26 12:58:35 +00:00
[
{
"id": "58508984500aa2ed18e059fa8203b40fbc9828e3bfa195361335c4e4524c4785",
"owner": "ethm1lfekr7gvqtnhpp2kwdc6u2n569cqsp4ww0m4y8",
"balance": [
{
"type": "aphoton",
"quantity": "698000000"
}
]
},
{
"id": "5c40abd336ae1561f2a1b55be73b12f5a083080bf879b4c9288d182d238badb0",
"owner": "ethm1lfekr7gvqtnhpp2kwdc6u2n569cqsp4ww0m4y8",
"balance": [
{
"type": "aphoton",
"quantity": "1000"
}
]
}
]
```
Get bond:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns bond get --id 58508984500aa2ed18e059fa8203b40fbc9828e3bfa195361335c4e4524c4785
2022-04-26 12:58:35 +00:00
[
{
"id": "58508984500aa2ed18e059fa8203b40fbc9828e3bfa195361335c4e4524c4785",
"owner": "ethm1lfekr7gvqtnhpp2kwdc6u2n569cqsp4ww0m4y8",
"balance": [
{
"type": "aphoton",
"quantity": "691000000"
}
]
}
]
```
Query bonds by owner:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns bond list --owner ethm1lfekr7gvqtnhpp2kwdc6u2n569cqsp4ww0m4y8
2022-04-26 12:58:35 +00:00
[
{
"id": "58508984500aa2ed18e059fa8203b40fbc9828e3bfa195361335c4e4524c4785",
"owner": "ethm1lfekr7gvqtnhpp2kwdc6u2n569cqsp4ww0m4y8",
"balance": [
{
"type": "aphoton",
"quantity": "684000000"
}
]
},
{
"id": "5c40abd336ae1561f2a1b55be73b12f5a083080bf879b4c9288d182d238badb0",
"owner": "ethm1lfekr7gvqtnhpp2kwdc6u2n569cqsp4ww0m4y8",
"balance": [
{
"type": "aphoton",
"quantity": "1000"
}
]
}
]
```
Refill bond:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns bond refill --id 58508984500aa2ed18e059fa8203b40fbc9828e3bfa195361335c4e4524c4785 --type aphoton --quantity 1000
2022-04-26 12:58:35 +00:00
```
Withdraw funds from bond:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns bond withdraw --id 58508984500aa2ed18e059fa8203b40fbc9828e3bfa195361335c4e4524c4785 --type aphoton --quantity 500
2022-04-26 12:58:35 +00:00
```
Cancel bond:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns bond cancel --id 58508984500aa2ed18e059fa8203b40fbc9828e3bfa195361335c4e4524c4785
2022-04-26 12:58:35 +00:00
```
Associate bond (with record):
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns bond associate --id bafyreic3auqajvgszh3vfjsouew2rsctswukc346dmlf273ln4g6iyyhba --bond-id 5c40abd336ae1561f2a1b55be73b12f5a083080bf879b4c9288d182d238badb0
2022-04-26 12:58:35 +00:00
```
Disassociate bond (from record):
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns bond dissociate --id bafyreic3auqajvgszh3vfjsouew2rsctswukc346dmlf273ln4g6iyyhba
2022-04-26 12:58:35 +00:00
```
Dissociate all records from bond:
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns bond records dissociate --bond-id 5c40abd336ae1561f2a1b55be73b12f5a083080bf879b4c9288d182d238badb0
2022-04-26 12:58:35 +00:00
```
Reassociate records (switch bond):
```bash
2022-09-28 19:31:20 +00:00
$ laconic cns bond records reassociate --old-bond-id 5c40abd336ae1561f2a1b55be73b12f5a083080bf879b4c9288d182d238badb0 --new-bond-id 3e11c61f179897e4b12e9b63de35d36f88ac146755e7a28ce0bcdd07cf3a03ae
2022-04-26 12:58:35 +00:00
```