-
Notifications
You must be signed in to change notification settings - Fork 78
operations_introduction_zh
gxchain123 edited this page Aug 16, 2017
·
3 revisions
GXB-Core 中包含一系统operation, 每个operation对应一个序号,根据序号可以判断区块中包含哪些operation,比如区块1769028包含了一笔转帐交易,序号0对应转帐操作。 序号和operation的对应关系可参考这里。
每个操作的含义如下:
{
"transfer": "转账",
"limit_order_create": "限价单",
"limit_order_cancel": "取消限价单",
"call_order_update": "更新订单",
"account_create": "创建账户",
"account_update": "更新账户",
"account_whitelist": "账户白名单",
"account_upgrade": "升级账户",
"account_transfer": "账户转移",
"asset_create": "创建资产",
"asset_update": "更新资产",
"asset_update_bitasset": "更新智能币",
"asset_update_feed_producers": "更新资产喂价者",
"asset_issue": "资产发行",
"asset_reserve": "销毁资产",
"asset_fund_fee_pool": "积存资产费用池",
"asset_settle": "资产结算",
"asset_global_settle": "全局资产清算",
"asset_publish_feed": "发布资产喂价",
"committee_member_create": "创建理事会成员",
"witness_create": "创建见证人",
"witness_withdraw_pay": "见证人取回报酬",
"proposal_create": "创建提案",
"proposal_update": "更新提案",
"proposal_delete": "删除提案",
"withdraw_permission_create": "创建提取权限",
"withdraw_permission_update": "更新提取权限",
"withdraw_permission_claim": "主张提取权限",
"withdraw_permission_delete": "删除提取权限",
"fill_order": "订单撮合",
"delegate_update_global_parameters": "全局参数更新",
"vesting_balance_create": "创建冻结账目余额",
"vesting_balance_withdraw": "提取解冻账户余额",
"worker_create": "创建雇员",
"custom": "自定义",
"assert": "断言操作",
"balance_claim": "领取余额",
"override_transfer": "优先覆盖转账",
"witness_update": "更新见证人",
"committee_member_update_global_parameters": "全局参数更新",
"transfer_to_blind": "向隐私账户转账",
"blind_transfer": "隐私转账",
"transfer_from_blind": "从隐私账户转出",
"committee_member_update": "更新理事会成员账户",
"asset_claim_fees": "领取资产手续费",
"account_upgrade_merchant":"商户认证",
"account_upgrade_datasource":"数据源认证",
"data_market_category_create":"创建类目",
"data_market_category_update":"更新类目",
"data_market_update_create":"更新类目",
"free_data_product_create":"创建自由市场数据产品",
"free_data_product_update":"更新自由市场数据产品",
"league_data_product_create": "创建联盟数据产品",
"league_data_product_update": "更新联盟数据产品",
"league_create": "创建联盟",
"league_update": "更新联盟",
"data_transaction_create":"发起数据交易",
"data_transaction_update":"更新数据交易",
"data_transaction_pay":"数据支付",
"account_upgrade_data_transaction_member":"交易节点认证",
"data_transaction_datasource_upload":"数据存证",
"data_transaction_datasource_validate_error":"数据交易失败"
}