minter-contract
minter.ton.org Jetton Smart Contract
파일 탐색기
- node.js.yml
- settings.json
- .gitignore
- _build.ts
- _deploy.ts
- _setup.ts
- jetton-minter.deploy.ts
- constants.fc
- discovery-params.fc
- jetton-utils.fc
- op-codes.fc
- params.fc
- stdlib.fc
- utils.fc
- jetton-minter.fc
- jetton-minter.tlb
- jetton-wallet.fc
- jetton-wallet.tlb
- jetton-minter.ts
- jetton-utils.ts
- jetton-wallet.ts
- ops.ts
- utils.ts
- wrapped-smart-contract.ts
- helpers.ts
- jetton.spec.ts
- .eslintrc.js
- .gitignore
- .prettierrc.json
- LICENSE
- package-lock.json
- package.json
- README.md
- tsconfig.json
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
https
설명 보기 ▼
https
이 명령은 `http`의 별칭입니다.
tldr http
자세한 내용은 원본 명령을 참고하세요:
ipfs
설명 보기 ▼
ipfs
Inter Planetary File System.
p2p기반 하이퍼미디어 프로토콜, 웹을 더 개방적으로 만드는 것을 목표로 함.
더 많은 정보: <https://docs.ipfs.tech/reference/kubo/cli/>.
ipfs add {{path/to/file}}
로컬 파일을 추가하고, pin 처리 후 해시 출력:
ipfs add {{[-r|--recursive]}} {{path/to/directory}}
로컬에서 파일시스템으로 디렉터리를 재귀적으로 추가하고 해시 출력:
ipfs get {{hash}} {{[-o|--output]}} {{path/to/file}}
원격 파일을 저장하고 이름 지정하지만, pin 하지 않음:
npm install
설명 보기 ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm run
설명 보기 ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
