diff options
author | Hao <hao@byzantine-lab.io> | 2019-09-17 16:59:16 +0800 |
---|---|---|
committer | Hao <hao@byzantine-lab.io> | 2019-09-17 17:09:52 +0800 |
commit | 12dc49bde118e8ff72e52ba5eb6c3481778240b0 (patch) | |
tree | 2034e39b20c0b53e9dec2fe5a7c8124a7629732f | |
parent | bf8daab247989b85168f409246509c68183b1172 (diff) | |
download | tangerine-wiki-12dc49bde118e8ff72e52ba5eb6c3481778240b0.tar.gz tangerine-wiki-12dc49bde118e8ff72e52ba5eb6c3481778240b0.tar.zst tangerine-wiki-12dc49bde118e8ff72e52ba5eb6c3481778240b0.zip |
misc: migrate to github.com/tangerine-network
-rw-r--r-- | docs/BP-Node-Operation-Guide.md | 2 | ||||
-rw-r--r-- | docs/Contribute-to-Tangerine-Fullnode.md | 2 | ||||
-rw-r--r-- | docs/Dapp-Development-Guide.md | 2 | ||||
-rw-r--r-- | docs/Governance-Contract-Interface.md | 2 | ||||
-rw-r--r-- | docs/List-of-Repositories.md | 8 | ||||
-rw-r--r-- | docs/Migrate-from-Ethereum.md | 2 | ||||
-rw-r--r-- | docs/On-Chain-Random-Oracle.md | 4 | ||||
-rw-r--r-- | package.json | 8 |
8 files changed, 15 insertions, 15 deletions
diff --git a/docs/BP-Node-Operation-Guide.md b/docs/BP-Node-Operation-Guide.md index cc7995d..e945275 100644 --- a/docs/BP-Node-Operation-Guide.md +++ b/docs/BP-Node-Operation-Guide.md @@ -106,7 +106,7 @@ The parameter `testnet` is only for the testnet of Tangerine Network. Please make sure you have enough disk space in the current working directory -For more detail instruction about `gtan`, go to https://github.com/byzantine-lab/go-tangerine or use +For more detail instruction about `gtan`, go to https://github.com/tangerine-network/go-tangerine or use docker run -v $PWD:/mnt -it byzantinelab/go-tangerine --help diff --git a/docs/Contribute-to-Tangerine-Fullnode.md b/docs/Contribute-to-Tangerine-Fullnode.md index 3ac2cc1..8e9d96e 100644 --- a/docs/Contribute-to-Tangerine-Fullnode.md +++ b/docs/Contribute-to-Tangerine-Fullnode.md @@ -18,5 +18,5 @@ Please make sure your contributions adhere to our coding guidelines: * Commit messages should be prefixed with the package(s) they modify. * E.g. "eth, rpc: make trace configs optional" -Please see the [Developers' Guide](https://github.com/byzantine-lab/go-tangerine/wiki/Developers'-Guide) +Please see the [Developers' Guide](https://github.com/tangerine-network/go-tangerine/wiki/Developers'-Guide) for more details on configuring your environment, managing project dependencies and testing procedures. diff --git a/docs/Dapp-Development-Guide.md b/docs/Dapp-Development-Guide.md index 75f354d..d7da8c8 100644 --- a/docs/Dapp-Development-Guide.md +++ b/docs/Dapp-Development-Guide.md @@ -13,7 +13,7 @@ Currently, Tangerine uses the same account system as Ethereum. Tangerine also ha Some special functions are provided through precompiled contract, e.g on chain randomness. -To use the on chain randomess feature, please see the read me of [Tangerine Network RNG Library](https://github.com/byzantine-lab/tangerine-random-lib) +To use the on chain randomess feature, please see the read me of [Tangerine Network RNG Library](https://github.com/tangerine-network/random-lib) ## Solidity diff --git a/docs/Governance-Contract-Interface.md b/docs/Governance-Contract-Interface.md index b3ed87e..83bc2bc 100644 --- a/docs/Governance-Contract-Interface.md +++ b/docs/Governance-Contract-Interface.md @@ -4,7 +4,7 @@ The Tangerine governance contract is implemented in Go, but it's ABI compatible The governance contract address is located at `0x246FcDE58581e2754f215A523C0718C4BFc8041F` -The equivalent solidity interface can be found in the [byzantine-lab/governance-abi](https://github.com/byzantine-lab/governance-abi/blob/master/contracts/Governance.sol) repo. The governance contract ABI is as follows: +The equivalent solidity interface can be found in the [tangerine-network/governance-abi](https://github.com/tangerine-network/governance-abi/blob/master/contracts/Governance.sol) repo. The governance contract ABI is as follows: <!-- DO NOT EDIT BELOW THIS LINE!! The below part is automatically generated from the governance-abi ci flow and any modification below will be lost. --> <!-- [[ABI AUTOGEN START]] --> diff --git a/docs/List-of-Repositories.md b/docs/List-of-Repositories.md index 650853c..d141b27 100644 --- a/docs/List-of-Repositories.md +++ b/docs/List-of-Repositories.md @@ -1,6 +1,6 @@ # List of Repositories -* [tangerine-consensus](https://github.com/byzantine-lab/tangerine-consensus): the consensus SDK and simulation. -* [go-tangerine](https://github.com/byzantine-lab/go-tangerine): the Tangerine fullnode implementation, based on go-ethereum. -* [governance-abi](https://github.com/byzantine-lab/governance-abi): the Tangerine governance contract interface solidity implementation for generating ABI. -* [TIPs](https://github.com/byzantine-lab/TIPs): a place for Tangerine Improvement Proposals +* [tangerine-consensus](https://github.com/tangerine-network/tangerine-consensus): the consensus SDK and simulation. +* [go-tangerine](https://github.com/tangerine-network/go-tangerine): the Tangerine fullnode implementation, based on go-ethereum. +* [governance-abi](https://github.com/tangerine-network/governance-abi): the Tangerine governance contract interface solidity implementation for generating ABI. +* [TIPs](https://github.com/tangerine-network/TIPs): a place for Tangerine Improvement Proposals diff --git a/docs/Migrate-from-Ethereum.md b/docs/Migrate-from-Ethereum.md index 03da247..6f83bd5 100644 --- a/docs/Migrate-from-Ethereum.md +++ b/docs/Migrate-from-Ethereum.md @@ -22,7 +22,7 @@ Here's a simple Solidity smart contract that utilizes Tangerine's on-chain rando ``` pragma solidity ^0.5.2; -import "github.com/byzantine-lab/tangerine-random-lib/RandomLib.sol"; +import "github.com/tangerine-network/random-lib/RandomLib.sol"; contract Hello { uint256 public value; diff --git a/docs/On-Chain-Random-Oracle.md b/docs/On-Chain-Random-Oracle.md index 269e404..4065250 100644 --- a/docs/On-Chain-Random-Oracle.md +++ b/docs/On-Chain-Random-Oracle.md @@ -58,7 +58,7 @@ To use the random library, simply include the library file then call `Random.ran ## Example ``` -import "github.com/byzantine-lab/tangerine-random-lib/RandomLib.sol"; +import "github.com/tangerine-network/random-lib/RandomLib.sol"; contract UseRandom { event Win(); @@ -69,7 +69,7 @@ contract UseRandom { } function bet() public { - if (Random.rand() % 100 > 50) { + if (Random.rand() % 100 >= 50) { emit Win(); } else { emit Lose(); diff --git a/package.json b/package.json index 9dfb872..77c7755 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ }, "repository": { "type": "git", - "url": "git+ssh://git@gitlab.com/byzantine-lab/wiki.git" + "url": "git+ssh://git@github.com/tangerine-network/wiki.git" }, "keywords": [ "Tangerine", @@ -25,10 +25,10 @@ "Blockchain", "DLT" ], - "author": "Wei-Ning Huang <w@byzantine-lab.io>", + "author": "Wei-Ning Huang <w@tangerine-network.io>", "license": "ISC", "bugs": { - "url": "https://gitlab.com/byzantine-lab/wiki/issues" + "url": "https://github.com/tangerine-network/wiki/issues" }, - "homepage": "https://gitlab.com/byzantine-lab/wiki#README" + "homepage": "https://github.com/tangerine-network/wiki#README" } |