CN111258714A - Intelligent contract execution method for block chain - Google Patents

Intelligent contract execution method for block chain Download PDF

Info

Publication number
CN111258714A
CN111258714A CN202010031773.1A CN202010031773A CN111258714A CN 111258714 A CN111258714 A CN 111258714A CN 202010031773 A CN202010031773 A CN 202010031773A CN 111258714 A CN111258714 A CN 111258714A
Authority
CN
China
Prior art keywords
contract
intelligent
intelligent contract
block chain
target function
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.)
Granted
Application number
CN202010031773.1A
Other languages
Chinese (zh)
Other versions
CN111258714B (en
Inventor
丘志杰
徐豪
陈虹
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
University of Electronic Science and Technology of China
Guangdong Electronic Information Engineering Research Institute of UESTC
Original Assignee
University of Electronic Science and Technology of China
Guangdong Electronic Information Engineering Research Institute of UESTC
Priority date (The priority date 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 date listed.)
Filing date
Publication date
Application filed by University of Electronic Science and Technology of China, Guangdong Electronic Information Engineering Research Institute of UESTC filed Critical University of Electronic Science and Technology of China
Priority to CN202010031773.1A priority Critical patent/CN111258714B/en
Publication of CN111258714A publication Critical patent/CN111258714A/en
Application granted granted Critical
Publication of CN111258714B publication Critical patent/CN111258714B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/455Emulation; Interpretation; Software simulation, e.g. virtualisation or emulation of application or operating system execution engines
    • G06F9/45533Hypervisors; Virtual machine monitors
    • G06F9/45558Hypervisor-specific management and integration aspects
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
    • G06Q40/00Finance; Insurance; Tax strategies; Processing of corporate or income taxes
    • G06Q40/04Trading; Exchange, e.g. stocks, commodities, derivatives or currency exchange
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/455Emulation; Interpretation; Software simulation, e.g. virtualisation or emulation of application or operating system execution engines
    • G06F9/45533Hypervisors; Virtual machine monitors
    • G06F9/45558Hypervisor-specific management and integration aspects
    • G06F2009/45562Creating, deleting, cloning virtual machine instances

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Software Systems (AREA)
  • Business, Economics & Management (AREA)
  • Finance (AREA)
  • General Physics & Mathematics (AREA)
  • Accounting & Taxation (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • Development Economics (AREA)
  • Economics (AREA)
  • Marketing (AREA)
  • Strategic Management (AREA)
  • Technology Law (AREA)
  • General Business, Economics & Management (AREA)
  • Management, Administration, Business Operations System, And Electronic Commerce (AREA)

Abstract

The invention discloses a block chain intelligent contract execution method, wherein a contract data service module and a contract loading module are arranged in a block chain link point, the block chain link point receives a dynamic shared library of an intelligent contract and intelligent contract deployment transaction from a user, the intelligent contract dynamic shared library is forwarded to the contract loading module for loading after validity check, a contract container is created and started, then a contract service program is started, and the block chain link point forwards a contract service program to execute after receiving an intelligent contract request from the user. By adopting the method and the system, the loading operation of the intelligent contract can be rapidly completed, and the convenience and the high efficiency of the intelligent contract calling of the block chain are improved.

Description

Intelligent contract execution method for block chain
Technical Field
The invention belongs to the technical field of block chains, and particularly relates to an intelligent contract execution method for a block chain.
Background
The blockchain technology, as a brand-new distributed infrastructure and computing paradigm, covers a variety of technologies such as P2P networks, encryption algorithms, intelligent contracts, consensus algorithms, and the like. Based on the integrated technical stack, a block chain realizes a system with tamper resistance, traceability and decentralization, and effectively solves the problems of central authority, poor reliability, low safety and the like in the traditional mode.
A Smart contract (Smart contract) is a computer protocol intended to propagate, verify or execute contracts in an informational manner. Essentially, an intelligent contract in a blockchain is a piece of code that is written together by the various participants, validated, deployed on the blockchain, and run in sandbox form. However, most of the existing intelligent contract execution has the problems of complex design, difficult function expansion and the like.
Disclosure of Invention
The invention aims to overcome the defects of the prior art and provide the block chain intelligent contract execution method, so that the loading operation of the intelligent contract is quickly completed, and the convenience and the efficiency of calling the block chain intelligent contract are improved.
In order to achieve the above purpose, the block chain intelligent contract execution method of the present invention comprises the following steps:
s1: setting a contract data service module and a contract loading module in a block link point, wherein the contract data service module is realized by Remote Procedure Call (RPC) based on a network socket Universal Description System (UDS) and is used for providing required service data for the execution of an intelligent contract target function, and the contract data service module is started in the form of the UDS when the block link point is started; the contract loading module is used for creating and starting a contract Docker container;
s2: the block chain link point receives a dynamic shared library of the intelligent contract and an intelligent contract deployment transaction from a user, and a file in the dynamic shared library is compiled by an intelligent contract source code; the block link points carry out validity check on the received intelligent contract deployment transaction, and the intelligent contract dynamic shared library is forwarded to the contract loading module after the check is passed;
s3: the contract loading module creates a contract Docker mirror image by using the received intelligent contract dynamic shared library and the basic environment Docker mirror image, then performs directory mapping on the contract and the block link point to obtain a directory mapping relation, and then creates and starts a contract Docker container by using the contract Docker mirror image and the directory mapping relation;
s4: starting a contract service program in the Docker container, analyzing a contract dynamic shared library in the starting process to create an intelligent contract instance, and creating a client communicated with a contract data service module;
s5: the block chain node receives an intelligent contract request from a user, wherein the intelligent contract request comprises a contract address, a target function name and an execution parameter thereof; the block chain link points carry out validity check on the received intelligent contract calling request, and the intelligent contract calling request is forwarded to a corresponding contract service program according to the contract address after the check is passed;
s6: firstly, analyzing a target function name and an execution parameter thereof in the intelligent contract calling request by a contract service program in the Docker container, and creating an instance object corresponding to an intelligent contract programming interface; then, acquiring a handle of the target function by using a reflection mechanism according to the contract instance and the target function name; finally, the target function execution parameter and the programming interface instance object are packaged into the request parameter of the target function, the corresponding processing logic is completed through the obtained target function handle, and the contract service program utilizes the instance object of the programming interface to obtain the corresponding service data from the contract data service module in the whole processing process.
The block chain intelligent contract execution method comprises the steps that a contract data service module and a contract loading module are arranged in a block chain link point, the block chain link point receives a dynamic shared library of an intelligent contract and intelligent contract deployment transaction from a user, the intelligent contract dynamic shared library is forwarded to the contract loading module for loading after validity check is carried out, a contract Docker container is created and started, then a contract service program is started, and the block chain link point forwards an intelligent contract request to the contract service program from the user to be executed after receiving the intelligent contract request.
The intelligent contract source code is compiled into a form of a dynamic shared library file, has the characteristics of concise code file and convenience for quick loading, adopts a Docker container mode to run the intelligent contract, and integrates a contract data service module, a contract loading module and a contract service program in a UDS service mode, has the characteristics of simple and convenient design, and can realize mutual calling among the intelligent contracts, so that the intelligent contracts are not mutually independent, and the expansion of service functions is facilitated.
Drawings
Fig. 1 is a flowchart of an embodiment of a method for executing a blockchain intelligent contract according to the present invention.
Detailed Description
The following description of the embodiments of the present invention is provided in order to better understand the present invention for those skilled in the art with reference to the accompanying drawings. It is to be expressly noted that in the following description, a detailed description of known functions and designs will be omitted when it may obscure the subject matter of the present invention.
Examples
Fig. 1 is a flowchart of an embodiment of a method for executing a blockchain intelligent contract according to the present invention. As shown in fig. 1, the method for executing a block chain intelligent contract according to the present invention specifically includes the steps of:
s101: setting block chain nodes:
setting a contract data service module and a contract loading module in a block link point, wherein the contract data service module is realized by Remote Procedure Call (RPC) based on a network socket UDS (Unix Domain socket) and is used for providing required service data for the execution of an intelligent contract target function, and the contract data service module is started in the form of the UDS when the block link point is started; the contract load module is used to create and launch a contract Docker container.
S102: deploying intelligent contracts:
the block chain link point receives a dynamic shared library of the intelligent contract and an intelligent contract deployment transaction from a user, and a file in the dynamic shared library is compiled by an intelligent contract source code; and the block link points carry out validity check on the received intelligent contract deployment transaction, and forward the intelligent contract dynamic shared library to the contract loading module after the check is passed.
S103: contract loading:
the contract loading module creates a contract Docker mirror image by using the received intelligent contract dynamic shared library and the basic environment Docker mirror image, then carries out directory mapping on the contract and the block link point to obtain a directory mapping relation, and then creates and starts a contract Docker container by using the contract Docker mirror image and the directory mapping relation. The underlying environment Docker image only contains the Ubuntu operating system and the contract service program.
The specific process of directory mapping comprises the following steps:
1) associating a UDS file created when a contract data service module is started with a file in a Docker container;
2) associating a directory where a UDS file is located and created when a contract service program is started with a directory of the intelligent contract in a block chain node;
3) the directories of all the contracts in the blockchain are associated with the newly-created contract directory in the contract Docker container.
S104: contract service program starts:
and (3) starting a contract service program in the Docker container (the contract service program can be automatically started in an RPC service form based on the UDS after the contract Docker container is started), analyzing the contract dynamic shared library in the starting process to create an intelligent contract instance, and creating a client side for contract data service module communication. Wherein the intelligent contract instance is created by a contract service program using a reflection mechanism when loading the intelligent contract dynamic shared library, and the client in communication with the contract data service module is created by the contract service program using a UDS file of a contract data service in a contract Docker container.
S105: intelligent contract request processing:
the block chain node receives an intelligent contract request from a user, wherein the intelligent contract request comprises a contract address, a target function name and an execution parameter thereof; and the block chain link points carry out validity check on the received intelligent contract calling request, and the intelligent contract calling request is forwarded to a corresponding contract service program according to the contract address after the check is passed.
S106: executing an intelligent contract:
firstly, analyzing a target function name and an execution parameter thereof in the intelligent contract calling request by a contract service program in the Docker container, and creating an instance object corresponding to an intelligent contract programming interface; then, acquiring a handle of the target function by using a reflection mechanism according to the contract instance and the target function name; finally, the target function execution parameters and the programming interface instance object are packaged into request parameters of the target function, corresponding processing logic is completed through the obtained target function handle, and the contract service program utilizes the instance object of the programming interface to obtain corresponding service data through a client communicated with the contract data service module in the whole processing process.
In order to realize mutual calling among intelligent contracts, the contract service program can establish communication connection with the contract service programs in the contract Docker containers of other intelligent contracts by using the UDS files of all intelligent contracts in the contract Docker containers and send contract calling requests to the contract service programs, so that calling among the intelligent contracts is realized
In order to better explain the technical scheme of the invention, the invention is explained by taking the transfer application in the payment field as you, and the specific process is as follows:
the blockchain node starts a contract data services module in the form of a UDS at start-up.
The user writes Transfer contract code according to a programming interface predetermined by the contract service program, and a Transfer function in the contract code provides specific Transfer operation. And compiling the transfer contracts into a dynamic shared library by the user, packaging the dynamic shared library, and sending the dynamic shared library to the block link points to request contract deployment. And the block chain node firstly verifies the legality of the deployment request, after the legality passes, the contract loading module creates a Docker mirror image of the transfer contract by using the dynamic shared library of the transfer contract and the Docker mirror image of the basic environment, and then creates and starts a Docker container of the transfer contract by using the Docker mirror image of the transfer contract and the set directory mounting relation.
And starting a contract service program in the transfer contract Docker container, analyzing a dynamic shared library of the transfer contract to create a transfer contract instance object, then creating a client communicated with a contract data service module, and finally finishing the starting of the whole service in a UDS form.
And the user sends a contract calling request to the block link point, the contract address in the request is the contract address of the Transfer contract, the target function name is Transfer, and the execution parameter is that the user A transfers 10 yuan to the user B. And the block link point carries out validity check on the calling request, and forwards the request to the contract service program after the check is passed.
The contract service program firstly obtains a target function name Transfer and an execution parameter thereof from the contract calling request, the user A transfers 10 elements to the user B, then the contract service program creates an instance object corresponding to an intelligent contract programming interface, then a reflection mechanism is used for obtaining a function handle named Transfer from the Transfer contract instance object, then the execution parameter of the target function, the user A transfers 10 elements to the user B and the instance object of the programming interface are packaged into a request parameter of the target function, finally the parameter and the function handle of the Transfer are used for executing real Transfer operation logic, and when the Transfer logic is executed, the instance object of the programming interface is used for requesting corresponding business data through a client communicated with the contract data service module to complete account balance change.
Although illustrative embodiments of the present invention have been described above to facilitate the understanding of the present invention by those skilled in the art, it should be understood that the present invention is not limited to the scope of the embodiments, and various changes may be made apparent to those skilled in the art as long as they are within the spirit and scope of the present invention as defined and defined by the appended claims, and all matters of the invention which utilize the inventive concepts are protected.

Claims (4)

1. A block chain intelligent contract execution method is characterized by comprising the following steps:
s1: setting a contract data service module and a contract loading module in a block link point, wherein the contract data service module is realized by Remote Procedure Call (RPC) based on a network socket Universal Description System (UDS) and is used for providing required service data for the execution of an intelligent contract target function, and the contract data service module is started in the form of the UDS when the block link point is started; the contract loading module is used for creating and starting a contract Docker container;
s2: the block chain link point receives a dynamic shared library of the intelligent contract and an intelligent contract deployment transaction from a user, and a file in the dynamic shared library is compiled by an intelligent contract source code; the block link points carry out validity check on the received intelligent contract deployment transaction, and the intelligent contract dynamic shared library is forwarded to the contract loading module after the check is passed;
s3: the contract loading module creates a contract Docker mirror image by using the received intelligent contract dynamic shared library and the basic environment Docker mirror image, then performs directory mapping on the contract and the block link point to obtain a directory mapping relation, and then creates and starts a contract Docker container by using the contract Docker mirror image and the directory mapping relation;
s4: starting a contract service program in the Docker container, analyzing a contract dynamic shared library in the starting process to create an intelligent contract instance, and creating a client communicated with a contract data service module;
s5: the block chain node receives an intelligent contract request from a user, wherein the intelligent contract request comprises a contract address, a target function name and an execution parameter thereof; the block chain link points carry out validity check on the received intelligent contract calling request, and the intelligent contract calling request is forwarded to a corresponding contract loading service program according to the contract address after the check is passed;
s6: firstly, analyzing a target function name and an execution parameter thereof in the intelligent contract calling request by a contract service program in the Docker container, and creating an instance object corresponding to an intelligent contract programming interface; then, acquiring a handle of the target function by using a reflection mechanism according to the contract instance and the target function name; finally, the target function execution parameter and the programming interface instance object are packaged into the request parameter of the target function, the corresponding processing logic is completed through the obtained target function handle, and the contract service program utilizes the instance object of the programming interface to obtain the corresponding service data from the contract data service module in the whole processing process.
2. The method of claim 1, wherein the step of mapping the directory in step S3 comprises:
1) associating a UDS file created when a contract data service module is started with a file in a Docker container;
2) associating a directory where a UDS file is located and created when a contract service program is started with a directory of the intelligent contract in a block chain node;
3) the directories of all the contracts in the blockchain are associated with the newly-created contract directory in the contract Docker container.
3. A method for block chain intelligent contract execution according to claim 1, wherein in step S4, the intelligent contract instance is created by a contract service program using a reflection mechanism when loading the intelligent contract dynamic shared library, and the client communicating with the contract data service module is created by the contract service program using a UDS file of the contract data service in the contract Docker container.
4. A block chain intelligent contract execution method according to claim 1, wherein the contract service program establishes a communication connection with the contract service programs in the contract Docker containers of other intelligent contracts by using UDS files of all intelligent contracts in the contract Docker containers, and sends contract call requests thereto.
CN202010031773.1A 2020-01-13 2020-01-13 Intelligent contract execution method for block chain Active CN111258714B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010031773.1A CN111258714B (en) 2020-01-13 2020-01-13 Intelligent contract execution method for block chain

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010031773.1A CN111258714B (en) 2020-01-13 2020-01-13 Intelligent contract execution method for block chain

Publications (2)

Publication Number Publication Date
CN111258714A true CN111258714A (en) 2020-06-09
CN111258714B CN111258714B (en) 2023-03-10

Family

ID=70948746

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010031773.1A Active CN111258714B (en) 2020-01-13 2020-01-13 Intelligent contract execution method for block chain

Country Status (1)

Country Link
CN (1) CN111258714B (en)

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112035090A (en) * 2020-07-13 2020-12-04 翼帆数字科技(苏州)有限公司 Intelligent contract management system and method based on containerization technology
CN113312429A (en) * 2021-06-22 2021-08-27 工银科技有限公司 Intelligent contract management system, method, medium, and article in a blockchain
CN113360251A (en) * 2021-08-11 2021-09-07 北京微芯感知科技有限公司 Intelligent contract execution and cross-contract calling method, device and storage medium
CN116975850A (en) * 2023-09-25 2023-10-31 腾讯科技(深圳)有限公司 Contract operation method, contract operation device, electronic equipment and storage medium
CN112035090B (en) * 2020-07-13 2024-06-07 翼帆数字科技(苏州)有限公司 Intelligent contract intelligent management system and method based on containerization technology

Citations (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107169765A (en) * 2017-05-11 2017-09-15 电子科技大学 A kind of method adjusted into Mobile state of being known together based on business degree of belief to block chain
CN109032706A (en) * 2018-07-16 2018-12-18 百度在线网络技术(北京)有限公司 Intelligent contract executes method, apparatus, equipment and storage medium
CN109240900A (en) * 2018-08-16 2019-01-18 北京京东尚科信息技术有限公司 Block chain network service platform and its intelligent contract detection method, storage medium
CN109299587A (en) * 2018-09-11 2019-02-01 平安科技(深圳)有限公司 Algorithm protection method, device, equipment and storage medium based on go language
WO2019072310A2 (en) * 2018-12-29 2019-04-18 Alibaba Group Holding Limited System and method for implementing native contract on blockchain
CN109766722A (en) * 2019-01-22 2019-05-17 苏州同济区块链研究院有限公司 The method and its system of intelligent contract are constructed in a kind of block chain
WO2019133308A1 (en) * 2017-12-29 2019-07-04 Ebay Inc. Secure management of content distribution data blocks on a blockchain
US20190305932A1 (en) * 2018-03-30 2019-10-03 Townsend Security, Inc. Distributed key management and encryption for blockchains
CN110392052A (en) * 2019-07-22 2019-10-29 中国工商银行股份有限公司 A kind of block chain intelligence contract processing system and method
CN110390213A (en) * 2019-07-31 2019-10-29 中国工商银行股份有限公司 The security deployment method and system of intelligent contract under block chain network environment
CN110399184A (en) * 2019-07-31 2019-11-01 中国工商银行股份有限公司 The execution method and device of intelligent contract in block chain
CN110572398A (en) * 2019-09-10 2019-12-13 腾讯科技(深圳)有限公司 block chain network control method, device, equipment and storage medium

Patent Citations (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107169765A (en) * 2017-05-11 2017-09-15 电子科技大学 A kind of method adjusted into Mobile state of being known together based on business degree of belief to block chain
WO2019133308A1 (en) * 2017-12-29 2019-07-04 Ebay Inc. Secure management of content distribution data blocks on a blockchain
US20190305932A1 (en) * 2018-03-30 2019-10-03 Townsend Security, Inc. Distributed key management and encryption for blockchains
CN109032706A (en) * 2018-07-16 2018-12-18 百度在线网络技术(北京)有限公司 Intelligent contract executes method, apparatus, equipment and storage medium
CN109240900A (en) * 2018-08-16 2019-01-18 北京京东尚科信息技术有限公司 Block chain network service platform and its intelligent contract detection method, storage medium
CN109299587A (en) * 2018-09-11 2019-02-01 平安科技(深圳)有限公司 Algorithm protection method, device, equipment and storage medium based on go language
CN110249307A (en) * 2018-12-29 2019-09-17 阿里巴巴集团控股有限公司 System and method for executing primary contract on block chain
WO2019072310A2 (en) * 2018-12-29 2019-04-18 Alibaba Group Holding Limited System and method for implementing native contract on blockchain
CN109766722A (en) * 2019-01-22 2019-05-17 苏州同济区块链研究院有限公司 The method and its system of intelligent contract are constructed in a kind of block chain
CN110392052A (en) * 2019-07-22 2019-10-29 中国工商银行股份有限公司 A kind of block chain intelligence contract processing system and method
CN110390213A (en) * 2019-07-31 2019-10-29 中国工商银行股份有限公司 The security deployment method and system of intelligent contract under block chain network environment
CN110399184A (en) * 2019-07-31 2019-11-01 中国工商银行股份有限公司 The execution method and device of intelligent contract in block chain
CN110572398A (en) * 2019-09-10 2019-12-13 腾讯科技(深圳)有限公司 block chain network control method, device, equipment and storage medium

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
A. BRINCKMAN ET AL: ""A Comparative Evaluation of Blockchain Systems for Application Sharing Using Containers"", 《2017 IEEE 13TH INTERNATIONAL CONFERENCE ON E-SCIENCE (E-SCIENCE)》 *
朱岩等: ""基于安全多方计算的区块链智能合约执行系统"", 《密码学报》 *
陈虹: ""基于区块链技术的学分银行构建"", 《中国职业技术教育》 *

Cited By (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112035090A (en) * 2020-07-13 2020-12-04 翼帆数字科技(苏州)有限公司 Intelligent contract management system and method based on containerization technology
CN112035090B (en) * 2020-07-13 2024-06-07 翼帆数字科技(苏州)有限公司 Intelligent contract intelligent management system and method based on containerization technology
CN113312429A (en) * 2021-06-22 2021-08-27 工银科技有限公司 Intelligent contract management system, method, medium, and article in a blockchain
CN113312429B (en) * 2021-06-22 2023-01-17 工银科技有限公司 Intelligent contract management system, method, medium, and article in a blockchain
CN113360251A (en) * 2021-08-11 2021-09-07 北京微芯感知科技有限公司 Intelligent contract execution and cross-contract calling method, device and storage medium
CN113360251B (en) * 2021-08-11 2021-12-21 北京微芯感知科技有限公司 Intelligent contract execution and cross-contract calling method, device and storage medium
CN116975850A (en) * 2023-09-25 2023-10-31 腾讯科技(深圳)有限公司 Contract operation method, contract operation device, electronic equipment and storage medium
CN116975850B (en) * 2023-09-25 2024-01-05 腾讯科技(深圳)有限公司 Contract operation method, contract operation device, electronic equipment and storage medium

Also Published As

Publication number Publication date
CN111258714B (en) 2023-03-10

Similar Documents

Publication Publication Date Title
CN111258714B (en) Intelligent contract execution method for block chain
CN109542457B (en) Distributed application distribution and deployment system and method for edge computing network
WO2021109735A1 (en) Cross-chain-network-based resource processing method, and device
CN110377438B (en) Routing method, device and system of cross-process communication interface
CN111612614A (en) Public link-based sub-chain service system
TWI767182B (en) H5-Based Access Components and Mobile Terminals
CN110187912B (en) Node selection method and device
US7519950B2 (en) Method and system for version negotiation of distributed objects
CN111917737B (en) Cross-network RPC calling system and method
US10817284B2 (en) Melding of mediation flow service component architecture (SCA) components
CN110417857B (en) Block chain protocol processing device, processing method and block chain
CN112769794B (en) Data conversion method and device
CN109104368B (en) Connection request method, device, server and computer readable storage medium
US20130160027A1 (en) Composing message processing pipelines
JP2010525426A (en) Scriptable object model for network-based services
CN112052235A (en) Method and device for migrating block chain transaction data
CN110099068B (en) Method, device and equipment for interaction between open platforms based on block chains
EP2445171B1 (en) File transfer protocol client and implementing method thereof
CN106550026B (en) Network communication device and method
CN111683005A (en) Internet of things intelligent gateway equipment and construction method thereof
CN111901384A (en) System, method, electronic device and readable storage medium for processing message
CN104570967A (en) Android system based remote control method and system
CN112732677B (en) Block chain link point deployment method, device, equipment and storage medium
CN110050291B (en) Aggregation platform, demand owner and methods thereof
US8504669B2 (en) System and method for OSGi-based service delivery framework

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