Skip to content

Commit 488a822

Browse files
feat: 🎸 CONTRIBUTING, issue template, pr, prettier format
Updated text and link in CONTRIBUTING.md, updated issue template with development workflow link, updated pr template with development workflow mention, run prettier to fromat files BREAKING CHANGE: 🧨 N ✅ Closes: #256
1 parent 8206b66 commit 488a822

22 files changed

+132
-108
lines changed

.github/ISSUE_TEMPLATE/docs_issue.yml

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ body:
66
value: |
77
Thank you for submitting a documentation request. It helps make Berachain better.
88
9+
PLEASE make sure you've read [Development Workflow](https://github.com/berachain/docs/blob/main/CONTRIBUTING.md#development-workflow) and have read and understood the [CODE OF CONDUCT](https://github.com/berachain/docs/blob/main/CODE_OF_CONDUCT.md).
10+
911
If it's a small change, like misspelling or example that needs updating, feel free to submit a PR instead of creating this issue.
1012
1113
- type: dropdown

.github/pull_request_template.md

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ Closes #1
1212

1313
## Contribution
1414

15+
- [ ] I have followed the [Development Workflow](https://github.com/berachain/docs/blob/main/CONTRIBUTING.md#development-workflow)
16+
- [ ] I have read the [CODE OF CONDUCT](https://github.com/berachain/docs/blob/main/CODE_OF_CONDUCT.md)
17+
1518
Let us know your wallet address/ENS:
1619

1720
```

CONTRIBUTING.md

+12-16
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,31 @@ Berachain Foundation has adopted the [Contributor Covenant](https://www.contribu
88

99
## Open Development
1010

11-
All work on Berachain Docs happens directly on [GitHub](https//github.com/berachain/docs). Both core team members and external contributors send pull requests which go through the same review process.
11+
All work on Berachain Docs happens directly on [GitHub](https://github.com/berachain/docs). Both core team members and external contributors send pull requests which go through the same review process.
1212

1313
## Semantic Versioning
1414

1515
Berachain Docs follows [semantic versioning](https://semver.org). We release patch versions for critical bugfixes, minor versions for new features or non-essential changes, and major versions for any breaking changes. When we make breaking changes, we also introduce deprecation warnings in a minor version so that our users learn about the upcoming changes and migrate their code in advance. Learn more about our commitment to stability and incremental migration in our versioning policy.
1616

1717
### TL;DR SemVer
1818

19-
**Version Bump Required**
19+
**Typical Version Bump Scenarios**
2020

2121
- Changes to components `./packages/ui`
2222
- Changes to constatns `./packages/config`
2323
- Changes to docs structure via sidebar, theme, images, vercel configs, etc
2424
- `./apps/*/.vitepress/*`
2525
- `./apps/*/content/public/*`
2626

27-
**_NO_ Version Bump Required**
27+
**_Minor_ Version Bump Scenario**
2828

2929
- Text and typo changes in markdown files (\*.md)
3030

3131
## Branch Organization
3232

33-
Submit all changes directly to the [main branch](https://github.com/berachain/docs/tree/main). We don't use separate branches for development or for upcoming releases. We do our best to keep main in good shape, with all tests passing. Please always make sure to fork the repository for external contributions.
33+
Submit all changes as a pull request directly to the [main branch](https://github.com/berachain/docs/tree/main). We don't use separate branches for development or for upcoming releases. We do our best to keep main in good shape. Please always make sure to fork the repository for external contributions.
3434

35-
Code that lands in main must be compatible with the latest stable release. It may contain additional features, but no breaking changes. We should be able to release a new minor version from the tip of main at any time.
35+
Code that lands in main must be compatible with all apps and packages. It may contain additional features, but no breaking changes. We should be able to release a new minor version from the tip of main at any time.
3636

3737
## Bugs / Issues
3838

@@ -55,7 +55,7 @@ Berachain Foundation has a process for the safe disclosure of security bugs. Wit
5555

5656
## Proposing a Change
5757

58-
If you intend to change the core frontend, or make any non-trivial changes to the implementation, we recommend [filing an issue](https://github.com/berachain/docs/issues/new). This lets us reach an agreement on your proposal before you put significant effort into it.
58+
If you intend to change the core frontend, or make any non-trivial changes to the implementation, we recommend [filing an issue](https://github.com/berachain/docs/issues/new/choose). This lets us reach an agreement on your proposal before you put significant effort into it.
5959

6060
If you're only fixing a bug or a typo, it's fine to submit a pull request right away but we still recommend to file an issue detailing what you're fixing. This is helpful in case we don't accept that specific fix but want to keep track of the issue.
6161

@@ -65,7 +65,7 @@ Working on your first Pull Request? You can learn how from this free video serie
6565

6666
[How to Contribute to an Open Source Project on GitHub](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github)
6767

68-
To help you get your feet wet and get you familiar with our contribution process, we have a list of good first issues that contain bugs that have a relatively limited scope. This is a great place to get started.
68+
To help you get familiar with our contribution process, we have a list of good first issues that contain bugs that have a relatively limited scope. This is a great place to get started.
6969

7070
If you decide to fix an issue, please be sure to check the comment thread in case somebody is already working on a fix. If nobody is working on it at the moment, please leave a comment stating that you intend to work on it so other people don't accidentally duplicate your effort.
7171

@@ -75,11 +75,7 @@ If somebody claims an issue but doesn't follow up for more than two weeks, it's
7575

7676
The core team is monitoring for pull requests. We will review your pull request and either merge it, request changes to it, or close it with an explanation. We'll do our best to provide updates and feedback throughout the process.
7777

78-
**Before submitting a pull request**, please make sure the following is done:
79-
80-
1. Fork [the repository](https://github.com/berachain/docs) and create your branch from main.
81-
2. Run `pnpm` in the repository root to install dependencies.
82-
3. Format your code with prettier (`pnpm format`) from the root.
78+
**Before submitting a pull request**, please make sure to see [Development Workflow](#development-workflow).
8379

8480
## Contribution Prerequisites
8581

@@ -131,9 +127,9 @@ pnpm -v;
131127
If the versions are not correct or you don't have Node.js or Pnpm installed, download and follow their setup instructions:
132128

133129
- Install Node.js using [fnm](https://github.com/Schniz/fnm) or from the [official website](https://nodejs.org/)
134-
- Install[Pnpm](https://pnpm.io/installation)
130+
- Install [Pnpm](https://pnpm.io/installation)
135131

136-
With `nvm` or `fnm`
132+
To install the required Node.js version use `nvm` or `fnm`:
137133

138134
```bash
139135
# FROM: ./docs
@@ -152,11 +148,11 @@ This will install all dependencies in all `./apps` and `./packages` folders.
152148
pnpm install;
153149
```
154150

155-
> **NOTE:** Alternatively you if you have `node_modules` conflicts, you can run `pnpm clean` which will remove all node_modules, caching, and turbo folders, for a fresh install.
151+
> **NOTE:** Alternatively if you have `node_modules` conflicts, you can run `pnpm clean` which will remove all node modules, caching, and turbo folders, for a fresh install.
156152
157153
### Running different sites
158154

159-
To run all sites at once, you simply run the following command.
155+
To run all sites at once, you can simply run the following command.
160156

161157
```bash
162158
# FROM: ./docs

apps/bend/.vitepress/config.ts

+16-10
Original file line numberDiff line numberDiff line change
@@ -138,49 +138,55 @@ export default defineConfig({
138138
{
139139
find: /^.*\/VPNavBar\.vue$/,
140140
replacement: fileURLToPath(
141-
new URL("../node_modules/@berachain/ui/NavBar.vue", import.meta.url)
141+
new URL(
142+
"../node_modules/@berachain/ui/NavBar.vue",
143+
import.meta.url,
144+
),
142145
),
143146
},
144147
{
145148
find: /^.*\/VPNavBarMenu\.vue$/,
146149
replacement: fileURLToPath(
147150
new URL(
148151
"../node_modules/@berachain/ui/NavBarMenu.vue",
149-
import.meta.url
150-
)
152+
import.meta.url,
153+
),
151154
),
152155
},
153156
{
154157
find: /^.*\/VPNavBarMenuLink\.vue$/,
155158
replacement: fileURLToPath(
156159
new URL(
157160
"../node_modules/@berachain/ui/NavBarMenuLink.vue",
158-
import.meta.url
159-
)
161+
import.meta.url,
162+
),
160163
),
161164
},
162165
{
163166
find: /^.*\/VPNavScreenMenuGroup\.vue$/,
164167
replacement: fileURLToPath(
165168
new URL(
166169
"../node_modules/@berachain/ui/NavScreenMenuGroup.vue",
167-
import.meta.url
168-
)
170+
import.meta.url,
171+
),
169172
),
170173
},
171174
{
172175
find: /^.*\/VPFlyout\.vue$/,
173176
replacement: fileURLToPath(
174-
new URL("../node_modules/@berachain/ui/Flyout.vue", import.meta.url)
177+
new URL(
178+
"../node_modules/@berachain/ui/Flyout.vue",
179+
import.meta.url,
180+
),
175181
),
176182
},
177183
{
178184
find: /^.*\/VPSidebar\.vue$/,
179185
replacement: fileURLToPath(
180186
new URL(
181187
"../node_modules/@berachain/ui/Sidebar.vue",
182-
import.meta.url
183-
)
188+
import.meta.url,
189+
),
184190
),
185191
},
186192
],

apps/bend/content/developers/guides/delegate-credits.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ To approve delegation, the approveDelegation method of the debt token contract i
3030
import { ethers } from "ethers";
3131

3232
const provider = new ethers.providers.JsonRpcProvider(
33-
"https://bartio.rpc.berachain.com"
33+
"https://bartio.rpc.berachain.com",
3434
);
3535
const signer = new ethers.Wallet("YOUR_PRIVATE_KEY", provider);
3636

@@ -44,14 +44,14 @@ const debtTokenAbi = [
4444
const debtTokenContract = new ethers.Contract(
4545
debtTokenAddress,
4646
debtTokenAbi,
47-
signer
47+
signer,
4848
);
4949

5050
async function approveDelegation() {
5151
try {
5252
const tx = await debtTokenContract.approveDelegation(
5353
delegationAddress,
54-
amount
54+
amount,
5555
);
5656
await tx.wait();
5757
console.log(`Delegation approved: ${tx.hash}`);
@@ -81,7 +81,7 @@ The borrower's available credit is reduced by the borrowed amount.
8181
import { ethers } from "ethers";
8282

8383
const provider = new ethers.providers.JsonRpcProvider(
84-
"https://bartio.rpc.berachain.com"
84+
"https://bartio.rpc.berachain.com",
8585
);
8686
const signer = new ethers.Wallet("YOUR_PRIVATE_KEY", provider);
8787

@@ -100,7 +100,7 @@ async function getPoolAddress(): Promise<string> {
100100
const lendingPoolAddressesProvider = new ethers.Contract(
101101
poolAddressesProvider,
102102
poolAddressesProviderAbi,
103-
provider
103+
provider,
104104
);
105105
return await lendingPoolAddressesProvider.getPool();
106106
}
@@ -111,15 +111,15 @@ async function borrow() {
111111
const lendingPoolContract = new ethers.Contract(
112112
lendingPoolAddress,
113113
lendingPoolAbi,
114-
signer
114+
signer,
115115
);
116116

117117
const tx = await lendingPoolContract.borrow(
118118
assetAddress,
119119
borrowAmount,
120120
2, // variable interest rate
121121
0,
122-
DELEGATOR_ADDRESS
122+
DELEGATOR_ADDRESS,
123123
);
124124
await tx.wait();
125125
console.log(`Borrowed: ${tx.hash}`);

apps/bend/content/developers/guides/liquidate-loan.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ import { ethers } from "ethers";
5353

5454
// connect to Berachain using the provided rpc url
5555
const provider = new ethers.providers.JsonRpcProvider(
56-
"https://bartio.rpc.berachain.com"
56+
"https://bartio.rpc.berachain.com",
5757
);
5858

5959
// replace with your wallet's private key
@@ -83,12 +83,12 @@ async function liquidateLoan() {
8383
debtAssetAddress, // the debt asset we're covering
8484
userAddress, // the user whose loan is being liquidated
8585
debtToCover, // amount of debt to cover
86-
false // set to true if you want to receive aTokens instead of the underlying asset
86+
false, // set to true if you want to receive aTokens instead of the underlying asset
8787
);
8888

8989
await tx.wait();
9090
console.log(
91-
`liquidation performed successfully! transaction hash: ${tx.hash}`
91+
`liquidation performed successfully! transaction hash: ${tx.hash}`,
9292
);
9393
} catch (error) {
9494
console.error("there was an error performing the liquidation:", error);

apps/bend/content/developers/guides/repay-loan.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { ethers } from "ethers";
1515

1616
// Connect to Berachain using the provided RPC URL
1717
const provider = new ethers.providers.JsonRpcProvider(
18-
"https://bartio.rpc.berachain.com"
18+
"https://bartio.rpc.berachain.com",
1919
);
2020
const signer = new ethers.Wallet("YOUR_PRIVATE_KEY", provider);
2121

@@ -45,7 +45,7 @@ async function repayLoan() {
4545
honeyAddress,
4646
repayAmount,
4747
2, // variable interest rate
48-
signer.address // repaying loan on behalf of this user
48+
signer.address, // repaying loan on behalf of this user
4949
);
5050
await tx.wait();
5151
console.log(`Repaid: ${tx.hash}`);

apps/bend/content/developers/guides/retrieve-interest-rates.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Below is an example for fetching interest rates on Bend
1818
import { ethers } from "ethers";
1919

2020
const provider = new ethers.providers.JsonRpcProvider(
21-
"https://bartio.rpc.berachain.com"
21+
"https://bartio.rpc.berachain.com",
2222
);
2323
const poolAddressesProvider = "0x8297A07f87a8576b88d46e636c05B84E4Ea8265D";
2424

@@ -138,7 +138,7 @@ async function fetchInterestRates() {
138138
const poolAddressesProvider = new ethers.Contract(
139139
poolAddressesProvider,
140140
poolAddressesProviderAbi,
141-
provider
141+
provider,
142142
);
143143
const lendingPoolAddress = await poolAddressesProvider.getPool();
144144
const lendingPool = new ethers.Contract(poolAddress, poolAbi, provider);
@@ -147,10 +147,10 @@ async function fetchInterestRates() {
147147
await lendingPool.getReserveData(assetAddress);
148148

149149
console.log(
150-
`$HONEY Supply APY: ${ethers.utils.formatUnits(liquidityRate, 27)}%`
150+
`$HONEY Supply APY: ${ethers.utils.formatUnits(liquidityRate, 27)}%`,
151151
);
152152
console.log(
153-
`$HONEY Borrow APY: ${ethers.utils.formatUnits(variableBorrowRate, 27)}%`
153+
`$HONEY Borrow APY: ${ethers.utils.formatUnits(variableBorrowRate, 27)}%`,
154154
);
155155
}
156156

apps/berps/.vitepress/config.ts

+16-10
Original file line numberDiff line numberDiff line change
@@ -135,49 +135,55 @@ export default defineConfig({
135135
{
136136
find: /^.*\/VPNavBar\.vue$/,
137137
replacement: fileURLToPath(
138-
new URL("../node_modules/@berachain/ui/NavBar.vue", import.meta.url)
138+
new URL(
139+
"../node_modules/@berachain/ui/NavBar.vue",
140+
import.meta.url,
141+
),
139142
),
140143
},
141144
{
142145
find: /^.*\/VPNavBarMenu\.vue$/,
143146
replacement: fileURLToPath(
144147
new URL(
145148
"../node_modules/@berachain/ui/NavBarMenu.vue",
146-
import.meta.url
147-
)
149+
import.meta.url,
150+
),
148151
),
149152
},
150153
{
151154
find: /^.*\/VPNavBarMenuLink\.vue$/,
152155
replacement: fileURLToPath(
153156
new URL(
154157
"../node_modules/@berachain/ui/NavBarMenuLink.vue",
155-
import.meta.url
156-
)
158+
import.meta.url,
159+
),
157160
),
158161
},
159162
{
160163
find: /^.*\/VPNavScreenMenuGroup\.vue$/,
161164
replacement: fileURLToPath(
162165
new URL(
163166
"../node_modules/@berachain/ui/NavScreenMenuGroup.vue",
164-
import.meta.url
165-
)
167+
import.meta.url,
168+
),
166169
),
167170
},
168171
{
169172
find: /^.*\/VPFlyout\.vue$/,
170173
replacement: fileURLToPath(
171-
new URL("../node_modules/@berachain/ui/Flyout.vue", import.meta.url)
174+
new URL(
175+
"../node_modules/@berachain/ui/Flyout.vue",
176+
import.meta.url,
177+
),
172178
),
173179
},
174180
{
175181
find: /^.*\/VPSidebar\.vue$/,
176182
replacement: fileURLToPath(
177183
new URL(
178184
"../node_modules/@berachain/ui/Sidebar.vue",
179-
import.meta.url
180-
)
185+
import.meta.url,
186+
),
181187
),
182188
},
183189
],

apps/berps/content/developers/guides/close-trade.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const signer = new ethers.Wallet(YOUR_PRIVATE_KEY, ETHERS_PROVIDER);
4343
const tradingContract = new ethers.Contract(
4444
ENTRYPOINT_CONTRACT_ADDRESS,
4545
EntrypointContractABI,
46-
signer
46+
signer,
4747
);
4848
const pythConnection = new EvmPriceServiceConnection(PYTH_ENDPOINT);
4949
```
@@ -63,7 +63,7 @@ const priceUpdateData = await pythConnection.getPriceFeedsUpdateData([
6363
const tx = await tradingContract.closeTradeMarket(
6464
TRADE_INDEX, // Index of the trade to close
6565
priceUpdateData,
66-
{ value: 2 }
66+
{ value: 2 },
6767
);
6868
```
6969

0 commit comments

Comments
 (0)