CN110569110B - Block chain method and electronic equipment supporting interactive multiple virtual machines - Google Patents

Block chain method and electronic equipment supporting interactive multiple virtual machines Download PDF

Info

Publication number
CN110569110B
CN110569110B CN201910858460.0A CN201910858460A CN110569110B CN 110569110 B CN110569110 B CN 110569110B CN 201910858460 A CN201910858460 A CN 201910858460A CN 110569110 B CN110569110 B CN 110569110B
Authority
CN
China
Prior art keywords
contract
virtual machine
virtual machines
block chain
executed
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
Application number
CN201910858460.0A
Other languages
Chinese (zh)
Other versions
CN110569110A (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.)
Hangzhou Rivtower Technology Co Ltd
Original Assignee
Cryptape Co ltd
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 Cryptape Co ltd filed Critical Cryptape Co ltd
Priority to CN201910858460.0A priority Critical patent/CN110569110B/en
Publication of CN110569110A publication Critical patent/CN110569110A/en
Application granted granted Critical
Publication of CN110569110B publication Critical patent/CN110569110B/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
    • 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/45595Network integration; Enabling network access in virtual machine instances

Abstract

The invention discloses a blockchain method supporting interactive multiple virtual machines, electronic equipment and a computer-readable storage medium. The method comprises the following steps: inserting a universal API layer between various virtual machines and a world state, wherein the universal API layer is used for butting various virtual machines, and on a block chain consensus node, a consensus module calls the API layer to deliver packaged transactions to the virtual machines for execution; when the virtual machine is executed, reading and writing the state, and reversely operating the state data on the node through the callback of the API layer; creating a contract, wherein when a contract publisher publishes the contract, a field is attached to indicate the type of a virtual machine which needs to be interpreted and executed by the contract; when a contract caller calls a contract, a block chain system acquires the virtual machine type declared by a contract publisher, and inputs of the contract caller and a contract code are jointly transmitted to a virtual machine of a specified type for interpretation and execution; and finishing the transaction to finish the modification of the world state of the block chain.

Description

Block chain method and electronic equipment supporting interactive multiple virtual machines
Technical Field
The invention belongs to the technical field of block chains, and particularly relates to a block chain method, electronic equipment and a computer-readable storage medium for supporting interactive multiple virtual machines.
Background
As the application complexity of the blockchain system increases, the processing requirements for the blockchain system become higher and higher. In the prior art, a blockchain (blockchain) refers to a series of transaction records that are cryptographically connected and protect content. Each tile contains the cryptographic hash of the previous tile, the corresponding timestamp, and the transaction data, such that the content of the tile has tamper-resistant characteristics. The use of distributed accounts concatenated with blockchains allows both parties to effectively record transactions and to permanently validate such transactions. A virtual machine (virtual machine) refers to a complete computer system which is simulated by software, has complete hardware system functions and operates in an isolation environment; such as a virtualized physical machine VMware, a Java virtual machine, etc. The blockchain virtual machine is a code running environment established on a blockchain system, and is mainly used for processing intelligent contracts in the blockchain system. A smart contract (smart contract) is a computer protocol that aims to propagate, verify or execute contracts in an informative way. May contain some arbitrary data or functions that parse data, may receive user input and direct the virtual machine to parse through the user input. Smart contracts allow trusted transactions to be conducted without third parties, which transactions are traceable and irreversible. World state is a mapping of addresses (accounts) to account states, and can be viewed as a global state that is continually updated as transactions are performed. All information for an account is embodied in the world state and is maintained by the world state tree.
By the blockchain system defined in the above way, most blockchain systems currently running only support running one virtual machine on one chain, for example, an etherhouse only supports the EVM virtual machine, and an EOS only supports the WASM virtual machine. The existing virtual machine operates the state from an instruction level, so that the world state and the virtual machine are tightly coupled, the state of a block chain depends on a specific virtual machine, such as an EVM (virtual machine management module) and the world state of the virtual machine are coupled, and an EVM bottom layer provides instructions for operating the world state (such as instructions of two read-write states of SSTORE and SSLOAD). This uniqueness of supporting virtual machines greatly limits the contract programming languages that a blockchain system can support.
Disclosure of Invention
In view of the above technical problems, the present invention is directed to providing a blockchain method, an electronic device and a computer-readable storage medium supporting interactive multi-virtual machines, for strictly decoupling a world state and a virtual machine so that a state of a blockchain is not dependent on a specific virtual machine.
In order to solve the technical problems, the invention adopts the following technical scheme:
in a first aspect, an embodiment of the present application provides a blockchain method for supporting multiple interactive virtual machines, including:
inserting a universal API layer between various virtual machines and a world state, wherein the universal API layer is used for butting various virtual machines, and on a block chain consensus node, a consensus module calls the API layer to deliver packaged transactions to the virtual machines for execution; when the virtual machine is executed, reading and writing the state, and reversely operating the state data on the node through the callback of the API layer;
creating a contract, wherein when a contract publisher publishes the contract, a field is attached to indicate the type of a virtual machine which needs to be interpreted and executed by the contract;
when a contract caller calls a contract, a block chain system acquires the virtual machine type declared by a contract publisher, and inputs of the contract caller and a contract code are jointly transmitted to a virtual machine of a specified type for interpretation and execution;
and finishing the transaction to finish the modification of the world state of the block chain.
In one possible design of the first aspect, the cross-virtual machine call of the contract is further included.
In a possible design of the first aspect, the cross-virtual machine invocation of the contract is specifically: if the first contract declaration is executed by a first virtual machine and the second contract declaration is executed by a second virtual machine, the first contract calls the second contract by calling and obtains an output result of the second contract.
In one possible design of the first aspect, the contract is implemented across virtual machine calls as follows:
initializing a first virtual machine, loading the input of a contract caller and the code of a first contract and starting interpretation and execution;
discovering that a first contract requires invoking a second contract;
initializing a second virtual machine, loading input data sent to a second contract by a first contract and codes of the second contract, and starting interpretation and execution;
the second contract finishes executing, releases the second virtual machine and returns the executing result to the first virtual machine;
the first contract finishes executing and releases the first virtual machine.
In a second aspect, an embodiment of the present application provides an electronic device, which includes a memory, a processor, and a computer program stored in the memory and executable on the processor, where the computer program is executed by the processor to perform the above-mentioned method for supporting a blockchain of interactive multiple virtual machines.
In a third aspect, an embodiment of the present application provides a computer-readable storage medium, where a computer program is stored on the computer-readable storage medium, and the computer program is executed by a processor to perform the above-mentioned method for supporting a blockchain of interactive multiple virtual machines.
The invention has the following beneficial effects:
(1) the world state and the virtual machines are strictly decoupled, so that the state of a block chain does not depend on a specific virtual machine, the world state provides a set of public API, and any virtual machine realizing the set of API can be seamlessly accessed in, so that a contract can be called across the virtual machines;
(2) the block chain system supports multiple virtual machines, which means that more programming languages are supported to write intelligent contracts, and the development threshold is greatly reduced. Meanwhile, cross-virtual machine calling between contracts greatly enhances development flexibility and further expands development ecology of contracts.
Drawings
FIG. 1 is a block diagram of a method for supporting interactive multi-virtual machine blockchain according to an embodiment of the present invention;
fig. 2 is a schematic structural diagram of an electronic device according to an embodiment of 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 some, not all, embodiments of the present invention. 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 invention discloses a block chain method for supporting interactive multiple virtual machines, which comprises the following steps:
referring to fig. 1, a universal API layer is inserted between various virtual machines and a world state, and is used for interfacing various types of virtual machines, and on a block chain consensus node, a consensus module calls the API layer to deliver a packaged transaction to the virtual machine for execution; and when the virtual machine is executed, reading and writing the state, and reversely operating the state data on the node through the callback of the API layer. With the structure set above, contract creation, contract invocation, and transaction end steps are performed. Specifically, the contract is created, and when a contract publisher publishes the contract, a field is attached to indicate the type of the virtual machine which needs to be interpreted and executed by the contract; when a contract caller calls a contract, a block chain system acquires the virtual machine type declared by a contract publisher, and inputs of the contract caller and a contract code are jointly transmitted to a virtual machine of a specified type for interpretation and execution; and finishing the transaction to finish the modification of the world state of the block chain.
By the block chain method supporting the interactive multiple virtual machines, the world state and the virtual machines are strictly decoupled, so that the state of the block chain is independent of a specific virtual machine, the world state provides a set of public API, and any virtual machine realizing the set of API can be seamlessly accessed.
On the premise of supporting multiple virtual machines, the method is further perfected, and cross-virtual machine calling of contracts is realized. The cross-virtual machine calling of the contract means that if a first contract declares that a first virtual machine executes a second contract declares that a second virtual machine executes, the first contract may call a second contract by a contract calling mode and obtain an output result of the second contract. The process is as follows: initializing a first virtual machine, loading the input of a contract caller and the code of a first contract and starting interpretation and execution; discovering that a first contract requires invoking a second contract; initializing a second virtual machine, loading input data and second codes which are sent to the second contract by the first contract, and starting interpretation and execution; the second contract finishes executing, releases the second virtual machine and returns the executing result to the first virtual machine; the first contract finishes executing and releases the first virtual machine. Those skilled in the art will appreciate that the virtual machine type is not specifically limited herein, and may be an existing or future implemented virtual machine type such as EVM (Ethernet virtual machine), CKB-VM (Nervos RISC-V based virtual machine), JIT (Java virtual machine), etc., i.e., the virtual machine is transparent to contract invocations.
The support of the block chain system on multiple virtual machines means that more programming language write intelligent contracts are supported, and the development threshold is greatly reduced. Meanwhile, cross-virtual machine calling between contracts greatly enhances development flexibility and further expands development ecology of contracts.
The electronic device of the embodiment of the present invention is described in detail below with reference to fig. 2. On a hardware level, the electronic device includes a processor, and optionally an internal bus, a network interface, and a memory. The Memory may include a Memory, such as a Random-Access Memory (RAM), and may further include a Non-Volatile Memory (NVM), such as at least one disk Memory. Of course, the electronic device may also include hardware required for other services.
The processor, the network interface, and the memory may be interconnected by an internal bus, which may be an Industry Standard Architecture (ISA) bus, a Peripheral Component Interconnect (PCI) bus, an Extended ISA (EISA) bus, or the like. Wherein the bus can be divided into an address bus, a data bus, a control bus, etc. For ease of illustration, only one double-headed arrow is shown in FIG. 2, but this does not represent only one bus or one type of bus.
The memory for storing the program, in particular, the program may include program code including computer operating instructions, the memory may include memory and non-volatile storage, and provide instructions and data to the processor.
The processor reads the corresponding computer program from the nonvolatile memory into the memory and then runs the computer program to form the content recommendation device on a logic level. And the processor is used for executing the program stored in the memory and is specifically used for executing the method operation executed when the server is taken as an execution main body.
The above-described blockchain method for supporting interactive multiple virtual machines according to the embodiment of the present invention may be applied to a processor, or implemented by the processor. The processor may be an integrated circuit chip having signal processing capabilities. In implementation, the steps of the above method may be performed by integrated logic circuits of hardware in a processor or instructions in the form of software. The Processor may be a general-purpose Processor, including a Central Processing Unit (CPU), a Network Processor (NP), etc., and may also be a Digital Signal Processor (DSP), an Application Specific Integrated Circuit (ASIC), a Field Programmable Gate Array (FPGA) or other Programmable logic device, a discrete Gate or transistor logic device, or a discrete hardware component. The various methods, steps and logic blocks disclosed in embodiments of the present invention may be implemented or performed. A general purpose processor may be a microprocessor or the processor may be any conventional processor or the like. The steps of the method disclosed in connection with the embodiments of the present invention may be directly implemented by a hardware decoding processor, or implemented by a combination of hardware and software modules in a decoder. The software module may be located in ram, flash memory, rom, prom, or eprom, registers, etc. storage media as is well known in the art. The storage medium is located in the memory, the processor reads information in the memory, and the steps of the method are completed by combining hardware of the processor, and specific execution steps refer to method embodiments and are not described herein again.
Of course, the electronic device in the embodiment of the present specification does not exclude other implementations, such as a logic device or a combination of software and hardware, besides a software implementation, that is, the execution subject of the following processing flow is not limited to each logic unit, and may be hardware or a logic device.
Embodiments of the present invention also provide a computer-readable storage medium storing one or more programs that, when executed by an electronic device including a plurality of application programs, cause the electronic device to perform the following operations such that a blockchain method supporting interactive multiple virtual machines is implemented:
inserting a universal API layer between various virtual machines and a world state, wherein the universal API layer is used for butting various virtual machines, and on a block chain consensus node, a consensus module calls the API layer to deliver packaged transactions to the virtual machines for execution; and when the virtual machine is executed, reading and writing the state, and reversely operating the state data on the node through the callback of the API layer. With the structure set above, contract creation, contract invocation, and transaction end steps are performed. Specifically, the contract is created, and when a contract publisher publishes the contract, a field is attached to indicate the type of the virtual machine which needs to be interpreted and executed by the contract; when a contract caller calls a contract, a block chain system acquires the virtual machine type declared by a contract publisher, and inputs of the contract caller and a contract code are jointly transmitted to a virtual machine of a specified type for interpretation and execution; and finishing the transaction to finish the modification of the world state of the block chain.
By the block chain method supporting the interactive multiple virtual machines, the world state and the virtual machines are strictly decoupled, so that the state of the block chain is independent of a specific virtual machine, the world state provides a set of public API, and any virtual machine realizing the set of API can be seamlessly accessed.
On the premise of supporting multiple virtual machines, the method is further perfected, and cross-virtual machine calling of contracts is realized. The cross-virtual machine calling of the contract means that if a first contract declares that a first virtual machine executes a second contract declares that a second virtual machine executes, the first contract may call a second contract by a contract calling mode and obtain an output result of the second contract. The process is as follows: initializing a first virtual machine, loading the input of a contract caller and the code of a first contract and starting interpretation and execution; discovering that a first contract requires invoking a second contract; initializing a second virtual machine, loading input data and second codes which are sent to the second contract by the first contract, and starting interpretation and execution; the second contract finishes executing, releases the second virtual machine and returns the executing result to the first virtual machine; the first contract finishes executing and releases the first virtual machine. Those skilled in the art will appreciate that the virtual machine type is not specifically limited herein, and may be an existing or future implemented virtual machine type such as EVM (Ethernet virtual machine), CKB-VM (Nervos RISC-V based virtual machine), JIT (Java virtual machine), etc., i.e., the virtual machine is transparent to contract invocations.
The support of the block chain system on multiple virtual machines means that more programming language write intelligent contracts are supported, and the development threshold is greatly reduced. Meanwhile, cross-virtual machine calling between contracts greatly enhances development flexibility and further expands development ecology of contracts.
The computer-readable storage medium may be a Read-Only Memory (ROM), a Random Access Memory (RAM), a magnetic disk or an optical disk.
It is to be understood that the exemplary embodiments described herein are illustrative and not restrictive. Although one or more embodiments of the present invention have been described with reference to the accompanying drawings, it will be understood by those of ordinary skill in the art that various changes in form and details may be made therein without departing from the spirit and scope of the present invention as defined by the following claims.

Claims (4)

1. A method for supporting interactive multi-virtual machine block chain is characterized by comprising the following steps:
inserting a universal API layer between various virtual machines and a world state, wherein the universal API layer is used for butting various virtual machines, and on a block chain consensus node, a consensus module calls the API layer to deliver packaged transactions to the virtual machines for execution; when the virtual machine is executed, reading and writing the state, and reversely operating the state data on the node through the callback of the API layer;
creating a contract, wherein when a contract publisher publishes the contract, a field is attached to indicate the type of a virtual machine which needs to be interpreted and executed by the contract;
when a contract caller calls a contract, a block chain system acquires the virtual machine type declared by a contract publisher, and inputs of the contract caller and a contract code are jointly transmitted to a virtual machine of a specified type for interpretation and execution;
finishing the modification of the world state of the block chain after the transaction is finished;
further comprising cross-virtual machine invocation of contracts, specifically: if the first contract declaration is executed by a first virtual machine and the second contract declaration is executed by a second virtual machine, the first contract calls the second contract by calling and obtains an output result of the second contract.
2. The blockchain method supporting interactable multi-virtual machines of claim 1 wherein the cross-virtual machine invocation of the contract is implemented as follows:
initializing a first virtual machine, loading the input of a contract caller and the code of a first contract and starting interpretation and execution;
discovering that a first contract requires invoking a second contract;
initializing a second virtual machine, loading input data sent to a second contract by a first contract and codes of the second contract, and starting interpretation and execution;
the second contract finishes executing, releases the second virtual machine and returns the executing result to the first virtual machine;
the first contract finishes executing and releases the first virtual machine.
3. An electronic device comprising a memory, a processor, and a computer program stored on the memory and executable on the processor, the computer program being executed by the processor to perform the method of claim 1 or 2 for supporting a blockchain of interoperable multiple virtual machines.
4. A computer-readable storage medium, characterized in that the computer-readable storage medium has stored thereon a computer program, which is executed by a processor to implement the method of supporting a blockchain of interoperable multiple virtual machines of claim 1 or 2.
CN201910858460.0A 2019-09-11 2019-09-11 Block chain method and electronic equipment supporting interactive multiple virtual machines Active CN110569110B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910858460.0A CN110569110B (en) 2019-09-11 2019-09-11 Block chain method and electronic equipment supporting interactive multiple virtual machines

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910858460.0A CN110569110B (en) 2019-09-11 2019-09-11 Block chain method and electronic equipment supporting interactive multiple virtual machines

Publications (2)

Publication Number Publication Date
CN110569110A CN110569110A (en) 2019-12-13
CN110569110B true CN110569110B (en) 2022-01-11

Family

ID=68779147

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910858460.0A Active CN110569110B (en) 2019-09-11 2019-09-11 Block chain method and electronic equipment supporting interactive multiple virtual machines

Country Status (1)

Country Link
CN (1) CN110569110B (en)

Families Citing this family (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111176791B (en) * 2019-12-31 2023-09-29 杭州趣链科技有限公司 Cross-virtual machine calling method based on multi-virtual machine blockchain platform
CN111414159B (en) * 2020-03-16 2023-07-25 北京艾鸥科技有限公司 Block chain virtual machine device, virtual machine creation method and transaction method
CN112527466A (en) * 2020-12-22 2021-03-19 上海万向区块链股份公司 Multi-language intelligent contract compatibility method and system based on EVM and Wasm virtual machine
CN113973115B (en) * 2021-10-28 2024-02-27 南方电网科学研究院有限责任公司 Custom certificate circulation method and related device thereof

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108765158A (en) * 2018-05-31 2018-11-06 杭州秘猿科技有限公司 A kind of intelligent contract automotive engine system and its contract execution method based on block chain
CN109241359A (en) * 2018-08-18 2019-01-18 深圳市网心科技有限公司 Block chain node device, block catenary system, block data processing system and method
CN109710384A (en) * 2018-12-29 2019-05-03 杭州趣链科技有限公司 A kind of safe Java intelligence contract explanation enforcement engine and method
WO2019120316A2 (en) * 2019-03-26 2019-06-27 Alibaba Group Holding Limited System and method for implementing different types of blockchain contracts

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108765158A (en) * 2018-05-31 2018-11-06 杭州秘猿科技有限公司 A kind of intelligent contract automotive engine system and its contract execution method based on block chain
CN109241359A (en) * 2018-08-18 2019-01-18 深圳市网心科技有限公司 Block chain node device, block catenary system, block data processing system and method
CN109710384A (en) * 2018-12-29 2019-05-03 杭州趣链科技有限公司 A kind of safe Java intelligence contract explanation enforcement engine and method
WO2019120316A2 (en) * 2019-03-26 2019-06-27 Alibaba Group Holding Limited System and method for implementing different types of blockchain contracts

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
AlkylVM: A Virtual Machine for Smart Contract Blockchain Connected Internet of Things;Joshua Ellul;《2018 9th IFIP International Conference on New Technologies, Mobility and Security 》;20180402;全文 *
基于区块链的智能合约技术与应用综述;贺海武;《计算机研究与发展》;20181130;第55卷(第11期);第2452-2466页 *

Also Published As

Publication number Publication date
CN110569110A (en) 2019-12-13

Similar Documents

Publication Publication Date Title
CN110569110B (en) Block chain method and electronic equipment supporting interactive multiple virtual machines
US11900113B2 (en) Data flow processing method and related device
JP7012074B2 (en) Virtual disk expansion method and equipment
TWI436281B (en) Injecting transactions to support the virtualization of a physical device controller
CN111383031A (en) Intelligent contract execution method and system in block chain and electronic equipment
CN106055481B (en) Method and device for testing computer program
CN110716845A (en) Method for reading log information of Android system
WO2023184052A1 (en) Data processing method, blockchain node and blockchain system
US8214830B2 (en) Performance in a virtualization architecture with a processor abstraction layer
CN111240772A (en) Data processing method and device based on block chain and storage medium
CN108345458B (en) Calling method and system for static compiling language and scripting language
CN110618859B (en) Transaction pool design method supporting sequential packaging and electronic equipment
CN110837446A (en) Equipment management method and device applied to embedded system, medium and embedded equipment
CN112711462A (en) Cloud platform virtual CPU hot binding method and device and computer readable storage medium
WO2023168913A1 (en) Method and apparatus for compatibility of sdk with access application, device and medium
CN111176663A (en) Data processing method, device and equipment of application program and storage medium
CN114911541A (en) Configuration information processing method and device, electronic equipment and storage medium
CN102253884A (en) Method and device for simulating operating environment of single-plate software
CN112286572A (en) Configuration method and device of business process
EP1569099A2 (en) Process language for microprocessors with finite resources
CN111273897A (en) Block chain resource consumption method and device, storage medium and electronic equipment
US9582661B2 (en) Isolated program execution environment
CN114371852B (en) Compiling method and device
CN115658240B (en) Multi-protocol dictionary grid solution method based on cloud-native and storage medium
CN111459570B (en) PDF plug-in loading method, electronic equipment and computer storage medium

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
EE01 Entry into force of recordation of patent licensing contract

Application publication date: 20191213

Assignee: Hangzhou Xita Technology Co.,Ltd.

Assignor: CRYPTAPE Co.,Ltd.

Contract record no.: X2022330000063

Denomination of invention: Blockchain method and electronic device supporting interactive multi virtual machine

Granted publication date: 20220111

License type: Common License

Record date: 20220406

EE01 Entry into force of recordation of patent licensing contract
TR01 Transfer of patent right

Effective date of registration: 20231221

Address after: 10/F, Guotou Building, No. 398 Shaoxing Road, Gongshu District, Hangzhou City, Zhejiang Province, 310000

Patentee after: Hangzhou Xita Technology Co.,Ltd.

Address before: 310000 No. 1301 and 1302, 13 / F, tower a, Huaxing Times Plaza, No. 478, Wensan Road, Xihu District, Hangzhou City, Zhejiang Province

Patentee before: CRYPTAPE Co.,Ltd.

TR01 Transfer of patent right