CN106598579B - Method and apparatus for integrating dynamic type programming language on blockchain - Google Patents
Method and apparatus for integrating dynamic type programming language on blockchain Download PDFInfo
- Publication number
- CN106598579B CN106598579B CN201611110167.9A CN201611110167A CN106598579B CN 106598579 B CN106598579 B CN 106598579B CN 201611110167 A CN201611110167 A CN 201611110167A CN 106598579 B CN106598579 B CN 106598579B
- Authority
- CN
- China
- Prior art keywords
- intelligent contract
- programming language
- bytecode
- block chain
- dynamic type
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Active
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/30—Creation or generation of source code
- G06F8/31—Programming languages or programming paradigms
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/40—Transformation of program code
- G06F8/41—Compilation
Landscapes
- Engineering & Computer Science (AREA)
- General Engineering & Computer Science (AREA)
- Software Systems (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Computing Systems (AREA)
- Devices For Executing Special Programs (AREA)
Abstract
The invention provides a method and a device for integrating dynamic type programming languages on a block chain. Wherein, the method comprises the following steps: calling byte codes, wherein the byte codes are stored on a block chain, the block chain comprises at least one node, the byte codes are compiled by an intelligent contract, the intelligent contract is uniquely corresponding to the byte codes, and the intelligent contract is compiled by a dynamic type programming language; analyzing the byte codes through a byte code interpreter to obtain an intelligent contract, wherein the intelligent contract does not define the variable type; defining variable types of the intelligent contracts; and executing the intelligent contract after the variable type is defined. The method and the device for integrating the dynamic type programming language on the block chain improve the expandability of the intelligent contract on the block chain by using the intelligent contract of the dynamic type programming language on the block chain.
Description
Technical Field
The invention relates to the internet technology, in particular to a method and a device for integrating dynamic type programming language on a block chain.
Background
The bitcoin is a digital currency, generated by a large number of calculations according to a specific algorithm, and uses a distributed database consisting of a plurality of nodes in a network to confirm and record all transaction activities. A block chain in the bitcoin technology is like a database account book and records all bitcoin transaction records. The blockchain is composed of a plurality of nodes, the intelligent contract is program code written and stored on each node of the blockchain, and all the nodes on the blockchain can realize related functions by executing related operations of the intelligent contract.
In the prior art, the intelligent contract is implemented by a static type programming language, for example, a special language similar to Javascript, and the user equipment compiles an intelligent contract source code into a bytecode form and stores the bytecode form into each node in the block chain. Each node calls and executes the intelligent contract to obtain the running result of the intelligent contract.
By adopting the prior art, because the variable type of the static type programming language can not be changed, and each node can not modify and adjust the intelligent contract, the expandability of the intelligent contract is not strong.
Disclosure of Invention
The invention provides a method and a device for integrating dynamic type programming languages on a block chain, which improve the expandability of an intelligent contract on the block chain by using the intelligent contract of the dynamic type programming language on the block chain.
The invention provides a method for integrating dynamic type programming languages on a block chain, which comprises the following steps: invoking a bytecode, the bytecode being stored on a blockchain, the blockchain including at least one of the nodes, the bytecode being compiled from an intelligent contract, the intelligent contract and the bytecode uniquely corresponding, the intelligent contract being written in a dynamic type programming language;
analyzing the bytecode through a bytecode interpreter to obtain the intelligent contract, wherein the intelligent contract does not define the variable type;
defining the variable type of the smart contract;
executing the intelligent contract after the variable type is defined.
In an embodiment of the present invention, after the executing the intelligent contract after defining the variable type, the method further includes:
and storing the changed part of the block chain state and the variable type into the block chain after the intelligent contract is executed.
In an embodiment of the present invention, before defining the variable type of the intelligent contract, the method further includes:
calling an Application Programming Interface (API) of the intelligent contract;
the intelligent contract is modified.
The invention provides a method for integrating dynamic type programming languages on a block chain, which comprises the following steps: compiling an intelligent contract into byte codes, wherein the intelligent contract and the byte codes are uniquely corresponding, the intelligent contract is compiled by a dynamic type programming language, and the intelligent contract does not define variable types;
storing the bytecode to all nodes of the block chain, the block chain including at least one node.
In an embodiment of the present invention, before the user equipment compiles the smart contract into the bytecode, the method further includes:
and writing the intelligent contract.
The invention provides a block chain integrated dynamic type programming language device, comprising:
a calling module, configured to call a bytecode, where the bytecode is stored in a block chain, the block chain includes at least one node, the bytecode is compiled by an intelligent contract, the intelligent contract uniquely corresponds to the bytecode, and the intelligent contract is compiled by a dynamic type programming language;
the interpretation module is used for analyzing the byte codes through a byte code interpreter to obtain the intelligent contracts, and the intelligent contracts do not define variable types;
a definition module to define the variable types of the smart contracts;
and the execution module is used for executing the intelligent contract after the variable type is defined.
In an embodiment of the present invention, the method further includes:
and the storage module is used for storing the changed part of the block chain state and the variable type into the block chain after the intelligent contract is executed.
In an embodiment of the present invention, the method further includes:
the definition module is also used for calling an Application Programming Interface (API) of the intelligent contract;
the definition module is further configured to modify the intelligent contract.
The invention provides a block chain integrated dynamic type programming language device, comprising:
the compiling module is used for compiling the intelligent contract into byte codes, the intelligent contract and the byte codes are uniquely corresponding, the intelligent contract is compiled by a dynamic type programming language, and the intelligent contract does not define variable types;
a storage module to store the bytecode to all nodes of the block chain, the block chain including at least one node.
In an embodiment of the present invention, the method further includes:
and the compiling module is used for compiling the intelligent contract.
The invention provides a method and a device for integrating dynamic type programming languages on a block chain. Wherein, the method comprises the following steps: calling byte codes, wherein the byte codes are stored on a block chain, the block chain comprises at least one node, the byte codes are compiled by an intelligent contract, the intelligent contract is uniquely corresponding to the byte codes, and the intelligent contract is compiled by a dynamic type programming language; analyzing the byte codes through a byte code interpreter to obtain an intelligent contract, wherein the intelligent contract does not define the variable type; defining variable types of the intelligent contracts; and executing the intelligent contract after the variable type is defined. The method and the device for integrating the dynamic type programming language on the block chain improve the expandability of the intelligent contract on the block chain by using the intelligent contract of the dynamic type programming language on the block chain.
Drawings
In order to more clearly illustrate the embodiments of the present invention or the technical solutions in the prior art, the drawings used in the description of the embodiments or the prior art will be briefly described below, and it is obvious that the drawings in the following description are only some embodiments of the present invention, and for those skilled in the art, other drawings can be obtained according to these drawings without creative efforts.
FIG. 1 is a flowchart illustrating a first embodiment of a method for integrating dynamic type programming language on a blockchain according to the present invention;
FIG. 2 is a flowchart illustrating a second embodiment of a method for integrating dynamic type programming language on a blockchain according to the present invention;
FIG. 3 is a schematic block diagram of an embodiment of an integrated dynamic type programming language device on a blockchain according to the present invention;
FIG. 4 is a schematic diagram illustrating a second embodiment of an integrated VLAPI device on a blockchain according to the present invention;
FIG. 5 is a block diagram of a third embodiment of an integrated dynamic type programming language device on a blockchain according to the present invention;
FIG. 6 is a block diagram of a fourth embodiment of an integrated dynamic type programming language device on a blockchain according to the present invention.
Detailed Description
The technical solutions in the embodiments of the present invention will be clearly and completely described below with reference to the drawings in the embodiments of the present invention, and it is obvious that the described embodiments are only a part of the embodiments of the present invention, and not all of the embodiments. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
The terms "first," "second," "third," "fourth," and the like in the description and in the claims, as well as in the drawings, if any, are used for distinguishing between similar elements and not necessarily for describing a particular sequential or chronological order. It is to be understood that the data so used is interchangeable under appropriate circumstances such that the embodiments of the invention described herein are, for example, capable of operation in sequences other than those illustrated or otherwise described herein. Furthermore, the terms "comprises," "comprising," and "having," and any variations thereof, are intended to cover a non-exclusive inclusion, such that a process, method, system, article, or apparatus that comprises a list of steps or elements is not necessarily limited to those steps or elements expressly listed, but may include other steps or elements not expressly listed or inherent to such process, method, article, or apparatus.
The technical solution of the present invention will be described in detail below with specific examples. The following several specific embodiments may be combined with each other, and details of the same or similar concepts or processes may not be repeated in some embodiments.
FIG. 1 is a flowchart illustrating a method for integrating dynamic type programming language on a blockchain according to a first embodiment of the present invention. As shown in fig. 1, the execution subject of this embodiment is any node on the blockchain, and the method for integrating dynamic type programming language on the blockchain in this embodiment includes the following steps:
s101: and calling the byte codes, wherein the byte codes are stored on a block chain, the block chain comprises at least one node, the byte codes are compiled by an intelligent contract, the intelligent contract and the byte codes are uniquely corresponding, and the intelligent contract is compiled by a dynamic type programming language.
Specifically, when each node on the blockchain needs to execute the intelligent contract, the byte code of the intelligent contract is called from the blockchain. Each node on the block chain stores byte codes and is obtained by compiling the intelligent contract, and the intelligent contract is compiled by a dynamic type programming language. For example, in the embodiment, in a specific implementation, a dynamic type programming language bytecode virtual machine is integrated in a blockchain, so that more dynamic type programming languages of different kinds and syntax can be provided, and the dynamic type programming language code is compiled to generate specification-compliant bytecode and registered on the blockchain to be used as an intelligent contract. Further, the dynamic type programming language bytecode virtual machine can be compatible with the static type programming language.
S102: the intelligent contract is obtained by analyzing the byte codes through the byte code interpreter, and the variable type is undefined by the intelligent contract.
Specifically, the bytecode interpreter parses the bytecode called in S101 to obtain the intelligent contract corresponding to the bytecode. The bytecode interpreter is used for restoring the bytecode into a code form after the code is compiled. Since the intelligent contract in the present embodiment is implemented by a dynamic type programming language, the intelligent contract does not define a variable type.
S103: a variable type of the intelligent contract is defined.
After each node obtains the intelligent contract without the defined variable type, the variable type is defined for the intelligent contract according to the requirements of each node and the user. Wherein the defined variable types need to conform to the programming language syntax and specifications required by the intelligent contracts.
S104: and executing the intelligent contract after the variable type is defined.
Each node executes the intelligent contract after defining variables through S103.
The embodiment provides a method for integrating dynamic type programming languages on a block chain, which comprises the following steps: calling byte codes, wherein the byte codes are stored on a block chain, the block chain comprises at least one node, the byte codes are compiled by an intelligent contract, the intelligent contract is uniquely corresponding to the byte codes, and the intelligent contract is compiled by a dynamic type programming language; analyzing the byte codes through a byte code interpreter to obtain an intelligent contract, wherein the intelligent contract does not define the variable type; defining variable types of the intelligent contracts; and executing the intelligent contract after the variable type is defined. In the method for integrating the dynamic programming language on the blockchain provided by the embodiment, the intelligent contract of the dynamic programming language is used on the blockchain, so that the expandability of the intelligent contract on the blockchain is improved.
Further, in the above embodiment, after S104, the method further includes: and storing the changed part of the block chain state and the variable type after the intelligent contract is executed into the block chain.
Specifically, after the nodes on the blockchain execute the intelligent contract, the blockchain generates corresponding changes, the changed part of the blockchain is stored on the blockchain, and the unchanged part of the blockchain after the blockchain executes the intelligent contract is not repeatedly stored on the blockchain, so that the operation after the intelligent contract is executed is reduced, and the storage efficiency is improved.
For example, there is a special memory in each intelligent contract written by dynamic type programming language on the blockchain for storing the state of the blockchain, and the memory is stored on the blockchain and is logically queried and modified by the code in the intelligent contract when the intelligent contract is called and executed. After the nodes on the blockchain execute the intelligent contracts, if the inquiry and modification of the blockchain state are involved, the changed parts of the blockchain state in the memory are stored on the blockchain instead of storing all the changes in the memory on the blockchain. The memory may store numbers, boolean values, strings, mapping tables and arrays. The memory only stores the changed part of the state of the block chain to the block chain, so that the operating efficiency of the memory with larger data volume can be improved, and more complex service functions and larger user volume can be supported.
Further, in each of the above embodiments, before S103, the method further includes: calling an Application Programming Interface (API) of the intelligent contract; the smart contract is modified.
Specifically, the intelligent contract includes an API for calling the intelligent contract, and the API for calling the intelligent contract is executed after the intelligent contract is obtained through analysis in S102.
And then correspondingly modifying the intelligent contract, and modifying the intelligent contract according to the requirements of each node and the user. Wherein the modification to the intelligent contract requires programming language syntax and provisions that meet the requirements of the intelligent contract.
FIG. 2 is a flowchart illustrating a second method for integrating dynamic type programming language on a blockchain according to an embodiment of the present invention. As shown in fig. 2, the method for integrating dynamic programming language into a blockchain in this embodiment includes the following steps:
s201: the intelligent contract is compiled into byte codes, the intelligent contract and the byte codes are uniquely corresponding, the intelligent contract is compiled by a dynamic type programming language, and the intelligent contract does not define variable types.
Wherein, the user writes the intelligent contract into the block chain through the user equipment. The method comprises the steps of compiling a written intelligent contract into byte codes, wherein the intelligent contract is written by a dynamic type programming language.
S202: the bytecode is stored on all nodes of a block chain, the block chain comprising at least one node.
The user equipment stores the bytecode compiled in S201 into the blockchain, and all nodes on the blockchain can obtain the bytecode. For example, in a specific implementation, the dynamic type programming language bytecode virtual machine is integrated in the blockchain, so that more dynamic type programming languages of different kinds and syntax can be provided, and the user equipment compiles the dynamic type programming language code to generate specification-compliant bytecode and registers the specification-compliant bytecode onto the blockchain to be used as an intelligent contract. Further, the dynamic type programming language bytecode virtual machine can be compatible with the static type programming language.
Further, in the above embodiment, before S201, the method further includes: and (5) compiling an intelligent contract. Specifically, the intelligent contract may be written in the form of code by a user through a dynamic type programming language, or may be modified accordingly by calling other written intelligent contracts. Wherein the writing of the intelligent contract and the modification of the intelligent contract require programming language syntax and provisions that meet the requirements of the intelligent contract.
The embodiment provides a method for integrating dynamic type programming languages on a block chain, which comprises the following steps: compiling the intelligent contract into byte codes, wherein the intelligent contract is uniquely corresponding to the byte codes, the intelligent contract is compiled by a dynamic type programming language, and the intelligent contract does not define variable types; the bytecode is stored on all nodes of a block chain, the block chain comprising at least one node. In the method for integrating the dynamic programming language on the blockchain provided by the embodiment, the intelligent contract of the dynamic programming language is used on the blockchain, so that the expandability of the intelligent contract on the blockchain is improved.
FIG. 3 is a block diagram of a first embodiment of an integrated dynamic type programming language device on a blockchain according to the present invention. As shown in fig. 3, the apparatus for integrating dynamic type programming language on the blockchain of the present embodiment includes: a calling module 301, an interpreting module 302, a defining module 303 and an executing module 304.
The calling module 301 is configured to call a bytecode, where the bytecode is stored in a block chain, the block chain includes at least one node, the bytecode is compiled by an intelligent contract, the intelligent contract corresponds to the bytecode uniquely, and the intelligent contract is compiled by a dynamic type programming language.
The interpretation module 302 is used for parsing the bytecode through the bytecode interpreter to obtain the intelligent contract, and the variable type is not defined by the intelligent contract.
The definition module 303 is used to define the variable type of the intelligent contract.
The execution module 304 is used for executing the intelligent contract after the variable type is defined.
The apparatus for integrating the dynamic type programming language on the blockchain of the present embodiment can be correspondingly used to execute the technical solution of the method for integrating the dynamic type programming language on the blockchain shown in fig. 1, and the implementation principle and the technical effect are similar, and are not described herein again.
FIG. 4 is a block diagram of a second embodiment of the invention. As shown in fig. 4, on the basis of the above embodiment, the apparatus for integrating dynamic type programming language on a blockchain further includes: and the storage module 405, the storage module 405 is configured to store the variable part of the block chain state and the variable type after the intelligent contract is executed into the block chain.
Optionally, on the basis of each of the above embodiments, the definition module 303 is further configured to call an application programming interface API of the intelligent contract, and the definition module 303 is further configured to modify the intelligent contract.
FIG. 5 is a block diagram of a third embodiment of an integrated dynamic type programming language device on a blockchain according to the present invention. As shown in fig. 5, the apparatus for integrating dynamic type programming language on the blockchain of the present embodiment includes: a compiling module 501 and a storage module 502.
The compiling module 501 is configured to compile an intelligent contract into a byte code, where the intelligent contract and the byte code are uniquely corresponding, the intelligent contract is compiled by a dynamic type programming language, and the intelligent contract does not define a variable type.
The storage module 502 is configured to store the bytecode to all nodes of a block chain, where the block chain includes at least one node.
The apparatus for integrating the vlc on the blockchain in this embodiment may be correspondingly used to implement the technical solution of the method for integrating the vlc on the blockchain shown in fig. 2, and the implementation principle and the technical effect are similar, which are not described herein again.
FIG. 6 is a block diagram of a fourth embodiment of an integrated dynamic type programming language device on a blockchain according to the present invention. As shown in fig. 6, on the basis of the above embodiment, the apparatus for integrating dynamic type programming language on a blockchain further includes: the compiling module 601 is used for compiling the intelligent contract.
Those of ordinary skill in the art will understand that: all or a portion of the steps of implementing the above-described method embodiments may be performed by hardware associated with program instructions. The program may be stored in a computer-readable storage medium. When executed, the program performs steps comprising the method embodiments described above; and the aforementioned storage medium includes: various media that can store program codes, such as ROM, RAM, magnetic or optical disks.
Finally, it should be noted that: the above embodiments are only used to illustrate the technical solution of the present invention, and not to limit the same; while the invention has been described in detail and with reference to the foregoing embodiments, it will be understood by those skilled in the art that: the technical solutions described in the foregoing embodiments may still be modified, or some or all of the technical features may be equivalently replaced; and the modifications or the substitutions do not make the essence of the corresponding technical solutions depart from the scope of the technical solutions of the embodiments of the present invention.
Claims (8)
1. A method for integrating dynamic type programming language on a blockchain, comprising:
calling bytecode, wherein the bytecode is stored on a blockchain, the blockchain comprises at least one node, the bytecode is compiled by an intelligent contract, the intelligent contract and the bytecode uniquely correspond, the intelligent contract is compiled by a dynamic type programming language, a dynamic type programming language bytecode virtual machine is integrated in the blockchain, and the dynamic type programming language bytecode virtual machine can be compatible with a static type programming language;
analyzing the bytecode through a bytecode interpreter to obtain the intelligent contract, wherein the intelligent contract does not define the variable type;
defining the variable type of the smart contract;
executing the intelligent contract after the variable type is defined;
and storing the changed part of the block chain state and the variable type into the block chain after the intelligent contract is executed.
2. The method of claim 1, wherein the defining the variable type of the smart contract is preceded by:
calling an Application Programming Interface (API) of the intelligent contract;
the intelligent contract is modified.
3. A method for integrating dynamic type programming language on a blockchain, comprising:
compiling an intelligent contract into byte codes, wherein the intelligent contract and the byte codes are uniquely corresponding, the intelligent contract is compiled by a dynamic type programming language, a dynamic type programming language byte code virtual machine is integrated in a block chain, the dynamic type programming language byte code virtual machine is compatible with a static type programming language, and the intelligent contract does not define variable types; the execution process of the intelligent contract comprises the following steps: after the bytecode is analyzed through a bytecode interpreter to obtain the intelligent contract, defining the variable type of the intelligent contract, and executing the intelligent contract after defining the variable type;
storing the bytecode to all nodes of the block chain, the block chain including at least one node.
4. The method of claim 3, wherein prior to the user device compiling the smart contract into bytecode, further comprising:
and writing the intelligent contract.
5. An integrated dynamic type programming language device on a blockchain, comprising:
a calling module, configured to call a bytecode, where the bytecode is stored in a block chain, the block chain includes at least one node, the bytecode is compiled by an intelligent contract, the intelligent contract uniquely corresponds to the bytecode, the intelligent contract is compiled by a dynamic type programming language, a dynamic type programming language bytecode virtual machine is integrated in the block chain, and the dynamic type programming language bytecode virtual machine is compatible with a static type programming language;
the interpretation module is used for analyzing the byte codes through a byte code interpreter to obtain the intelligent contracts, and the intelligent contracts do not define variable types;
a definition module to define the variable types of the smart contracts;
the execution module is used for executing the intelligent contract after the variable type is defined;
and the storage module is used for storing the changed part of the block chain state and the variable type into the block chain after the intelligent contract is executed.
6. The apparatus of claim 5, further comprising:
the definition module is also used for calling an Application Programming Interface (API) of the intelligent contract;
the definition module is further configured to modify the intelligent contract.
7. An integrated dynamic type programming language device on a blockchain, comprising:
the compiling module is used for compiling the intelligent contract into byte codes, the intelligent contract and the byte codes are uniquely corresponding, the intelligent contract is compiled by a dynamic type programming language, a dynamic type programming language byte code virtual machine is integrated in a block chain, the dynamic type programming language byte code virtual machine is compatible with a static type programming language, and variable types are not defined by the intelligent contract; the execution process of the intelligent contract comprises the following steps: after the bytecode is analyzed through a bytecode interpreter to obtain the intelligent contract, defining the variable type of the intelligent contract, and executing the intelligent contract after defining the variable type;
a storage module to store the bytecode to all nodes of the block chain, the block chain including at least one node.
8. The apparatus of claim 7, further comprising:
and the compiling module is used for compiling the intelligent contract.
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN201611110167.9A CN106598579B (en) | 2016-12-06 | 2016-12-06 | Method and apparatus for integrating dynamic type programming language on blockchain |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN201611110167.9A CN106598579B (en) | 2016-12-06 | 2016-12-06 | Method and apparatus for integrating dynamic type programming language on blockchain |
Publications (2)
Publication Number | Publication Date |
---|---|
CN106598579A CN106598579A (en) | 2017-04-26 |
CN106598579B true CN106598579B (en) | 2020-12-25 |
Family
ID=58596337
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
CN201611110167.9A Active CN106598579B (en) | 2016-12-06 | 2016-12-06 | Method and apparatus for integrating dynamic type programming language on blockchain |
Country Status (1)
Country | Link |
---|---|
CN (1) | CN106598579B (en) |
Families Citing this family (31)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN107274186A (en) * | 2017-05-11 | 2017-10-20 | 上海点融信息科技有限责任公司 | The method and apparatus that intelligent contract-defined interface is obtained in block chain |
CN108959280B (en) * | 2017-05-17 | 2021-08-06 | 中国移动通信有限公司研究院 | Method and device for storing virtual resource associated information |
US11307835B2 (en) | 2017-07-07 | 2022-04-19 | nChain Holdings Limited | Method for controlling the flow execution of a generated script of a blockchain transaction |
CN107526624B (en) * | 2017-07-18 | 2020-12-08 | 杭州趣链科技有限公司 | Intelligent contract execution engine based on Java virtual machine |
GB201713046D0 (en) | 2017-08-15 | 2017-09-27 | Nchain Holdings Ltd | Computer-implemented system and method |
WO2019036831A1 (en) * | 2017-08-21 | 2019-02-28 | 达闼科技成都有限公司 | Information selection method, apparatus, electronic device and computer-readable storage medium |
CN107707410B (en) * | 2017-10-26 | 2021-04-27 | 上海点融信息科技有限责任公司 | Method for configuring system audit service, information processing device and readable storage medium |
CN107943469B (en) * | 2017-11-17 | 2022-01-11 | 深圳圣马歌科技有限公司 | Intelligent contract issuing method and device |
CN107943951B (en) * | 2017-11-24 | 2020-08-11 | 中钞信用卡产业发展有限公司杭州区块链技术研究院 | Method and system for retrieving block chain service information |
GB201720767D0 (en) | 2017-12-13 | 2018-01-24 | Barker Trevor | Computer-implemented system and method |
CN108874372B (en) * | 2018-06-20 | 2020-01-24 | 北京连琪科技有限公司 | Scale-based block chain contract implementation method and system |
CN108876619B (en) * | 2018-06-26 | 2022-07-05 | 北京溯安链科技有限公司 | Processing method, device, equipment and medium based on block chain intelligent contract |
CN109102305B (en) * | 2018-08-06 | 2022-03-29 | 程昔恩 | Article anti-counterfeiting and tracing method realized by block chain and intelligent contract thereof |
CN110827145A (en) * | 2018-08-07 | 2020-02-21 | 北京果仁宝软件技术有限责任公司 | Processing method and system based on block chain intelligent contract |
CN109241359A (en) * | 2018-08-18 | 2019-01-18 | 深圳市网心科技有限公司 | Block chain node device, block catenary system, block data processing system and method |
CN109213489A (en) * | 2018-08-21 | 2019-01-15 | 甲骨文科技时代(深圳)有限公司 | A kind of generation method and mobile terminal of block chain operating system |
CN110048846B (en) * | 2018-12-12 | 2020-04-14 | 阿里巴巴集团控股有限公司 | Signature verification method and system based on block chain intelligent contract |
US10733152B2 (en) | 2018-12-29 | 2020-08-04 | Alibaba Group Holding Limited | System and method for implementing native contract on blockchain |
PL3542494T3 (en) * | 2018-12-29 | 2021-08-23 | Advanced New Technologies Co., Ltd. | System and method for implementing native contract on blockchain |
CN109753288B (en) * | 2019-01-14 | 2022-02-15 | 杭州云象网络技术有限公司 | Intelligent contract compiling method suitable for formalized verification |
WO2020172880A1 (en) * | 2019-02-28 | 2020-09-03 | 云图有限公司 | Data processing method for blockchain contract and server |
CN109903163A (en) * | 2019-03-05 | 2019-06-18 | 杭州秘猿科技有限公司 | A kind of block bonusing method, device and the electronic equipment out of block chain |
CN118193137A (en) | 2019-03-26 | 2024-06-14 | 创新先进技术有限公司 | System and method for implementing different types of blockchain contracts |
CN110009362B (en) * | 2019-04-02 | 2021-07-06 | 北京众享比特科技有限公司 | Block chain intelligent contract modification method and device and computer readable storage medium |
CN110097464B (en) * | 2019-04-10 | 2021-09-14 | 北京京东尚科信息技术有限公司 | Intelligent contract generation method and device, electronic equipment and storage medium |
CN110335037A (en) * | 2019-04-19 | 2019-10-15 | 矩阵元技术(深圳)有限公司 | Method of commerce, device and the storage medium calculated based on block chain and Secure |
CN111399850B (en) * | 2020-03-27 | 2023-05-16 | 象链网络科技(上海)有限公司 | Multi-language intelligent contract compiling method based on block chain |
CN111736954B (en) * | 2020-06-24 | 2024-01-05 | 陈鹏 | Multi-intelligent contract virtual machine implementation method, multi-intelligent contract virtual machine and system |
CN112053261B (en) * | 2020-08-07 | 2024-06-04 | 深圳区块大陆科技有限公司 | Method for realizing free arbitration on block chain |
CN112631613A (en) * | 2020-12-29 | 2021-04-09 | 杭州趣链科技有限公司 | Intelligent contract deploying and calling method based on block chain platform and related equipment |
CN113077260A (en) * | 2021-04-13 | 2021-07-06 | 支付宝(杭州)信息技术有限公司 | Data access method and device based on block chain and electronic equipment |
Citations (4)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN105323064A (en) * | 2014-07-01 | 2016-02-10 | 柯呈翰 | System and method for on-line adding of instant file dynamic label and on-line encryption |
CN105976231A (en) * | 2016-06-24 | 2016-09-28 | 深圳前海微众银行股份有限公司 | Asset management method based on intelligent block chain contracts and nodes |
CN106060036A (en) * | 2016-05-26 | 2016-10-26 | 布比(北京)网络技术有限公司 | Decentralized consenting method and apparatus |
CN106101242A (en) * | 2016-06-24 | 2016-11-09 | 深圳前海微众银行股份有限公司 | The construction method of block chain cloud service platform and device |
Family Cites Families (7)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20130205282A1 (en) * | 2012-02-07 | 2013-08-08 | Microsoft Corporation | Transferring program execution from compiled code to interpreted code |
US9027007B2 (en) * | 2013-03-06 | 2015-05-05 | Qualcomm Incorporated | Reducing excessive compilation times |
CN104182267B (en) * | 2013-05-21 | 2019-10-25 | 南京中兴新软件有限责任公司 | Compilation Method, means of interpretation, device and user equipment |
CN103927397B (en) * | 2014-05-05 | 2017-02-22 | 湖北文理学院 | Recognition method for Web page link blocks based on block tree |
CN106033370B (en) * | 2015-03-16 | 2019-12-10 | 龙芯中科技术有限公司 | Method and device for realizing 64-bit Java virtual machine |
CN105430767B (en) * | 2016-01-17 | 2019-04-16 | 罗轶 | Intelligence row packet |
CN205563375U (en) * | 2016-03-16 | 2016-09-07 | 彭军红 | Can move card computer of digital cash wallet procedure |
-
2016
- 2016-12-06 CN CN201611110167.9A patent/CN106598579B/en active Active
Patent Citations (4)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN105323064A (en) * | 2014-07-01 | 2016-02-10 | 柯呈翰 | System and method for on-line adding of instant file dynamic label and on-line encryption |
CN106060036A (en) * | 2016-05-26 | 2016-10-26 | 布比(北京)网络技术有限公司 | Decentralized consenting method and apparatus |
CN105976231A (en) * | 2016-06-24 | 2016-09-28 | 深圳前海微众银行股份有限公司 | Asset management method based on intelligent block chain contracts and nodes |
CN106101242A (en) * | 2016-06-24 | 2016-11-09 | 深圳前海微众银行股份有限公司 | The construction method of block chain cloud service platform and device |
Also Published As
Publication number | Publication date |
---|---|
CN106598579A (en) | 2017-04-26 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
CN106598579B (en) | Method and apparatus for integrating dynamic type programming language on blockchain | |
US7739696B2 (en) | Message translation systems and methods | |
CN110149800B (en) | Apparatus for processing abstract syntax tree associated with source code of source program | |
CN106648662B (en) | Report generation device and method based on project cost calculation description language BCL | |
US20150339215A1 (en) | Systems and Methods for Testing Terminal Applications | |
CN100492290C (en) | Method for acquiring and converting the state of component in the time of operation during software dynamic evolvement | |
CN108369591B (en) | System and method for caching and parameterizing IR | |
US8464230B2 (en) | Methods and systems to implement non-ABI conforming features across unseen interfaces | |
CN111249736B (en) | Code processing method and device | |
CN111752571A (en) | Program upgrading method, device, equipment and storage medium | |
CN110414261A (en) | A kind of data desensitization method, device, equipment and readable storage medium storing program for executing | |
KR101356676B1 (en) | Translating expressions in a computing environment | |
CN109614772A (en) | Code conversion method and device based on application installation package file | |
CN102779044B (en) | The dissection process system of expression formula and analyzing and processing method | |
CN109933350A (en) | The method, apparatus and electronic equipment of embedded code in the application | |
CN107239484A (en) | Database operation method, device and computer equipment | |
CN111966383A (en) | Quantitative analysis method, system and medium for operating system kernel compatibility | |
CN105204837A (en) | Realizing method and device for logic programming | |
CN111435312A (en) | Application program management method and device and electronic equipment | |
CN105005497A (en) | Method and apparatus for calling local function in Java card virtual machine | |
CN114115884B (en) | Method and related device for managing programming service | |
CN107817972B (en) | Cache code processing method and device, storage medium and electronic equipment | |
CN107451050B (en) | Function acquisition method and device and server | |
CN115098158A (en) | SDK packaging method and device, computer equipment and storage medium | |
CN108369499B (en) | Code virtualization system and method |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
PB01 | Publication | ||
PB01 | Publication | ||
SE01 | Entry into force of request for substantive examination | ||
SE01 | Entry into force of request for substantive examination | ||
GR01 | Patent grant | ||
GR01 | Patent grant |