-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
84b5762
commit 9b76d78
Showing
90 changed files
with
386 additions
and
301 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import course from "!raw-loader!./course.md"; | ||
import caller from '!raw-loader!./caller.mligo' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import exercise from "!raw-loader!./exercise.mligo"; | ||
import course from '!raw-loader!./course.md' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import solution from "!raw-loader!./solution.mligo"; | ||
import exercise from '!raw-loader!./exercise.mligo' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import support1 from "!raw-loader!./fungible_token.mligo"; | ||
import fungible_token from '!raw-loader!./fungible_token.mligo' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import support2 from "!raw-loader!./caller.mligo"; | ||
import solution from '!raw-loader!./solution.mligo' | ||
|
||
export const data = { course, exercise, solution, support1, support2 }; | ||
export const data = { course, exercise, solution, supports: {fungible_token, caller} } |
26 changes: 15 additions & 11 deletions
26
src/frontend/src/pages/Chapters/Camel/ChapterFA20Hook/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,34 @@ | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import course from "!raw-loader!./course.md"; | ||
import course from '!raw-loader!./course.md' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import exercise from "!raw-loader!./exercise.mligo"; | ||
import exercise from '!raw-loader!./exercise.mligo' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import solution from "!raw-loader!./solution.mligo"; | ||
import fa2_core from '!raw-loader!./fa2_core.mligo' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import support1 from "!raw-loader!./tzip-12/lib/fa2_convertors.mligo"; | ||
import solution from '!raw-loader!./solution.mligo' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import support2 from "!raw-loader!./tzip-12/lib/fa2_operator_lib.mligo"; | ||
import fa2_errors from '!raw-loader!./tzip-12/fa2_errors.mligo' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import support3 from "!raw-loader!./tzip-12/lib/fa2_owner_hooks_lib.mligo"; | ||
import fa2_interface from '!raw-loader!./tzip-12/fa2_interface.mligo' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import support4 from "!raw-loader!./tzip-12/fa2_interface.mligo"; | ||
import fa2_convertors from '!raw-loader!./tzip-12/lib/fa2_convertors.mligo' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import support5 from "!raw-loader!./tzip-12/fa2_errors.mligo"; | ||
|
||
import fa2_operator_lib from '!raw-loader!./tzip-12/lib/fa2_operator_lib.mligo' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import support6 from "!raw-loader!./fa2_core.mligo"; | ||
import fa2_owner_hooks_lib from '!raw-loader!./tzip-12/lib/fa2_owner_hooks_lib.mligo' | ||
|
||
export const data = { course, exercise, solution, support1, support2, support3, support4, support5, support6 }; | ||
export const data = { | ||
course, | ||
exercise, | ||
solution, | ||
supports: {fa2_convertors, fa2_operator_lib, fa2_owner_hooks_lib, fa2_interface, fa2_errors, fa2_core}, | ||
} |
24 changes: 14 additions & 10 deletions
24
src/frontend/src/pages/Chapters/Camel/ChapterFA20Operator/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,31 @@ | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import course from "!raw-loader!./course.md"; | ||
import course from '!raw-loader!./course.md' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import exercise from "!raw-loader!./exercise.cmd"; | ||
import exercise from '!raw-loader!./exercise.cmd' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import solution from "!raw-loader!./solution.cmd"; | ||
import solution from '!raw-loader!./solution.cmd' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import support1 from "!raw-loader!./tzip-12/lib/fa2_convertors.mligo"; | ||
import tqtz_nft from '!raw-loader!./tqtz_nft.mligo' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import support2 from "!raw-loader!./tzip-12/lib/fa2_operator_lib.mligo"; | ||
import fa2_errors from '!raw-loader!./tzip-12/fa2_errors.mligo' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import support4 from "!raw-loader!./tzip-12/fa2_interface.mligo"; | ||
import fa2_interface from '!raw-loader!./tzip-12/fa2_interface.mligo' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import support5 from "!raw-loader!./tzip-12/fa2_errors.mligo"; | ||
|
||
import fa2_convertors from '!raw-loader!./tzip-12/lib/fa2_convertors.mligo' | ||
/* eslint import/no-webpack-loader-syntax: off */ | ||
// @ts-ignore | ||
import support6 from "!raw-loader!./tqtz_nft.mligo"; | ||
import fa2_operator_lib from '!raw-loader!./tzip-12/lib/fa2_operator_lib.mligo' | ||
|
||
export const data = { course, exercise, solution, support1, support2, support4, support5, support6 }; | ||
export const data = { | ||
course, | ||
exercise, | ||
solution, | ||
supports: {fa2_convertors, fa2_operator_lib, fa2_interface, fa2_errors, tqtz_nft}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.