Get a wallet address, generate coins to it:
--> hsw-cli account get default
{
...
"receiveAddress": "rs1qaykgcsp6zqjz7fqwlsxnh8hqwslw467md3vssl"
...
}
Get a wallet address, generate coins to it:
--> hsw-cli account get default
{
...
"receiveAddress": "rs1qaykgcsp6zqjz7fqwlsxnh8hqwslw467md3vssl"
...
}
| dialog { | |
| position: fixed; | |
| top: 50%; | |
| left: 50%; | |
| right: auto; | |
| padding: 30px; | |
| transform: perspective(500px) translate(-50%, -50%); | |
| background: linear-gradient(to bottom, #FFF, #F4F4F4) #FFF; | |
| border: none; | |
| border-radius: 3px; |
| /* | |
| * Immutable data patterns without Immutable.js | |
| */ | |
| // 1. Objects | |
| const a = { name: 'Alice', age: 20, email: '[email protected]' }; | |
| // updating property | |
| const b = { ...x, age: 21 }; | |
| b; //=> { name: 'Alice', age: 21, email: '[email protected]' } |