Skip to content

Commit fb196e0

Browse files
authored
Merge pull request #6387 from remix-project-org/move_workshops
move remix-workshop repo
2 parents 0653108 + 8ea8026 commit fb196e0

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

apps/learneth/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ cannot compile and test files in the workshops.
3434

3535
You can create your own workshops that can be imported in the plugin.
3636
When importing a github repo the plugin will look for a directory structure describing the workshops.
37-
For example: https://github.com/ethereum/remix-workshops
37+
For example: https://github.com/remix-project-org/remix-workshops
3838

3939
### Root directories
4040

@@ -118,9 +118,9 @@ tags:
118118
(function () {
119119
try {
120120
// You don't need to add a separate addRepository before calling startTutorial, this is just an example
121-
remix.call('LearnEth', 'addRepository', "ethereum/remix-workshops", "master")
122-
remix.call('LearnEth', 'startTutorial', "ethereum/remix-workshops", "master", "basics")
123-
remix.call('LearnEth', 'startTutorial', "ethereum/remix-workshops", "master", 2)
121+
remix.call('LearnEth', 'addRepository', "remix-project-org/remix-workshops", "master")
122+
remix.call('LearnEth', 'startTutorial', "remix-project-org/remix-workshops", "master", "basics")
123+
remix.call('LearnEth', 'startTutorial', "remix-project-org/remix-workshops", "master", 2)
124124
} catch (e) {
125125
console.log(e.message)
126126
}

apps/learneth/src/redux/models/workshop.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ const apiUrl = 'https://learneth.api.remix.live'
1010

1111
export const repoMap = {
1212
en: {
13-
name: 'ethereum/remix-workshops',
13+
name: 'remix-project-org/remix-workshops',
1414
branch: 'master',
1515
},
1616
zh: {
17-
name: 'ethereum/remix-workshops',
17+
name: 'remix-project-org/remix-workshops',
1818
branch: 'zh',
1919
},
2020
es: {
21-
name: 'ethereum/remix-workshops',
21+
name: 'remix-project-org/remix-workshops',
2222
branch: 'es',
2323
},
2424
}

libs/remix-ui/home-tab/src/lib/components/homeTabLearn.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function HomeTabLearn({ plugin }: HomeTabLearnProps) {
3131
const startLearnEthTutorial = async (tutorial: 'basics' | 'soliditybeginner' | 'deploylibraries') => {
3232
await plugin.appManager.activatePlugin(['solidity', 'LearnEth', 'solidityUnitTesting'])
3333
plugin.verticalIcons.select('LearnEth')
34-
plugin.call('LearnEth', 'startTutorial', 'ethereum/remix-workshops', 'master', tutorial)
34+
plugin.call('LearnEth', 'startTutorial', 'remix-project-org/remix-workshops', 'master', tutorial)
3535
_paq.push(['trackEvent', 'hometab', 'startLearnEthTutorial', tutorial])
3636
}
3737

0 commit comments

Comments
 (0)