{"id":18769430,"url":"https://github.com/learnforpractice/pscdk-book","last_synced_at":"2025-12-10T15:30:14.687Z","repository":{"id":162802363,"uuid":"619496521","full_name":"learnforpractice/pscdk-book","owner":"learnforpractice","description":"Python Smart Contract Book","archived":false,"fork":false,"pushed_at":"2023-06-05T09:43:12.000Z","size":3066,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-12-29T07:26:06.096Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://learnforpractice.github.io/pscdk-book/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/learnforpractice.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-03-27T08:59:14.000Z","updated_at":"2023-05-09T08:03:37.000Z","dependencies_parsed_at":"2024-06-01T06:49:08.361Z","dependency_job_id":null,"html_url":"https://github.com/learnforpractice/pscdk-book","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/learnforpractice%2Fpscdk-book","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/learnforpractice%2Fpscdk-book/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/learnforpractice%2Fpscdk-book/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/learnforpractice%2Fpscdk-book/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/learnforpractice","download_url":"https://codeload.github.com/learnforpractice/pscdk-book/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239671420,"owners_count":19677875,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T19:15:50.480Z","updated_at":"2025-12-10T15:30:14.628Z","avatar_url":"https://github.com/learnforpractice.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pscdk-book\n\n[Python Smart Contracts Development Cook Book](https://learnforpractice.github.io/pscdk-book)\n\n## Table of Contents\n\n* [Prior Knowledge](docs/prelude.md)\n* [Development Environment](docs/env.md)\n* [HelloWorld](docs/helloworld.md)\n* [Deploy](docs/deploy.md)\n* [Interact with Digital Wallets](docs/ui.md)\n* [Inline Action](docs/action.md)\n* [The require_recipient Function](docs/notify.md)\n* [Database](docs/database.md)\n* [Crypto Functions](docs/crypto.md)\n* [Commonly Functions](docs/common.md)\n* [Call C/C++ Code](docs/callc.md)\n* [Codon](docs/codon.md)\n\n\n## Open in Colab\n\n* [Prior Knowledge](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/en/prelude.ipynb)\n* [Development Environment](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/en/env.ipynb)\n* [HelloWorld](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/en/helloworld.ipynb)\n* [Deploy](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/en/deploy.ipynb)\n* [Interact with Digital Wallets](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/en/ui.ipynb)\n* [Inline Action](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/en/action.ipynb)\n* [The require_recipient Function](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/en/notify.ipynb)\n* [Database](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/en/database.ipynb)\n* [Crypto Functions](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/en/crypto.ipynb)\n* [Commonly Functions](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/en/common.ipynb)\n* [Call C/C++ Code](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/en/callc.ipynb)\n* [Codon](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/en/codon.ipynb)\n\n## 目录\n\n* [预备知识](docs/prelude.zh.md)\n* [开发环境搭建](docs/env.zh.md)\n* [HelloWorld](docs/helloworld.zh.md)\n* [发布合约](docs/deploy.zh.md)\n* [与数字钱包进行交互](docs/ui.zh.md)\n* [内联Action在智能合约的使用](docs/action.zh.md)\n* [require_recipient函数](docs/notify.zh.md)\n* [数据库的操作](docs/database.zh.md)\n* [密码学相关函数](docs/crypto.zh.md)\n* [常用智能合约函数](docs/common.zh.md)\n* [Codon代码里调用C/C++代码](docs/callc.zh.md)\n* [和标准Python的差异](docs/codon.zh.md)\n\n## 在Colab中运行\n\n* [预备知识](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/zh/prelude.zh.ipynb)\n* [开发环境搭建](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/zh/env.zh.ipynb)\n* [HelloWorld](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/zh/helloworld.zh.ipynb)\n* [发布合约](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/zh/deploy.zh.ipynb)\n* [与数字钱包进行交互](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/zh/ui.zh.ipynb)\n* [内联Action在智能合约的使用](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/zh/action.zh.ipynb)\n* [require_recipient函数](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/zh/notify.zh.ipynb)\n* [数据库的操作](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/zh/database.zh.ipynb)\n* [密码学相关函数](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/zh/crypto.zh.ipynb)\n* [常用智能合约函数](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/zh/common.zh.ipynb)\n* [Codon代码里调用C/C++代码](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/zh/callc.zh.ipynb)\n* [和标准Python的差异](https://colab.research.google.com/github/learnforpractice/pscdk-book/blob/main/notebook/zh/codon.zh.ipynb)\n\n\n## Examples\n\n[examples](./examples)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flearnforpractice%2Fpscdk-book","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flearnforpractice%2Fpscdk-book","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flearnforpractice%2Fpscdk-book/lists"}