Getting Started with Hardhat The ETF Smart Contract
Overview of 0x1
When I started ETF Intelligence Contract Development, I first faced a choice, Hardhat Vs Truffle Vs Remix, which development tool should I choose. I searched Google for a lot of comparisons, including Holliville Valdez's " Hardhat Vs Truffle Vs Remix - Which Is The Best For Blockchain Development?>
This article helped me ...
Posted by hiroshi_satori on Sun, 06 Mar 2022 18:54:16 +0100
Hyperledger fabric running test network
1, Prepare
linux environment or install a virtual machine in windows.
The following are the tests under Linux environment.
2, Prerequisites
Git ,cURL,Docker,Docker Compose
1. git installation
sudo yum install git
test
git --version
2,cURL
sudo yum install curl
3,Docker ,Docker Compose
Docker should be able to install official documents. I hav ...
Posted by mdojet on Sun, 06 Mar 2022 13:22:15 +0100
Teach you how to transplant tinyriscv to FPGA
I am xuetianyu, an FPGA enthusiast. My research direction is FPGA Architecture Exploration and digital IC design.Focus on official account [integrated circuit design course], get more learning materials, and pull you into "IC design exchange group".QQIC Design Communication Group No.: 866169462.Development board used: punctual atom Da ...
Posted by GeoffOs on Thu, 03 Mar 2022 06:08:39 +0100
web3 - overview of smart contract | PHP implementation of ETH 4
Smart contract overview
Smart contract is the software running on the blockchain. It is often compared to "vending machine", because it is easy to understand: the vending machine accepts and executes external instructions. When the customer selects the goods and pays, the vending machine will release the goods to the customer without ...
Posted by HughbertD on Sat, 26 Feb 2022 17:26:06 +0100
How to write Gear smart contract for Rust beginners
For the pre knowledge of Gear contract, you can first understand this article: Gear contract disclosure.
This article will mainly explain how to use Rust to create a simple decentralized application on the Gear blockchain network.
We take a voting application as an example to study the infrastructure of Gear smart contract, and learn how to ...
Posted by MasumX on Sat, 26 Feb 2022 14:14:15 +0100
Hyperledger Caliper Besu stepped on the pit to summarize and test the contract he wrote
Abstract
The first article of stepping on the pit writes the example given on the official website, which records how to test your Contract Caliper version is v0 four point two
Repository
In this article, we continue to use Github Repo on the official website to create a new contract. In order to simplify, we still use Sample to change the ...
Posted by trg on Tue, 22 Feb 2022 10:25:07 +0100
Defcon 2018 Qualify: Easy Pisy writeup
Defcon 2018 Qualify: Easy Pisy
1. Source Code
The title is given to two people:
execute.php
<?php
include 'common.php';
if ($_SERVER['REQUEST_METHOD'] === 'GET') {
print highlight_string(file_get_contents("execute.php"), TRUE);
exit(0);
}
$keys = get_keys();
$privkey = $keys[0];
$pubkey = $keys[1];
$file_info = $_FILES['userf ...
Posted by pablodelapena on Sun, 20 Feb 2022 01:35:57 +0100
Implementation of parity alliance chain under Linux
1, Download of parity
1. Open our Linux virtual machine in advance. Then open our folder and create a parity file. Of course, it can also be named after other names, preferably parity.
2. Then enter the PARITY folder, open it in the terminal, and enter the following under the authority of administrator:
wget https://re ...
Posted by tskweb on Sat, 19 Feb 2022 10:03:01 +0100
Teach you how to realize pynq-z2 bar code recognition
I am xuetianyu, an FPGA enthusiast. My research direction is FPGA Architecture Exploration and SOC design.Focus on official account [integrated circuit design course], pull you into "IC design exchange group".1. PrefaceIt took nearly a week to realize a two-dimensional code recognition alone. In this article, I will introduce in detai ...
Posted by Virtuali on Wed, 16 Feb 2022 08:05:27 +0100
[BlockChain] go realize BlockChain 7: Network
[BlockChain] go realize BlockChain 7: Network
introduction
So far, the prototype we have built has all the key features of blockchain: anonymous, secure and randomly generated addresses; Blockchain data storage; Workload proof system; Store transactions reliably. Although these features are indispensable, there are still deficiencies. It is t ...
Posted by diego25 on Tue, 15 Feb 2022 06:29:48 +0100