百度超级链

xuper.jpg

https://xchain.baidu.com

我不喜欢百度,这无关技术。如果有好用的产品,我也会试用下。

今天偶然间在coindesk上看到关于百度区块链的报道,还觉得有点奇怪呢:为啥国内我都没听过?!难道是墙内开花墙外香?

XuperUion是超级链体系下的第一个开源项目,是构建超级联盟网络的底层方案。

原创的XuperModel模型,真正实现了智能合约的并发执行和验证。
TDPOS算法确保大规模节点下的快速共识。
使用AOT加速的WASM虚拟机,合约运行速度接近native程序。

简单地翻了一下,百度超级链是用go开发的,是做底层服务和智能合约的–这与大部分的公链倒是一致。国内也少有人提到它,估计也是不能挖矿的–这点不太符合我的“审美标准”。不能挖矿的币绝不是好币!

这么多公司入局区块链,使用区块链的要求和成本将会极速降低,对于一般的用户来说也算是一件好事了。


This page is synchronized from the post: ‘百度超级链’

SteemJs注册的两种方法 / 网络研习社#56

claimaccount.jpg

参考steemsnippets | 创建免费用户 | Claiming a discounted (“free”) account | 创建用户

这两天在社区中查找了SteemJs用户注册的实现方法,还好,测试了下,也都实现了!Steem在原有的基础上提供了一种新的免费注册的方法(discounted_account),这种新方法可以比较快速地完成新用户注册。

SteemJs注册主要有两种方法:一是create_discounted_account,另一个是accountCreate。create_discounted_account是用消耗RC注册,一个新号需要约10,445,334,023,565 RC,SP大户才能玩得转。像我的帐户(lemooljiang)一天也只能注册2~3个。accountCreate就是付费注册(3个steem),其它的就没什么限制了。

create_discounted_account

如上图所示。

这个是用dsteem来完成注册功能,有两步,一步是申明帐户(claim_account),使其处于Pending状态;第二步是就是直接注册了(create_discounted_account)。

  1. 安装和挂载

    1
    2
    3
    4
    5
    6
    cnpm install dsteem --save
    //main.js
    const dsteem = require('dsteem')
    const client = new dsteem.Client('https://api.steemit.com')
    Vue.prototype.dsteem = dsteem
    Vue.prototype.client = client
  2. 两个注册函数

    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
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    claim_account() {
    const creator = "lemooljiang"  //创建帐户的用户名
    const active_key = "5Jffffffffff" //创建帐户的资金密钥
    return new Promise(resolve => {
    const wif = this.dsteem.PrivateKey.fromString(active_key)
    const fee = this.dsteem.Asset.from(0, 'STEEM')
    const op = [
    'claim_account',
    {
    creator: creator,
    extensions: [],
    fee: fee
    }]

    this.client.broadcast.sendOperations([op], wif).then(function (result) {
    console.log('11,Included in block: ' + result.block_num)
    console.log('222,申明新帐户创建成功!' )
    resolve("ok")
    }, function (error) {
    console.error(error)
    console.log('333,申明新帐户创建失败!' )
    resolve("err")
    })
    })
    },
    create_discounted_account() {
    const creator = "lemooljiang"  //创建帐户的用户名
    const active_key = "5Jofffffffffffff" //创建帐户的资金密钥
    const username = this.username  //新帐户名
    const password = this.password  //新帐户的密码
    return new Promise(resolve => {
    const wif = this.dsteem.PrivateKey.fromString(active_key)
    const prefix = this.client.addressPrefix
    const ownerKey = this.dsteem.PrivateKey.fromLogin(username, password, 'owner').createPublic(prefix)
    let owner = this.dsteem.Authority.from(ownerKey)
    const activeKey = this.dsteem.PrivateKey.fromLogin(username, password, 'active').createPublic(prefix)
    let active = this.dsteem.Authority.from(activeKey)
    const postingKey = this.dsteem.PrivateKey.fromLogin(username, password, 'posting').createPublic(prefix)
    let posting = this.dsteem.Authority.from(postingKey)
    let memo_key = this.dsteem.PrivateKey.fromLogin(username, password, 'memo').createPublic(prefix)

    const metadata = {date: new Date()}
    const create_op = [
    'create_claimed_account',
    {
    active,
    creator,
    extensions: [],
    json_metadata: metadata ? JSON.stringify(metadata) : '',
    memo_key,
    new_account_name: username,
    owner,
    posting,
    }
    ]

    this.client.broadcast.sendOperations([create_op], wif).then(function (result) {
    console.log('22, Included in block: ' + result.block_num)
    console.log('666,新帐户创建成功!' )
    resolve("ok")
    }, function (error) {
    console.log('444,新帐户创建失败!' )
    console.error(error)
    resolve("err")
    })
    })
    },

accountCreate

这种方法简单直接,付点小费创建就可以啦。

它主要由steem的两个方法来实现:steem.auth.generateKeys 用于生成4组密钥(owner, active, posting, memo),steem.broadcast.accountCreate 用于创建账号。

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
34
35
36
37
npm install steem --save
//main.js
import steem from 'steem'
steem.api.setOptions({ url: 'https://api.steemit.com' })
Vue.prototype.steem= steem

register() {
let newAccountName = "bettyliu"  //新帐户名
let newAccountPassword = "FDJUJUJUJU"  //新帐户的密码
let publicKeys = this.steem.auth.generateKeys(newAccountName, newAccountPassword, ['owner', 'active', 'posting', 'memo'])
let owner = { weight_threshold: 1, account_auths: [], key_auths: [[publicKeys.owner, 1]] }
let active = { weight_threshold: 1, account_auths: [], key_auths: [[publicKeys.active, 1]] }
let posting = { weight_threshold: 1, account_auths: [], key_auths: [[publicKeys.posting, 1]] }
let memoKey = publicKeys.memo

let creator = "lemooljiang" //创建帐户的用户名
let creatorWif = "5Jffffffffffff" //创建帐户的资金密钥
let fee = "3.000 STEEM" //手续费
let jsonMetadata = ""
this.steem.broadcast.accountCreate(
creatorWif,
fee,
creator,
newAccountName,
owner,
active,
posting,
memoKey,
jsonMetadata,
(err, result) => {
if(err){
console.log(444, '创建失败!', err)
}else{
console.log(666, '创建成功!', result)
}
})
}

This page is synchronized from the post: ‘SteemJs注册的两种方法 / 网络研习社#56’

Steem的免费注册:create_claimed_account

steemclaim.jpg

https://github.com/CodeBull/AccountCreate

一直想把steem注册这块加到自己的网站上,毕竟注册新用户是最重要的开始一步。SteemJS主要有两个注册的函数:accountCreate,accountCreateWithDelegation。这两个方法都得花钱,不太好。想找个免费的方法,最后找到了create_claimed_account。

create_claimed_account其实并不“免费”,虽然是不花steem,但是花RC!像我的帐号“lemooljiang”,满血的状态是45,698,115,419,724Rc, 注册一个新号要花11,646,150,618,200Rc。所以,满打满算,一次也最多能注四个号而已。Rc也是线性恢复的,一天回复20%。对于一个网站的需求,其实意义不大。对于个人来讲,倒也能注点小号之类的。


This page is synchronized from the post: ‘Steem的免费注册:create_claimed_account’

周末影院:《精英律师》,用法律来吵架的即视感

lawyer.jpg

刷了几集《精英律师》,感觉还不错,周末休闲松脑的小品剧。

看着老“腊肉”们穿的人模人样的吵架,还是蛮有趣的,虽然大多数是鸡毛蒜皮的小事。这也看出,老百姓最关心最关注的还是衣食住行等题材。至于主打“律师”这个牌,其实戏份真不多,大家伙都喜欢用“盘外招”:扒个隐私、揭个疮疤啥的。也就是所谓“出奇致胜”。

lawyer2.jpg

《金牌律师》

这是老外的《金牌律师》。这部剧可看性更高,而且《精英律师》还参考了大部分的框架。我记得”实习生没有学历”这个设定好像是出奇地统一。不过老外喜欢玩“人命”:一般是命案。国内则比较喜欢拆迁、婚外情、分家产啥的!看着热闹,吃个瓜还是不错的。


This page is synchronized from the post: ‘周末影院:《精英律师》,用法律来吵架的即视感’

大家新年快乐!

dan.jpg

看到社区中还是有不少朋友们在相互祝福,我觉得还是挺暖的!不管怎么说,有个写作分享的社区还是挺不错的,至少不管你写什么,总会有观众的!

又是新的一年啦!继续写作分享,不忘初心,收益满满!


This page is synchronized from the post: ‘大家新年快乐!’

这么便宜的京东云,可以撸一台!

jdyun.jpg

https://www.jdcloud.com/cn/activity/year-end

看到这样的打折力度和产品,还是非常开心的!毕竟就在去年我用的阿里云可是花了近3000大元啊!现在相同的云产品却只要不到400块,便宜了8倍。

看看配置,还是挺不错的,也算是基本配置了:

1
2
3
4
5
6
地域:华东-上海可用区:可用区A 
名称:JD一号
镜像:Ubuntu 18.04 64位
规格:h.g2.large 2核 8G
系统盘:40GB 本地盘
子网:默认子网数量:1

一般的开发和使用足够了!

现在做了几个DAPP,感到服务器不够用了,还是多撸一台分担点压力!


This page is synchronized from the post: ‘这么便宜的京东云,可以撸一台!’

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×