-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #960 from near/dev
v8.5.4 Release (dev -> main)
- Loading branch information
Showing
58 changed files
with
255 additions
and
107 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,10 @@ categories: | |
- 'perf' | ||
- 'test' | ||
- 'build' | ||
|
||
exclude-labels: | ||
- 'skip-changelog' | ||
|
||
template: | | ||
## Changelog | ||
$CHANGES |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Near Wallet Selector Examples | ||
|
||
This folder contains two example projects that demonstrate how to integrate Near Wallet Selector to React and Angular applications. | ||
|
||
## Structure | ||
|
||
- **`angular/`**: Angular Example | ||
- An Angular example project demonstrating the integration of the Near Wallet Selector. | ||
|
||
- **`react/`**: React Example | ||
- A React example project demonstrating the integration of the Near Wallet Selector. | ||
|
||
## Getting Started | ||
|
||
Follow the individual README files in each project directory (`react/` or `angular/`) to get started with these examples: | ||
|
||
- [Angular Example README](./angular/README.md) | ||
- [React Example README](./react/README.md) | ||
|
||
|
||
Feel free to explore these examples to understand how to integrate Near Wallet Selector to your React and Angular projects. If you have any questions or need help, please refer to the README files in each project folder or reach out for help. |
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Near Wallet Selector Angular Example | ||
|
||
This Angular example shows how to integrate Near Wallet Selector into your Angular application for easy Near wallet integration. | ||
# Usage | ||
|
||
Start the development server: | ||
```bash | ||
yarn nx serve angular | ||
``` | ||
|
||
Open your web browser and navigate to http://localhost:4200/wallet-selector to see the Angular example in action. | ||
|
||
You should be able to interact with the Near Wallet Selector within the example application. | ||
|
||
## Folder Structure | ||
|
||
The folder structure of this Angular project is organized to maintain a clean codebase. Below is an overview of the major directories and their purposes: | ||
|
||
- **`src/`**: This is the root directory for your Angular application. | ||
- **`app/`**: Contains the core application components and modules. | ||
- **`components/`**: Custom Angular components used in the application like `content`, `form`, `loading`, `messages` and `sign-in`. | ||
- **`pages/`**: Wallet Selector and Wallet-selector export has been integrated into this folder. | ||
- **`wallet-selector/`**: Wallet Selector integration. | ||
- **`wallet-selector-export/`**: Wallet Selector Export integration. | ||
- **`environments/`**: Environment configuration files. | ||
|
||
- **`.eslintrc.json`**: ESLint configuration for code linting. | ||
- **`jest.config.ts`**: Configuration file for Jest. | ||
- **`project.json`**: Project configuration file. | ||
- **`README.md`**: The file you are currently reading, providing project documentation. | ||
- **`tsconfig.app.json`**: TypeScript configuration to Angular application. | ||
- **`tsconfig.editor.json`**: TypeScript configuration for code editor. | ||
- **`tsconfig.json`**: The root TypeScript configuration file. | ||
|
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Near Wallet Selector React Example | ||
|
||
This React example shows how to integrate Near Wallet Selector into your React application for easy Near wallet integration. | ||
|
||
# Usage | ||
|
||
Start the development server: | ||
```bash | ||
yarn nx serve react | ||
``` | ||
|
||
Open your web browser and navigate to http://localhost:4200/ to see the React example in action. | ||
|
||
You should be able to interact with the Near Wallet Selector within the example application. | ||
|
||
## Folder Structure | ||
|
||
The folder structure of this React project is organized to maintain a clean codebase. Below is an overview of the major directories and their purposes: | ||
|
||
- **`components/`**: Contains custom React components used in the application like `Content`, `ExportContent`, `Form`, `Loading`, `Messages`, `SignIn`. | ||
- **`contexts/`**: Wallet Selector and Wallet-selector export has been integrated into this folder. | ||
- **`WalletSelectorContext/`**: Wallet Selector integration. | ||
- **`WalletSelectorExportContext/`**: Wallet Selector Export integration. | ||
- **`pages/`**: Main app pages. | ||
|
||
- **`.eslintrc.json`**: ESLint configuration for code linting. | ||
- **`.babelrc`**: Babel configuration file for transpiling JavaScript/TypeScript code. | ||
- **`project.json`**: Project configuration file. | ||
- **`README.md`**: The file you are currently reading, providing project documentation. | ||
- **`tsconfig.json`**: The root TypeScript configuration file. |
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
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
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
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.