Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@ddn/ddn-dapp

Package Overview
Dependencies
Maintainers
4
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ddn/ddn-dapp

this is ddn-dapp package

latest
npmnpm
Version
1.0.3
Version published
Maintainers
4
Created
Source

DDN Dapp

交易体创建方法:
ddnJS.assetPlugin.createPluginAsset(trsType, assetInfo, secret, secondSecret)
参数:
  trsType: 创建交易的类型
  assetInfo: 创建交易的具体内容
  secret: 账号的密码
  secondSecret: 二级密码;(可不传)
返回:
  创建成功的交易体对象

##一:Dapp
注册Dapp

trsType: 11
assetInfo: {  
                name: DappName, //Dapp名称
                type: node.DappType.DAPP,   //Dapp类型
                category: node.randomProperty(node.DappCategory),   //Dapp分类
                link: node.guestbookDapp.link,  //Dapp程序包链接
                description: "A dapp added via API autotest",   //描述
                tags: "handy dizzy pear airplane alike wonder nifty curve young probable tart concentrate", //标签,空格分隔
                icon: node.guestbookDapp.icon,  //Dapp Logo链接
                delegates: delegates.join(","), //Dapp 受托人公钥串,多个用逗号分隔
                unlock_delegates: 3 //转出操作需要的最小受托人确认数
           }  

##二:inTransfer
向Dapp内转账

trsType: 12
assetInfo: {
                dapp_id: "f90e1f741168106f3bbd76e5eea6aa47d725d1e9b78e2ad6f043d0719881ba22",    //Dapp Id
                currency: "DDN",    //要转入的币种
                amount: "100000000" //要转入的金额
           }

##三:outTransfer
从Dapp向外转账

trsType: 13
assetInfo: {
                recipient_id: ,  //转账接收账户地址
                dapp_id: "f90e1f741168106f3bbd76e5eea6aa47d725d1e9b78e2ad6f043d0719881ba22",    //Dapp Id
                currency: "DDN",    //要转出的币种
                aobAmount: "10000000"   //要转出的金额,
                signatures: [   //受托人签名数组,通过方法await node.ddn.transfer.signOutTransfer(trs, delegatePassword)获得
                    "xxxxxxxxxxxxxxxxxxxxxxx",
                    "yyyyyyyyyyyyyyyyyyyyyyy",
                    "zzzzzzzzzzzzzzzzzzzzzzz"
                ]
           }

有关Dapp相关信息请查看ddn-docs项目的Dapp部分

FAQs

Package last updated on 21 Aug 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts