-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yaml
33 lines (33 loc) · 1.01 KB
/
action.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: 'Update DDNS'
description: 'DDNS(Distributed Domain Name System) update action. Currently it supports ENS, CNS and UNS.'
branding:
icon: 'edit'
color: 'green'
inputs:
mnemonic:
description: 'Mnemonic phrase for wallet recovery. Plain PrivateKey can be used as well.'
required: true
rpc:
description: 'Url of RPC APIs.'
required: true
name:
description: 'Distributed domain name. Currently it supports ENS(.eth), CNS(.crypto), UNS(.coin, .wallet, .bitcoin, .x, .888, .nft, .dao, .blockchain) names. (eg `ddns-action.eth`)'
required: true
contentHash:
description: 'Hash of content.'
required: true
contentType:
description: 'Type of content. Supported types [ipfs-ns, swarm-ns]'
required: false
default: 'ipfs-ns'
dryRun:
description: 'Execution emulation without setting new content hash.'
required: false
default: false
verbose:
description: 'Level of verbosity'
required: false
default: false
runs:
using: 'node12'
main: './src/index.js'