Skip to content

Commit fbc0737

Browse files
delete ink and update doc
1 parent bc1d477 commit fbc0737

File tree

5 files changed

+9
-14
lines changed

5 files changed

+9
-14
lines changed

.CONTRIBUTING/tutorials/.CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Where the number will be 01, 02, 03, etc.
118118
## Tutorial Categories
119119

120120
- **polkadot-sdk/**: Parachains, pallets, runtime development
121-
- **smart-contracts/**: EVM, ink!, demo applications
121+
- **smart-contracts/**: EVM, PVM, demo applications
122122
- **interoperability/**: XCM operations, channel management
123123
- **dapps/**: Frontend integration, API usage
124124
- **onchain-governance/**: Proposals, OpenGov operations

.CONTRIBUTING/tutorials/templates/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ For tutorials covering:
1515
### 💎 [Smart Contracts Template](smart-contracts-template.md)
1616
For tutorials covering:
1717
- EVM smart contracts (Solidity)
18-
- ink! smart contracts (Rust)
1918
- Contract deployment and interaction
2019
- DeFi applications
2120
- Token contracts

.CONTRIBUTING/tutorials/templates/dapps-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ npx create-react-app my-polkadot-dapp --template typescript
3434
cd my-polkadot-dapp
3535

3636
# Install Polkadot dependencies
37-
npm install @polkadot/api @polkadot/extension-dapp @polkadot/util
37+
npm install @polkadot/api@VERSION @polkadot/extension-dapp@VERSION @polkadot/util@VERSION
3838
```
3939

4040
### Project Structure

.CONTRIBUTING/tutorials/templates/smart-contracts-template.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: [Your Smart Contract Tutorial Title - Max 45 chars]
33
description: [Description of the smart contract functionality - 120-160 chars]
44
tutorial_badge: Beginner | Intermediate | Advanced
5-
categories: Smart Contracts, EVM, ink!, DeFi
5+
categories: Smart Contracts, EVM, PVM, DeFi
66
---
77

88
# [Your Smart Contract Tutorial Title]
@@ -18,8 +18,7 @@ categories: Smart Contracts, EVM, ink!, DeFi
1818

1919
Before starting, ensure you have:
2020

21-
- **For EVM contracts**: Remix IDE or local development setup
22-
- **For ink! contracts**: ink! development environment
21+
- **For EVM/PVM contracts**: Remix IDE or local development setup
2322
- MetaMask wallet configured for [specific network]
2423
- Test tokens for deployment and testing
2524
- Basic understanding of [Solidity/Rust/relevant language]
@@ -31,7 +30,7 @@ Before starting, ensure you have:
3130
### For EVM Contracts:
3231
```bash
3332
# Install required tools
34-
npm install -g @openzeppelin/cli
33+
npm install -g @openzeppelin/cli@VERSION
3534
npm install hardhat
3635
```
3736

@@ -90,9 +89,6 @@ Run tests:
9089
# For EVM contracts
9190
npx hardhat test
9291

93-
# For ink! contracts
94-
cargo test
95-
```
9692

9793
## Step 5: Deployment
9894

.CONTRIBUTING/tutorials/templates/xcm-interoperability-template.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ Continue exploring cross-chain operations:
169169

170170
## Additional Resources
171171

172-
- [XCM Format Documentation](https://github.com/paritytech/xcm-format)
173-
- [Polkadot.js XCM Tools](https://polkadot.js.org/apps/)
174-
- [XCM Simulator](https://github.com/paritytech/polkadot/tree/master/xcm/xcm-simulator)
175-
- [Cross-Chain Asset Registry](https://github.com/paritytech/asset-registry)
172+
- [XCM Format Documentation](https://github.com/paritytech/xcm-format){target=\_blank}
173+
- [Polkadot.js XCM Tools](https://polkadot.js.org/apps/){target=\_blank}
174+
- [XCM Simulator](https://github.com/paritytech/polkadot/tree/master/xcm/xcm-simulator){target=\_blank}
175+
- [Cross-Chain Asset Registry](https://github.com/paritytech/asset-registry){target=\_blank}

0 commit comments

Comments
 (0)