Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
dd7d2df
Site update initial commit
dwightjl Dec 5, 2021
275d068
Navigation reorganization, homepage improvements, add section tags
dwightjl Dec 5, 2021
1e8a1b0
Restructure nav and add navigation filters
dwightjl Dec 7, 2021
bb4da4b
Add temporary top nav and add landing pages for each chain
dwightjl Dec 7, 2021
b96e391
Update homepage to improve links
dwightjl Dec 7, 2021
6cb936e
Create the new Getting Started landing page
Dec 8, 2021
53ed548
Scale down the homepage again, apply design style, start content reorg
dwightjl Dec 9, 2021
3e15d1b
Navigation and home page enhancements
dwightjl Dec 10, 2021
5120c68
animate between chain logos
StephenFluin Dec 10, 2021
67d9dae
Adjust animation style
dwightjl Dec 11, 2021
ee47bff
Apply new style for remix callouts. Standardize usage of remix callouts.
dwightjl Dec 11, 2021
162ac7a
Rewrite Getting Started content. Organize landing pages and navigation.
dwightjl Dec 13, 2021
3755806
Link and navigation fixes.
dwightjl Dec 13, 2021
55fc101
Add products to homepage with chain selection.
dwightjl Dec 13, 2021
50d35aa
More CSS changes.
dwightjl Dec 14, 2021
673dcf7
Navigation fixes.
dwightjl Dec 14, 2021
3792666
Replace banners with SVG logos to fix mobile scaling
dwightjl Dec 15, 2021
7f3ecaf
Minor fixes
dwightjl Dec 15, 2021
49965e9
Reorganize Getting Started and fix CSS issues
dwightjl Dec 16, 2021
bc8eb18
Standardize remix "deploy" terminology
dwightjl Dec 16, 2021
a63f2b4
Reorganize the Getting Started nav so overview is the landing and ren…
dwightjl Dec 16, 2021
f9f8a6d
Minor fixes.
dwightjl Dec 16, 2021
3f31c72
Correct CSS for large cards on landing pages
dwightjl Dec 16, 2021
4076f52
Home-page-specific CSS and add (Ethereum) clarifier to EVM Chains whe…
dwightjl Dec 17, 2021
d699c5b
Correct section tags for acquire-link and fund-your-contract
dwightjl Dec 20, 2021
b2363b3
Typo and grammar fixes
dwightjl Dec 20, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ addresses.json
# Only keep TS version
_src/index.js
_src/keepers-configuration.js
_src/animate-chain-transitions.js
.test/
12 changes: 6 additions & 6 deletions TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: nodes.liquid
section: smartContract
section: ethereum
date: Last Modified
title: "[insert title here]"
permalink: "[insert path here]"
Expand All @@ -10,13 +10,13 @@ metadata:
image:
0: "insert image here"
---
*This doc is meant to be used as a template for creating a tutorial doc. Contributors should emulate the structure of this document when creating new pages. The content of this doc comes from beginners-tutorial.md.*
*This doc is meant to be used as a template for creating a tutorial doc. Contributors should emulate the structure of this document when creating new pages. The content of this doc comes from the [Getting Started Guides](https://github.com/smartcontractkit/documentation/tree/main/docs/Introduction/getting-started/).*
Comment thread
PatrickAlphaC marked this conversation as resolved.

*Prerequisites should have its own block at the beginning of the tutorial. Tell the user what tools are required, what knowledge they should already have, and where to go if they need previous reading. Provide links to the other docs pages.*
> 👍 Prerequisites
>
> This tutorial requires .... If you're unfamiliar with these concepts, follow ...
> or
> or
> New to []? We'll walk you through...

*If a tutorial has a corresponding YouTube tutorial, link it at the beginning of the page.*
Expand Down Expand Up @@ -57,7 +57,7 @@ A valuable feature of smart contracts is that they can store and manage on-chain

*Notice how users are given external links to read more about concepts such as ETH or ERC20 tokens. They do not have to undertake a separate search.*

Smart contracts can connect to real-world market prices of assets to produce powerful applications. Chainlink's **[Data Feeds](../using-chainlink-reference-contracts/)** feature allows users to quickly and securely connect smart contracts to such assets in a single call.
Smart contracts can connect to real-world market prices of assets to produce powerful applications. Chainlink's **[Data Feeds](../using-chainlink-reference-contracts/)** feature allows users to quickly and securely connect smart contracts to such assets in a single call.

# 2. What language is a smart contract written in?

Expand Down Expand Up @@ -96,7 +96,7 @@ You can see the latest versions of the Solidity compiler [here](https://github.c
```solidity
pragma solidity >=0.7.0 <0.9.0;
```
This means that the code is written for Solidity version 0.7.0, or a newer version of the language up to, but not including version 0.9.0. In short, `pragma` is used to instruct the compiler as how to treat the code.
This means that the code is written for Solidity version 0.7.0, or a newer version of the language up to, but not including version 0.9.0. The `pragma` selects the compiler, which defines how the code is treated.

...

Expand All @@ -110,4 +110,4 @@ To learn more about data feeds, read the Data Feed blog posts:
- [Build a dApp on Binance Smart Chain With Secure Data Feeds](https://blog.chain.link/build-a-dapp-on-binance-smart-chain-with-secure-data-feeds/)
- [The 3 Levels of Data Aggregation in Chainlink Price Feeds](https://blog.chain.link/levels-of-data-aggregation-in-chainlink-price-feeds/)

To explore more applications for data feeds, check out our [other tutorials](/docs/other-tutorials/#data-feeds-applications).
To explore more applications for data feeds, check out our [other tutorials](/docs/other-tutorials/#data-feeds-applications).
Loading