ICode9

精准搜索请尝试: 精确搜索
  • The requested contract was not found2021-11-23 18:01:42

    使用openzeppelin 部署可以升级的合约时,遇到了 The requested contract was not found. Make sure the source code is available for compilation 官网的常见问题给给出了答案 Frequently Asked Questions - OpenZeppelin Docshttps://docs.openzeppelin.com/upgrades-plugins/

  • 智能合约安全相关论文2021-11-01 10:00:57

    - Maintenance-Related Concerns for Post-deployed Ethereum Smar Contract Development: Issues, Techniques, and Future Challenges (EMSE 21). - Automating User Notice Generation for Smart Contract Functions (ASE 21) - Empirical Evaluation of Smart Contract Te

  • 3.2 Dependencies of the Projects in the Solution 解决方案中项目间的依赖项2021-10-18 10:31:18

    3.2 Dependencies of the Projects in the Solution 解决方案中项目间的依赖项 The diagram below shows the essential dependencies (project references) between the projects in the solution (IssueTracking.part is not shown to be simple) 解决方案中各项目之间的基本依

  • 量化交易之vnpy篇 - 主力合约换月 - 引擎调用部分2021-07-26 20:30:10

    import time import pandas import re from vnpy.trader.tqz_extern.tqz_model import TQZMonitorTimeModel from vnpy.trader.tqz_extern.tools.position_operator.position_operator import TQZJsonOperator from vnpy.trader.tqz_extern.tools.symbol_operator.symbol_ope

  • 量化交易之vnpy篇 - 主力合约换月 - 拉取当前主力合约数据 (天勤)2021-07-23 16:00:18

    class TQZTqClient: """ Client for querying main future contracts of current market from Tianqin. """ def __init__(self, account_name, account_password): """ init api with accoun

  • Substrate Tutorials:Add the Contracts Pallet to a runtime2021-07-16 11:31:49

    相关内容 https://substrate.dev/docs/en/tutorials/add-contracts-pallet/ 添加一个 合约 Pallet oj代码runtime error_在 Substrate 中为你的 runtime 添加合约模块 【Substrate入门】在Runtime中添加第一个Pallet 【Substrate入门】在Runtime中添加智能合约模块

  • Formal Verification of Smart Contracts Short Paper2021-07-14 14:33:30

    Formal Verification of Smart Contracts: Short Paper ABSTRACT 提出将使用F*框架用于编写代码 1. INTRODUCTION 本文目的:通过静态分析方式查找漏洞 字节码(Byte-code)是一种包含执行程序,由一序列 op 代码/数据对组成的二进制文件,是一种中间码。 将智能合约的验证分为双

  • [论文研读] ACE: Asynchronous and Concurrent Execution of Complex Smart Contracts2021-06-29 13:34:17

    目标 提高合约的可执行复杂度,可以理解为:相同的吞吐量下,区块内交易可执行时间越长,则可执行复杂度越高(即可执行时间越长)。 以以太坊为例,为了保持良好的吞吐量,那么出块间隔会尽可能的减小,于是区块内交易执行与验证的时间就会减少,从而限制交易的可执行复杂度。 该model并不是为了

  • truffle官网demo TUTORIALTOKEN2021-05-27 08:33:35

    项目地址:https://www.trufflesuite.com/boxes/tutorialtoken 项目结构 package.json配置文件 { "#name": "定义项目的名称,版本", "name": "tutorialtoken", "version": "1.0.0", "description": ""

  • laravel的启动过程---摘自网络博客个人学习之用2021-05-26 21:01:22

    如果没有使用过类似Yii之类的框架,直接去看laravel,会有点一脸迷糊的感觉,起码我是这样的。laravel的启动过程,也是laravel的核心,对这个过程有一个了解,有助于得心应手的使用框架,希望能对大家有点帮助。 提示:在此之前,最好看一下官方文档,大概知道laravel,再来看这个笔记,这样效果可能会好一

  • 关于Laravel框架中Guard的底层实现2021-03-03 12:05:05

    1. 什么是Guard 在Laravel/Lumen框架中,用户的登录/注册的认证基本都已经封装好了,开箱即用。而登录/注册认证的核心就是: 用户的注册信息存入数据库(登记) 从数据库中读取数据和用户输入的对比(认证) 上述两步是登录/注册的基本,可以看到都会涉及到数据库的操作,这两步框架底层已经帮我

  • ACE:Asynchronous and Concurrent Execution of Complex Smart Contracts2021-02-02 18:04:00

    论文题目 ACE:Asynchronous and Concurrent Execution of Complex Smart Contracts发表 Computer and Communications Security (CCS ’20), November 9–13, 2020作者 Karl Wüst (Department of Computer Science ETH Zurich) 苏黎世联邦理工学院资讯工程学系在读博士生 简

  • 区块链论文研读12:谨慎日志合约 Discreet Log Contracts,详细 清晰 通俗易懂2020-04-06 14:10:14

    今天讲的论文来自MIT的Digital Currency Initiative, 名字叫《Discreet Log Contracts》https://adiabat.github.io/dlc.pdf,作者是比特币闪电网络的作者Dryja。它跟闪电网络有一些联系。 本文不是论文的直接翻译。本人希望以通俗易懂的表述方式跟读者分享区块链技术。欢迎

  • 部署智能合约2020-01-29 17:08:53

    truffle unbox react 下载项目 修改truffle-config.js const path = require("path"); module.exports = { // See <http://truffleframework.com/docs/advanced/configuration> // to customize your Truffle configuration! contracts_build_directory: p

  • c# – 私有静态只读字段上的代码约定和失败2019-07-04 08:55:45

    我班上有一个私有静态只读字段: public class MyClass { // ISSUE #1 -- requires unproven: path != null private static readonly DirectoryInfo MyDirectory = new DirectoryInfo(Settings.Default.MyDirectoryPath); protected virtual void SomeMethod(

  • java – 构造函数何时以及如何对实例变量强制实施限制?2019-06-24 10:51:25

    我是编程的新手,我正在学习Java作为我的第一个oo语言,通过David J. Eck编写的Java编程简介和卡住的论坛帖子. 我的问题可以被认为是Java Class Constructor Parameters with range limits的后续,它涉及将Hour类的构造函数的int参数限制为0到23. 上述问题的答案提到抛出Instantiatio

  • [Blockchain-3] Blockchains and Smart Contracts for the Internet of Things2019-04-01 20:53:56

    1.文章内容 1.1 做了什么? We then move into the --IoT domain–, and describe how a --blockchain-IoT combination–: 1) Facilitates the sharing of services and resources leading to the creation of a marketplace of services between devices and 2) Allows us to

  • 6.4 操作契约 Operation Contracts2019-03-17 19:39:02

    4、操作契约 Operation Contracts    “用例描述”的补充    强调: 用例中重要的动作,其开始与结束是需要一些约束 4.5 操作契约的后置条件    定义Definition      后置条件描述了领域对象状态的变化 describe changes in the state of objects in the domain model   

  • php 从第三方服务器download图片到本地2019-03-12 22:54:37

    public function downPdfFromSSQ($contract_id,$url){ // $url = 'https://openapi.bestsign.info/openapi/v2/storage/contract/download/?sign=OsfjtxLOQ2%2FMplZLGg6hssF //%2BDkWtAXDpIREX%2BjNc36SeG8dCPGESGZ00BOGgOz%2FB7GQKO3YPW5IFrfSVFJ5wlBTAW0yz0J0MB

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有