bitcoin-computer
Advanced tools
Comparing version 0.15.0-beta.0 to 0.16.0-beta.1
{ | ||
"name": "bitcoin-computer", | ||
"version": "0.15.0-beta.0", | ||
"version": "0.16.0-beta.1", | ||
"description": "Lightweight Smart Contracts for Bitcoin and Litecoin", | ||
@@ -28,5 +28,13 @@ "contributors": [ | ||
"scripts": { | ||
"start": "cd /dist/packages/node && yarn start", | ||
"up": "cd packages/node && yarn up", | ||
"fund-ltc": "cd packages/node && yarn fund-ltc", | ||
"test": "cd packages/node && yarn test", | ||
"down": "cd packages/node && yarn down", | ||
"reset": "cd packages/node && yarn reset", | ||
"build-docker": "docker build -t bitcoin-computer-node .", | ||
"prepare": "husky install", | ||
"create-version": "lerna version --force-publish", | ||
"check-obfuscation": "./scripts/check-obfuscation.sh", | ||
"husky-checks": "./scripts/husky-checks.sh", | ||
"prepublishOnly": "./scripts/check-obfuscation.sh", | ||
@@ -33,0 +41,0 @@ "validate-branch-for-deploy": ". scripts/validate-branch-for-deploy.sh && validate_branch" |
@@ -65,3 +65,3 @@ <div align="center"> | ||
On Mainnet the fees for using the Bitcoin Computer are on average the same as the transaction fees charged by miners fees. For example, if the miner transaction fee is one cent, then you pay two cent in total: one cent to the miners, and one cent to support the development of the Bitcoin Computer. | ||
We charge a small fee on mainnet to support the development of the Bitcoin Computer. The fee for a function call is satoshis per byte * 475 (average transaction size). The fee for deploying a module is satoshis per byte * data size * 1/4 (making use of the segwit discount). The programer can configure satoshis per byte. | ||
@@ -68,0 +68,0 @@ ## Development Status |
7751