{"id":20002821,"url":"https://github.com/codewithmide/mide-token","last_synced_at":"2025-07-18T09:37:46.459Z","repository":{"id":236060468,"uuid":"791823296","full_name":"codewithmide/mide-token","owner":"codewithmide","description":"A token named after me deployed on the Oraichain blockchain","archived":false,"fork":false,"pushed_at":"2024-04-26T07:08:21.000Z","size":129,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-12T13:23:29.344Z","etag":null,"topics":["cosmwasm","oraichain","rust"],"latest_commit_sha":null,"homepage":"https://scan.orai.io/txs/95E9B8F230E4A47087C1FB069F2CAD4A8A7D46C0C47B9991BB32913AD0CDEB7E","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codewithmide.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":"2024-04-25T12:48:46.000Z","updated_at":"2024-04-28T09:22:28.000Z","dependencies_parsed_at":"2024-04-25T13:58:07.246Z","dependency_job_id":"e3990d74-2921-42b6-af72-d614d50b5a89","html_url":"https://github.com/codewithmide/mide-token","commit_stats":null,"previous_names":["codewithmide/-mide"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithmide%2Fmide-token","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithmide%2Fmide-token/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithmide%2Fmide-token/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithmide%2Fmide-token/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codewithmide","download_url":"https://codeload.github.com/codewithmide/mide-token/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241441050,"owners_count":19963344,"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":["cosmwasm","oraichain","rust"],"created_at":"2024-11-13T05:23:11.828Z","updated_at":"2025-03-02T00:21:41.279Z","avatar_url":"https://github.com/codewithmide.png","language":"Rust","readme":"# CosmWasm Starter Pack\n\nThis is a template to build smart contracts in Rust to run inside a\n[Cosmos SDK](https://github.com/cosmos/cosmos-sdk) module on all chains that enable it.\nTo understand the framework better, please read the overview in the\n[cosmwasm repo](https://github.com/CosmWasm/cosmwasm/blob/master/README.md),\nand dig into the [cosmwasm docs](https://www.cosmwasm.com).\nThis assumes you understand the theory and just want to get coding.\n\n## Creating a new repo from template\n\nAssuming you have a recent version of rust and cargo (v1.58.1+) installed\n(via [rustup](https://rustup.rs/)),\nthen the following should get you a new repo to start a contract:\n\nInstall [cargo-generate](https://github.com/ashleygwilliams/cargo-generate) and cargo-run-script.\nUnless you did that before, run this line now:\n\n```sh\ncargo install cargo-generate --features vendored-openssl\ncargo install cargo-run-script\n```\n\nNow, use it to create your new contract.\nGo to the folder in which you want to place it and run:\n\n\n**Latest: 1.0.0-beta6**\n\n```sh\ncargo generate --git https://github.com/CosmWasm/cw-template.git --name PROJECT_NAME\n````\n\n**Older Version**\n\nPass version as branch flag:\n\n```sh\ncargo generate --git https://github.com/CosmWasm/cw-template.git --branch \u003cversion\u003e --name PROJECT_NAME\n````\n\nExample:\n\n```sh\ncargo generate --git https://github.com/CosmWasm/cw-template.git --branch 0.16 --name PROJECT_NAME\n```\n\nYou will now have a new folder called `PROJECT_NAME` (I hope you changed that to something else)\ncontaining a simple working contract and build system that you can customize.\n\n## Create a Repo\n\nAfter generating, you have a initialized local git repo, but no commits, and no remote.\nGo to a server (eg. github) and create a new upstream repo (called `YOUR-GIT-URL` below).\nThen run the following:\n\n```sh\n# this is needed to create a valid Cargo.lock file (see below)\ncargo check\ngit branch -M main\ngit add .\ngit commit -m 'Initial Commit'\ngit remote add origin YOUR-GIT-URL\ngit push -u origin main\n```\n\n## CI Support\n\nWe have template configurations for both [GitHub Actions](.github/workflows/Basic.yml)\nand [Circle CI](.circleci/config.yml) in the generated project, so you can\nget up and running with CI right away.\n\nOne note is that the CI runs all `cargo` commands\nwith `--locked` to ensure it uses the exact same versions as you have locally. This also means\nyou must have an up-to-date `Cargo.lock` file, which is not auto-generated.\nThe first time you set up the project (or after adding any dep), you should ensure the\n`Cargo.lock` file is updated, so the CI will test properly. This can be done simply by\nrunning `cargo check` or `cargo unit-test`.\n\n## Using your project\n\nOnce you have your custom repo, you should check out [Developing](./Developing.md) to explain\nmore on how to run tests and develop code. Or go through the\n[online tutorial](https://docs.cosmwasm.com/) to get a better feel\nof how to develop.\n\n[Publishing](./Publishing.md) contains useful information on how to publish your contract\nto the world, once you are ready to deploy it on a running blockchain. And\n[Importing](./Importing.md) contains information about pulling in other contracts or crates\nthat have been published.\n\nPlease replace this README file with information about your specific project. You can keep\nthe `Developing.md` and `Publishing.md` files as useful referenced, but please set some\nproper description in the README.\n\n## Gitpod integration\n\n[Gitpod](https://www.gitpod.io/) container-based development platform will be enabled on your project by default.\n\nWorkspace contains:\n - **rust**: for builds\n - [wasmd](https://github.com/CosmWasm/wasmd): for local node setup and client\n - **jq**: shell JSON manipulation tool\n\nFollow [Gitpod Getting Started](https://www.gitpod.io/docs/getting-started) and launch your workspace.\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodewithmide%2Fmide-token","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodewithmide%2Fmide-token","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodewithmide%2Fmide-token/lists"}