A tutorial
curl -fssl https://get.docker.com | bash -s docker docker pull nillion/retailtoken-accuser:v1.0.0 mkdir -p nillion/accuser sudo chmod 777 /var/tmp chmod 777 ./nillion/accuser docker run -v ./nillion/accuser:/var/tmp nillion/retailtoken-accuser:v1.0.0 initialise
A tutorial
curl -fssl https://get.docker.com | bash -s docker docker pull nillion/retailtoken-accuser:v1.0.0 mkdir -p nillion/accuser sudo chmod 777 /var/tmp chmod 777 ./nillion/accuser docker run -v ./nillion/accuser:/var/tmp nillion/retailtoken-accuser:v1.0.0 initialise
Deploy a Token
1、open this website with chrome.2、accept and then click next, done.3、click the small button(create new file),name new file with ERC20.solYou can get:4、copy this code to ERC20.sol// SPDX-License-Identifier: MIT // WTF Solidity by 0xAA pragma solidity ^0.8.4; interface IERC20 { /** * @dev 释放条件:当 `value` 单位的货币从账户 (`from`) 转账到另一账户 (`to`)时. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev 释放条件:当 `value` 单位的货币从账户 (`owner`) 授权给另一账户 (`spender`)时. */ event Approva...
Deploy a Token
1、open this website with chrome.2、accept and then click next, done.3、click the small button(create new file),name new file with ERC20.solYou can get:4、copy this code to ERC20.sol// SPDX-License-Identifier: MIT // WTF Solidity by 0xAA pragma solidity ^0.8.4; interface IERC20 { /** * @dev 释放条件:当 `value` 单位的货币从账户 (`from`) 转账到另一账户 (`to`)时. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev 释放条件:当 `value` 单位的货币从账户 (`owner`) 授权给另一账户 (`spender`)时. */ event Approva...
Deploy a contract
1、open this website with chrome.2、accept and then click next, done.3、click the small button(create new file),name new file with Function.solYou can get:4、copy this code to Function.sol// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract FunctionTypes{ uint256 public number = 5; constructor() payable {} // 函数类型 // function (<parameter types>) {internal|external} [pure|view|payable] [returns (<return types>)] // 默认function function add() external{ number = number + 1; } //...
Deploy a contract
1、open this website with chrome.2、accept and then click next, done.3、click the small button(create new file),name new file with Function.solYou can get:4、copy this code to Function.sol// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract FunctionTypes{ uint256 public number = 5; constructor() payable {} // 函数类型 // function (<parameter types>) {internal|external} [pure|view|payable] [returns (<return types>)] // 默认function function add() external{ number = number + 1; } //...
部署合约
1、谷歌浏览器打开2、accept之后,弹窗一路点击next, done.3、点击红圈中小按钮(create new file),新文件命名为Function.sol得到:将以下代码复制粘贴到Function.sol// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract FunctionTypes{ uint256 public number = 5; constructor() payable {} // 函数类型 // function (<parameter types>) {internal|external} [pure|view|payable] [returns (<return types>)] // 默认function function add() external{ number = number + 1; } // pure: 纯纯牛马 function addPure(uint256 _number) external pure returns(uint256 ...
部署合约
1、谷歌浏览器打开2、accept之后,弹窗一路点击next, done.3、点击红圈中小按钮(create new file),新文件命名为Function.sol得到:将以下代码复制粘贴到Function.sol// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract FunctionTypes{ uint256 public number = 5; constructor() payable {} // 函数类型 // function (<parameter types>) {internal|external} [pure|view|payable] [returns (<return types>)] // 默认function function add() external{ number = number + 1; } // pure: 纯纯牛马 function addPure(uint256 _number) external pure returns(uint256 ...
why gno
For a long time, blockchain has attracted worldwide attention. I still remember what was mentioned in Satoshi Nakamoto's paper which removes the middleman world. It has always been admired by people who yearn for freedom. Businesses on the Internet increasingly rely on financial institutions as trusted third parties to process electronic payments. While the system works for most transactions, it still suffers from inherent weaknesses in credit-based models. What weakness, why is it innat...
why gno
For a long time, blockchain has attracted worldwide attention. I still remember what was mentioned in Satoshi Nakamoto's paper which removes the middleman world. It has always been admired by people who yearn for freedom. Businesses on the Internet increasingly rely on financial institutions as trusted third parties to process electronic payments. While the system works for most transactions, it still suffers from inherent weaknesses in credit-based models. What weakness, why is it innat...