Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Gator Examples

A monorepo containing the example applications for building apps with [Metamask Delegation Tookit](https://docs.metamask.io/delegation-toolkit/)
A monorepo containing the example applications for building apps with [Metamask Smart Accounts Kit](https://docs.metamask.io/smart-accounts-kit/).

## Overview

This repository contains:

**create-gator-app**: CLI tool to bootstrap new projects with delegation capabilities
**create-gator-app**: CLI tool to bootstrap new projects for Smart Accounts Kit

## Repository Structure

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@metamask/gator-examples",
"type": "module",
"version": "4.0.0",
"version": "5.0.0",
"private": true,
"license": "(MIT-0 OR Apache-2.0)",
"description": "CLI tool to create Gator examples",
"description": "CLI tool to create Smart Accounts Kit examples",
"main": "dist/index.js",
"repository": {
"type": "git",
Expand Down
16 changes: 14 additions & 2 deletions packages/create-gator-app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.4]

### Changed

- Rename ERC-7715 template to Advanced Permissions template
- Update templates to use `@metamask/smart-accounts-kit`

### Fixed

- Fix Farcaster template dependency issue

## [0.1.3]

### Changed
Expand Down Expand Up @@ -49,8 +60,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- ERC-7715 starter template for Next.js
- Support for feature flags

[Unreleased]: https://github.com/MetaMask/gator-examples/compare/create-gator-app@0.1.3...HEAD
[Unreleased]: https://github.com/MetaMask/gator-examples/compare/create-gator-app@0.1.4...HEAD
[0.1.4]: https://github.com/MetaMask/gator-examples/compare/create-gator-app@0.1.3...create-gator-app@0.1.4
[0.1.3]: https://github.com/MetaMask/gator-examples/compare/create-gator-app@0.1.2...create-gator-app@0.1.3
[0.1.2]: https://github.com/MetaMask/gator-examples/compare/create-gator-app@0.1.1...create-gator-app@0.1.2
[0.1.1]: https://github.com/MetaMask/gator-examples/compare/create-gator-app@0.1.0...create-gator-app@0.1.1
[0.1.0]: https://github.com/MetaMask/gator-examples/releases/tag/create-gator-app@0.1.0
[0.1.0]: https://github.com/MetaMask/gator-examples/releases/tag/create-gator-app@0.1.0
4 changes: 2 additions & 2 deletions packages/create-gator-app/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Create Gator App

Interactive CLI to bootstrap a project with the MetaMask Smart Accounts, and ERC-7715 template in under two minutes. The CLI automatically installs the required dependencies and sets up a project structure using a selected template, allowing you to focus on building your dapp.
Interactive CLI to bootstrap a project with the MetaMask Smart Accounts, and Advanced Permissions template in under two minutes. The CLI automatically installs the required dependencies and sets up a project structure using a selected template, allowing you to focus on building your dapp.

[![npm version](https://img.shields.io/npm/v/@metamask/create-gator-app.svg)](https://www.npmjs.com/package/@metamask/create-gator-app)
[![License](https://img.shields.io/npm/l/@metamask/create-gator-app.svg)]()
Expand All @@ -15,4 +15,4 @@ npx @metamask/create-gator-app@latest

## Documentation

See [CLI quickstart](https://docs.metamask.io/delegation-toolkit/get-started/cli-quickstart/) to learn more.
See [CLI quickstart](https://docs.metamask.io/smart-accounts-kit) to learn more.
4 changes: 2 additions & 2 deletions packages/create-gator-app/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "@metamask/create-gator-app",
"version": "0.1.3",
"version": "0.1.4",
"license": "(MIT-0 OR Apache-2.0)",
"description": "CLI tool to create new MetaMask Delegator applications",
"description": "CLI tool to create new MetaMask Smart Accounts Kit application",
"main": "dist/src/index.js",
"types": "./dist/src/index.d.ts",
"bin": "./dist/src/index.js",
Expand Down
Loading