Crates.io | vpl-relying-party-cli |
lib.rs | vpl-relying-party-cli |
version | 0.1.2 |
source | src |
created_at | 2021-08-09 12:39:51.367287 |
updated_at | 2021-08-27 14:30:34.322702 |
description | VPL Relying Party Command-line Utility |
homepage | |
repository | https://github.com/velas/velas-program-library |
max_upload_size | |
id | 433678 |
size | 135,385 |
Velas's programming model and the definitions of the Velas terms used in this document are available at:
Install devtools:
sudo apt install build-essential libcurl4-gnutls-dev libxml2-dev libssl-dev libudev-dev
Install the package from the crates through cargo
:
$ cargo install vpl-relying-party-cli
You can use the following list of the addresses of the nodes to execute commands to:
https://api.velas.com
,https://api.testnet.velas.com
,https://api.devnet.velas.com
.The vpl-relying-party
configuration is shared with the velas
command-line tool.
velas
command-line tool configuration:$ velas config get
Config File: ${HOME}/.config/velas/cli/config.yml
RPC URL: https://api.velas.com/
WebSocket URL: wss://api.velas.com/ (computed)
Keypair Path: ${HOME}/.config/velas/id.json
See Velas clusters for cluster-specific RPC URLs
$ velas config set --url https://api.velas.com
See Keypair conventions for information on how to setup a keypair if you don't already have one.
Keypair File
$ velas config set --keypair ${HOME}/new-keypair.json
Get the version of the package — vpl-relying-party --version
:
$ vpl-relying-party --version
vpl-relying-party-cli 0.1.0
Get all possible package's commands — vpl-relying-party --help
:
vpl-relying-party-cli 0.1.0
VPL Relying Party Command-line Utility
USAGE:
vpl-relying-party [FLAGS] [OPTIONS] <SUBCOMMAND>
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
-v, --verbose Show additional information
OPTIONS:
--authority <KEYPAIR> Filepath or URL to a relying-party authority keypair. This authority will be able to
close the account. [default: client keypair]
-C, --config <PATH> Configuration file to use [default: /Users/user/.config/velas/cli/config.yml]
--fee-payer <KEYPAIR> Filepath or URL to a fee-payer keypair [default: client keypair]
--url <URL> JSON RPC URL for the cluster [default: value from configuration file]
SUBCOMMANDS:
account Display information stored in relying-party account
close-account Close relying-party account
create-account Create a new relying-party account
help Prints this message or the help of the given subcommand(s)
set-authority Set close authority of the relying-party account
Get relying-party
account parsed data by its address — vpl-relying-party account
:
Arguments | Type | Required | Description |
---|---|---|---|
relying-party-address | Pubkey | Yes | Account address to get a parsed data. |
node-url | URL | No | Node URL to apply a command to. |
$ vpl-relying-party account Bu1dW7aAyWXDgHPiLS5ch6KFgzaiwFknzKRkmNrzf8xH
Public Key: Bu1dW7aAyWXDgHPiLS5ch6KFgzaiwFknzKRkmNrzf8xH
-------------------------------------------------------------------
Relying Party Data:
version: 1
authority: 9atTpuaX8WoxWr7xDanvMmE41bPWkCLnSM4V4CMTu4Lq
Related program data:
name: example-dapp333
icon_cid: QmWATWQ7fVPP2EFGu71UkfnqhYXDYH566qy47CnJDgvs8u
domain_name: http://example-dapp.com
redirect_uri: ["http://example-dapp.com/pay", "http://example-dapp.com/play"]
Create relying-party
account — vpl-relying-party create-account
:
Arguments | Type | Required | Description |
---|---|---|---|
program-name | String | Yes | The display name associated with relying-party account. |
program-icon-cid | String | Yes | Content identifier of the icon associated with relying-party account: https://docs.ipfs.io/concepts/content-addressing/ |
program-domain-name | URL | Yes | Domain name associated with relying-party account. |
program-redirect-uris | URIs | Yes | Allowed URIs for end-user to be redirected to. |
lamports | Number | No | Lamports to create a new relying-party account. |
authority | Keypair | No | Filepath or URL to a relying-party authority keypair. This authority will be able to close the account. [default: client keypair] |
fee-payer | Keypair | No | Filepath or URL to a fee-payer keypair [default: client keypair] |
$ vpl-relying-party create-account "example-dapp333" QmWATWQ7fVPP2EFGu71UkfnqhYXDYH566qy47CnJDgvs8u http://example-dapp.com http://example-dapp.com/pay http://example-dapp.com/play --url http://127.0.0.1:8899
Signature: 4CH13f432ygibj2kBsoRJpG4HsnhDRA4pMgrd384bRNS37p5HYEtKQ4mR9iEviiugCMqoBUWa6BLHnEW4CzibatV
Relying Party Address: Bu1dW7aAyWXDgHPiLS5ch6KFgzaiwFknzKRkmNrzf8xH
Created!
Set close authority of the relying-party account — vpl-relying-party set-authority
:
Arguments | Type | Required | Description |
---|---|---|---|
relying-party-address | Pubkey | Yes | Address of the relying-party account. |
new-authority | Pubkey | Yes | New authority of the relying-party account. |
authority | Keypair | No | Filepath or URL to current relying-party authority keypair. [default: client keypair] |
fee-payer | Keypair | No | Filepath or URL to a fee-payer keypair [default: client keypair] |
$ vpl-relying-party set-authority Bu1dW7aAyWXDgHPiLS5ch6KFgzaiwFknzKRkmNrzf8xH V9u7QR3Ff6mUMdyjvJ67M23Gr6ERzVenuyhXqcc7hFk --url http://127.0.0.1:8899
Signature: 4GTJMcrAbQEsqVNz7G4UUUrnWctL6h55fefdwkJGapKrAZyjzeaLusSTS2Kwjp8AnMaEBU7TBeoiUHRJQs9GoQ8S
Authority changed from 9atTpuaX8WoxWr7xDanvMmE41bPWkCLnSM4V4CMTu4Lq to V9u7QR3Ff6mUMdyjvJ67M23Gr6ERzVenuyhXqcc7hFk successful!
Close relying-party account — vpl-relying-party close-account
:
Arguments | Type | Required | Description |
---|---|---|---|
relying-party-address | Pubkey | Yes | The address of the relying-party account. |
receiver-address | Pubkey | Yes | The address to send lamports from relying-party. |
authority | Keypair | No | Filepath or URL to current relying-party authority keypair. [default: client keypair] |
fee-payer | Keypair | No | Filepath or URL to a fee-payer keypair [default: client keypair] |
$ vpl-relying-party close-account Bu1dW7aAyWXDgHPiLS5ch6KFgzaiwFknzKRkmNrzf8xH V9u7QR3Ff6mUMdyjvJ67M23Gr6ERzVenuyhXqcc7hFk --authority V9u7QR3Ff6mUMdyjvJ67M23Gr6ERzVenuyhXqcc7hFk.json
Signature: 2SFk6rASKYD2Nv8CiiG3TVJavpYj6FRA2xMtWTjSYXwMDEN5RMbA9wEv481DbwZGNeWeLgqmjGZrgESJ99qTxpUJ
Relying-party account closed successful!