@arbitrum/nitro-contracts 1.0.2-beta.0 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +9 -5
- package/package.json +2 -2
package/README.md
CHANGED
@@ -1,15 +1,19 @@
|
|
1
|
-
# Arbitrum Nitro Contracts
|
1
|
+
# Arbitrum Nitro Rollup Contracts
|
2
2
|
|
3
3
|
This is the package with the smart contract code that powers Arbitrum Nitro.
|
4
4
|
It includes the rollup and fraud proof smart contracts, as well as interfaces for interacting with precompiles.
|
5
5
|
|
6
|
-
For more information see https://developer.arbitrum.io/
|
6
|
+
For more information see https://developer.arbitrum.io/intro
|
7
7
|
|
8
|
-
|
8
|
+
For the deployed addresses of these contracts for Arbitrum chains see https://developer.arbitrum.io/useful-addresses
|
9
|
+
|
10
|
+
For the token bridge contracts see https://github.com/OffchainLabs/token-bridge-contracts
|
11
|
+
|
12
|
+
Compile these contracts locally by running
|
9
13
|
|
10
14
|
```bash
|
11
|
-
git clone https://github.com/offchainlabs/
|
12
|
-
cd
|
15
|
+
git clone https://github.com/offchainlabs/rollup-contracts
|
16
|
+
cd rollup-contracts
|
13
17
|
yarn install
|
14
18
|
yarn build
|
15
19
|
```
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@arbitrum/nitro-contracts",
|
3
|
-
"version": "1.0.2
|
3
|
+
"version": "1.0.2",
|
4
4
|
"description": "Layer 2 precompiles and rollup for Arbitrum Nitro",
|
5
5
|
"author": "Offchain Labs, Inc.",
|
6
6
|
"license": "BUSL-1.1",
|
@@ -60,8 +60,8 @@
|
|
60
60
|
"solhint": "^3.3.7",
|
61
61
|
"solhint-plugin-prettier": "^0.0.5",
|
62
62
|
"solidity-coverage": "^0.7.20",
|
63
|
-
"ts-node": "^10.4.0",
|
64
63
|
"tslint": "^6.1.3",
|
64
|
+
"ts-node": "^10.4.0",
|
65
65
|
"typechain": "^8.0.0",
|
66
66
|
"typescript": "^4.5.4"
|
67
67
|
},
|