repoName stringlengths 7 77 | tree stringlengths 0 2.85M | readme stringlengths 0 4.9M |
|---|---|---|
kiethase_Contract-deposit | account_deposit
Cargo.toml
build.sh
src
account_deposit.rs
errors.rs
lib.rs
storage_impl.rs
token_receivers.rs
utils.rs
front-end-app-near
.env
README.md
package.json
public
index.html
manifest.json
robots.txt
src
... | # Getting Started with Create React App
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Available Scripts
In the project directory, you can run:
### `npm start`
Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view... |
paouvrard_near_promises_example | Cargo.toml
README.md
src
lib.rs
| # NEAR cross contract call promises
### Init project
```
cargo new near_promises_example --lib
```
Edit cargo.toml per [https://github.com/near/near-sdk-rs/blob/master/examples/status-message/Cargo.toml](https://github.com/near/near-sdk-rs/blob/master/examples/status-message/Cargo.toml)
### Compile contract
```
RUST... |
mashharuki_NearElectionDApp | README.md
near-election-dapp
backend
Cargo.toml
src
enumeration.rs
internal.rs
lib.rs
metadata.rs
mint.rs
nft_core.rs
vote.rs
target
.rustc_info.json
debug
.fingerprint... | # NearElectionDApp
Near上で動作するDApp開発用のリポジトリです。
### 動かし方メモ
```cmd
======================================================
👋 Welcome to NEAR! Learn more: https://docs.near.org/
🔧 Let's get your dApp ready.
======================================================
(NEAR collects anonymous information on the commands used. ... |
esaminu_test-js-boilerplate-21 | .eslintrc.yml
.github
ISSUE_TEMPLATE
01_BUG_REPORT.md
02_FEATURE_REQUEST.md
03_CODEBASE_IMPROVEMENT.md
04_SUPPORT_QUESTION.md
config.yml
PULL_REQUEST_TEMPLATE.md
labels.yml
workflows
codeql.yml
deploy-to-console.yml
labels.yml
lock.... | # Hello NEAR Contract
The smart contract exposes two methods to enable storing and retrieving a greeting in the NEAR network.
```ts
@NearBindgen({})
class HelloNear {
greeting: string = "Hello";
@view // This method is read-only and can be called for free
get_greeting(): string {
return this.greeting;
}
... |
haardikk21_indices-fi | .gitpod.yml
README.md
contracts
Cargo.toml
build.sh
deploy.sh
index-token
Cargo.toml
src
events.rs
ft_core.rs
internal.rs
lib.rs
metadata.rs
storage.rs
manager
Cargo.toml
src
lib.rs
... | # Hello NEAR Contract
The smart contract exposes two methods to enable storing and retrieving a greeting in the NEAR network.
```ts
@NearBindgen({})
class HelloNear {
greeting: string = "Hello";
@view // This method is read-only and can be called for free
get_greeting(): string {
return this.greeting;
}
... |
hedward_drop_it_hot | .vscode
settings.json
Cargo.toml
README.md
assets
CODE_OF_CONDUCT.md
build.sh
contract
Cargo.toml
src
internals
ext_traits.rs
helpers.rs
mod.rs
owner.rs
storage.rs
lib.rs
stage1
delete.rs
drops.rs... | <p align="center">
<img src="assets/claimed-linkdrop.png" alt="Logo" style="width: 35%; height: 35%">
<br />
</p>
<div align="center">
<h1>
NEAR Linkdrop Proxy
</h1>
The hub for creating linkdrops containing $NEAR and one of: NFTs, and FTs or an arbitrary function called upon claim
</div>
<div align="cent... |
lawcia_near-code-mentor | README.md
contract
Cargo.toml
build.sh
src
internal.rs
lib.rs
package.json
public
index.html
src
App.js
AskQuestion.js
Feeds.js
Loading.js
Login.js
ReviewQuestion.js
Submission.js
Submissions.js
ViewMySubmissions.js
app.css
feeds.css
helper... | # NEAR Smart Contract - Code Mentor
Website allows women to create amd receive code reviews. Get rewarded in NEAR.
Backend is hosted on the NEAR testnet
Frontend is hosted on Netlify https://near-code-mentor.netlify.app/
## Tech
- rust
- react
- near js api
## Smart Contract
change to contract directory
```cd co... |
hermes1108_near-ft-smart-contract | .github
workflows
test.yml
.gitpod.yml
Cargo.toml
README-Windows.md
README.md
build.bat
build.sh
ft
Cargo.toml
src
lib.rs
rustfmt.toml
test-contract-defi
Cargo.toml
src
lib.rs
tests
sim
main.rs
no_macros.rs
utils.rs
with_macros.rs
| Fungible Token (FT)
===================
Example implementation of a [Fungible Token] contract which uses [near-contract-standards] and [simulation] tests. This is a contract-only example.
[Fungible Token]: https://nomicon.io/Standards/FungibleToken/Core
[near-contract-standards]: https://github.com/near/near-sdk-... |
near_near-memory-tracker | .github
ISSUE_TEMPLATE
BOUNTY.yml
workflows
rust.yml
Cargo.toml
README.md
deny.toml
dump-analyzer
Cargo.toml
example-target
Cargo.toml
src
main.rs
install.sh
near-dump-analyzer
dump.sh
dump_every_hour.sh
near-c-allocator-proxy.c
near-rust-allocator-proxy
Cargo... | Track Rust memory usage by adding a 32 bytes header to all allocations.
See https://doc.rust-lang.org/std/alloc/trait.GlobalAlloc.html
# Usage
You can use code below to enable usage of this library:
```rust
use near_rust_allocator_proxy::allocator::MyAllocator;
use jemallocator::Jemalloc;
#[global_allocator]
static A... |
hyeonjin25_TutoPick | frontend
App.js
assets
global.css
logo-black.svg
logo-white.svg
dist
index.471187ca.css
index.bc0daea6.css
index.html
logo-black.4514ed42.svg
logo-black.54439fde.svg
logo-white.605d2742.svg
logo-white.a7716062.svg
search... | |
Panasthetik_near-starter-app | README.md
contract
Cargo.toml
build.bat
build.sh
src
lib.rs
models.rs
utils.rs
test.sh
package.json
src
App.js
components
CreateEvents.js
ListEvents.js
config.js
global.css
index.html
index.js
utils.js
| # near-starter-app
A simple starter template for developers on the Near Protocol, made with Rust, WASM and React.
Published as a three-part tutorial in Coinmonks on Medium:
# Part 1:
https://medium.com/coinmonks/an-intro-to-near-dapp-development-with-rust-wasm-parcel-and-react-part-1-e500a3abc597
# Part 2:
https:/... |
huyhoang97n_TokenSale | tokensale
.gitpod.yml
README.md
contract
Cargo.toml
README.md
compile.js
neardev
dev-account.env
src
lib.rs
target
.rustc_info.json
debug
.fingerprint
Inflector-6a6e6be8f2e4722... | # SKILLS token sale NEP141 on NEAR
```sh
cargo build --all --target wasm32-unknown-unknown --release
cp target/wasm32-unknown-unknown/release/*.wasm ./res/
near dev-deploy --wasmFile res/greeter.wasm
export ID=contract_id
```
## Demo flow
```sh
near call $ID new '{"price": "20000000000000000000000", "issuer_name": "i... |
Kisgus_admin.news | .eslintrc.js
README.md
app.js
config
app.js
ecosystem.config.js
package-lock.json
package.json
prettier.config.js
resources
GrantApplication
index.js
isMilestoneVisible.js
utilities
logger.js
| # admin.grants [](https://near.org/) [](LICENSE)
> Easy to set up end to end grant application form for DAOs on NEAR Protocol
## Repositories
- [ui.grants](https://github.com/NEARFoun... |
keypom_nearcon-account-factory | .eslintrc.js
README.md
__tests__
create-tix.js
nearcon-keys.json
nearcon
nearcon.ava.ts
utils.ts
tests.ava.ts
utils
keypom.ts
types.ts
workspaces.ts
contract
Cargo.toml
build.sh
src
events
events_core.rs
fts.rs
... | # Keypom Accounts
##
## Account Factory
`create_account`:
- Creates sub-account with name that starts off with $NEAR equal to state's `starting_near_balance` and Fungible Tokens equal to `starting_ncon_balance`.
The account has a contract deployed to it equal to `TRIAL_CONTRACT` and
|
metagov_gateway | .github
workflows
python-app.yml
Functional spec.svg
README.md
docs
_static
css
custom.css
conf.py
make.bat
metagov
README.md
compiled_files_cleanup.sh
manage.py
metagov
__init__.py
asgi.py
celery.py
core
__init__.py... | # Metagov Gateway
The Metagov Gateway is an open-source API gateway for online communities. It helps communities govern themselves by connecting decision-making tools to platforms where decisions need to be made. It’s designed to support rapid prototyping of governance systems, decision-making processes, and social wo... |
FrancoGero_Near-MyTickets | README.md
contract
Cargo.toml
README.md
compile.js
src
context.rs
core_nft.rs
lib.rs
market.rs
tests.rs
deployar.sh
limpiar.sh
package.json
src
assets
logo-black.svg
logo-white.svg
config.js
global.css
index.html
index.js
ma... | WinWin
==================
This app was initialized with [create-near-app]
Quick Start
===========
To run this project locally:
1. Prerequisites: Make sure you've installed [Node.js] ≥ 12
2. Install dependencies: `yarn install`
3. Run the local development server: `yarn dev` (see `package.json` for a
full list of... |
irfancoder_near-dao | Cargo.toml
README.md
build.bat
build.sh
src
lib.rs
test.sh
| # Rust Smart Contract Template
## Getting started
To get started with this template:
1. Click the "Use this template" button to create a new repo based on this template
2. Update line 2 of `Cargo.toml` with your project name
3. Update line 4 of `Cargo.toml` with your project author names
4. Set up the [prerequisites... |
kolawoletech_near-mintbase-marketplace | .github
workflows
pr-approved.yml
pr-merged.yml
pr-open.yml
pr-push.yml
README.md
simple-marketplace
.eslintrc.json
.prettierrc.js
README.md
components
Header.module.css
HorizontalItemList.module.css
ItemList.module.css
TabSplitPlanr.mo... | ---
name: NEAR-Mintbase reusable Marketplace UI
slug: near-mintbase-marketplace
description: Simple Marketplace on MintBase
framework: Next.js
css: Tailwind
---
# Simple Marketplace
This examples shows a simple marketplace with mintbase UI and NEAR Protocol
## Requirements
- [Setup a Near Wallet](https://wallet.te... |
Omhet_secret-ingredient | .eslintrc.js
.prettierrc.js
.stylelintrc.json
asconfig.json
assembly
as_types.d.ts
index.ts
tsconfig.json
index.html
neardev
dev-account.env
package.json
postcss.config.js
public
favicon.svg
mockServiceWorker.js
src
config.ts
env.d.ts
lib
auth
near.ts
leve... | |
near_rocksdb | .circleci
config.yml
ubsan_suppression_list.txt
vs2015_install.ps1
vs2017_install.ps1
.github
ISSUE_TEMPLATE
BOUNTY.yml
workflows
sanity_check.yml
.lgtm.yml
CMakeLists.txt
CODE_OF_CONDUCT.md
CONTRIBUTING.md
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md
INSTALL.md
LANGUAGE-... | # JMH Benchmarks for RocksJava
These are micro-benchmarks for RocksJava functionality, using [JMH (Java Microbenchmark Harness)](https://openjdk.java.net/projects/code-tools/jmh/).
## Compiling
**Note**: This uses a specific build of RocksDB that is set in the `<version>` element of the `dependencies` section of the... |
mfornet_aurora-testing | .eslintrc.yml
hardhat.config.js
package.json
src
main.ts
ropsten.ts
tsconfig.json
| |
ggichuru_Donation-Contract | .gitpod.yml
README.md
contract
Cargo.toml
README.md
src
lib.rs
views.rs
integration-tests
Cargo.toml
package-lock.json
package.json
| near-Donations Contract-project
===============================
This app was initialized with [create-near-app]
Quick Start
===========
If you haven't installed dependencies during setup:
npm run deps-install
Build and deploy your contract to TestNet with a temporary dev account:
npm run deploy
Test your... |
NearPass_nearpass | .eslintrc.json
.github
ISSUE_TEMPLATE
issue.yml
License.md
README.md
helpers
config.ts
ipfs.js
useEventContract.ts
useWallet.ts
utils.js
next.config.js
package.json
postcss.config.js
public
vercel.svg
styles
Home.module.css
globals.css
tailwind.config.js
tsconfig.json
types.t... | ### NearPass React Native App
- This app lets the event owner verify tickets on-chain.
- Also, this app lets the event attendees show ticket.
This app also requires [nearpass-server](https://github.com/NearPass/nearpass-server) to be up (in case you want to test everything locally)
#### How to run
```bash
npm i... |
near_near-vscode | .eslintrc.json
.github
ISSUE_TEMPLATE
BOUNTY.yml
.idea
codeStyles
Project.xml
codeStyleConfig.xml
inspectionProfiles
Project_Default.xml
misc.xml
modules.xml
vcs.xml
.vscode
extensions.json
launch.json
settings.json
tasks.json
DESIGN.md
LICENSE.md
... | # Browser
A framework for reusable components to render and modify SocialDB by Near Social.
## Setup & Development
Initialize repo:
```
yarn
```
Start development version:
```
yarn start
```
## Widget example
Profile view
```jsx
let accountId = props.accountId || "eugenethedream";
let profile = socialGetr(`${ac... |
nearprotocol_technical-interviews | README.md
| # Solutions Repo
Please fork this and put in a PR with your solution in a folder that is your name.
Don't worry about cleaning it up. This is not part of the interview process, but so we can get better at interviewing!
|
near-hackathon-luciferius_challenge-4-guest-book | .eslintrc.yml
.github
workflows
deploy.yml
.gitpod.yml
.travis.yml
README-Gitpod.md
README.md
as-pect.config.js
asconfig.json
assembly
__tests__
as-pect.d.ts
guestbook.spec.ts
as_types.d.ts
main.ts
model.ts
tsconfig.json
babel.config.js
neardev
shared-test-staging
... | Guest Book
==========
[](https://travis-ci.com/near-examples/guest-book)
[](https://gitpod.io/#https://github.com/near-examples/guest-book)
<!-- MAGIC COMMENT: DO NOT DELETE!... |
MilanPoznan_social-club | README.md
contract
README.md
babel.config.json
build.sh
build
builder.c
code.h
hello_near.js
methods.h
deploy.sh
package-lock.json
package.json
src
contract.ts
models.ts
utils
artistUtils.ts
userUtils.ts
... | # Hello NEAR Contract
The smart contract exposes two methods to enable storing and retrieving a greeting in the NEAR network.
```ts
@NearBindgen({})
class HelloNear {
greeting: string = "Hello";
@view // This method is read-only and can be called for free
get_greeting(): string {
return this.greeting;
}
... |
Learn-NEAR_NCD.L1.sample--near-analytics | .cache
02
9e597e02e6e76e0d6918d7ba90f3c1.json
03
8c01f239665abd4e6042b7d39b826e.json
f5bf41fc81230dc8df7797719b6625.json
04
a934295f688ba3df53e805de594c65.json
05
c9de15e65612d67fa491acba072c70.json
06
4eb1318451f050e0ed1b420da9c521.json
89c3fe... | # color-convert
[](https://travis-ci.org/Qix-/color-convert)
Color-convert is a color conversion library for JavaScript and node.
It converts all ways between `rgb`, `hsl`, `hsv`, `hwb`, `cmyk`, `ansi`, `ansi16`, `hex` strings, and CSS `keywor... |
gfirik_near-auth-v1 | README.md
package.json
public
index.html
manifest.json
robots.txt
src
App.js
config.js
index.css
index.js
| # Getting Started with Create React App
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Available Scripts
In the project directory, you can run:
### `npm start`
Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view... |
jelilat_hellonear | .gitpod.yml
README.md
babel.config.js
contract
Cargo.toml
README.md
compile.js
src
lib.rs
target
.rustc_info.json
debug
.fingerprint
Inflector-e85997604b197eb8
lib-inflector.json
autocfg-3b46087fcc03a313
... | hellonear
==================
This [React] app was initialized with [create-near-app]
Quick Start
===========
To run this project locally:
1. Prerequisites: Make sure you've installed [Node.js] ≥ 12
2. Install dependencies: `yarn install`
3. Run the local development server: `yarn dev` (see `package.json` for a
f... |
amirsaranBIH_nearboard | .github
workflows
integrate.yml
.gitpod.yml
README.md
contract
README.md
babel.config.json
package-lock.json
package.json
src
contract.ts
params.ts
types.ts
tsconfig.json
frontend
App.js
assets
global.css
icons
add.svg
... | # Quickstart
1. Make sure you have installed [node.js](https://nodejs.org/en/download/package-manager/) >= 16.
2. Install the [`NEAR CLI`](https://github.com/near/near-cli#setup)
<br />
## 1. Build and Deploy the Contract
You can automatically compile and deploy the contract in the NEAR testnet by running:
```bash
... |
near_push-notifications-server | .eslintrc.json
.github
ISSUE_TEMPLATE
BOUNTY.yml
README.md
__tests__
main.test.ts
jest.config.js
package-lock.json
package.json
src
main.ts
tsconfig.json
tsconfig.release.json
| # Push notifications server
## Quick start
Run to build:
`npm run build`
Run to start:
`npm run dev`
## Using Pub/Sub emulator
Install Pub/Sub:
`gcloud components install pubsub-emulator`
`gcloud components update`
Start the emulator:
`gcloud beta emulators pubsub start --project=test-project`
Setup the topic... |
j0weeX_telegram-reading-bot | Cargo.toml
README.md
build.bat
build.sh
src
lib.rs
test.sh
| # Rust Smart Contract Template
## Getting started
To get started with this template:
1. Click the "Use this template" button to create a new repo based on this template
2. Update line 2 of `Cargo.toml` with your project name
3. Update line 4 of `Cargo.toml` with your project author names
4. Set up the [prerequisites... |
AMBER-Open-Source-Metaverse_amber-mint-page-production | .github
workflows
deploy.yml
.graphqlrc.yml
.vscode
extensions.json
README.md
config
i18n
README.md
en.json
es.json
zh.json
images
21.svg
22.svg
23.svg
24.svg
25.svg
26.svg
27.svg
28.svg
Vecto... | # Internationalize your site
This folder contains a JSON file for each locale you want to include. Add a new one and it will automatically be incorporated into your site next time you build/deploy or restart your development server.
At build time (when you run `yarn build` as during a deploy, or when you restart your... |
Graate-Org_NEAR-Block-Dice--AssemblyScript | README.md
as-pect.config.js
asconfig.json
package.json
scripts
README.md
claim_winning.sh
create_new_game.sh
deploy.sh
get_active_games.sh
get_completed_games.sh
get_created_games.sh
get_game_winners.sh
get_profile_details.sh
join_game.sh
roll_dice.sh
src
as-pect.d.ts
... | ## Unit tests
Unit tests can be run from the top level folder using the following command:
```
yarn test:unit
```
### Tests for Contract in `index.unit.spec.ts`
```
[Describe]: Checks for creating account
[Success]: ✔ creates a new game
[Success]: ✔ creates throws when fee is not attached
[Describe]: Checks for... |
ldgonzalezmedina_Esports-Near | torneo
.cache
00
04ef083a9d4065666da87df6656aae.json
22bec5774b6ae444441757b109709a.json
92c0191eee825327ff574210192cda.json
aa5ca4770c4da6c22c69c0767e7247.json
d654612f3dd5dcea0ecadf9f5c6a23.json
e8b09664d22cacd90e7000d061c96e.json
... | # is-core-module <sup>[![Version Badge][2]][1]</sup>
[![github actions][actions-image]][actions-url]
[![coverage][codecov-image]][codecov-url]
[![dependency status][5]][6]
[![dev dependency status][7]][8]
[![License][license-image]][license-url]
[![Downloads][downloads-image]][downloads-url]
[![npm badge][11]][1]
Is... |
LouisDonDaza_thesisapp | .gitpod.yml
README.md
babel.config.js
contract
README.md
as-pect.config.js
asconfig.json
assembly
__tests__
as-pect.d.ts
main.spec.ts
as_types.d.ts
index.ts
tsconfig.json
compile.js
node_modules
.bin
acorn.cmd
... | [](https://www.npmjs.com/package/espree)
[](https://travis-ci.org/eslint/espree)
[](https://www.npmjs.com/package/espree)
[ is installed:
```console
cargo install cargo-fuzz
```
### Execution
Finally, there are two fuzzing targets available: one for [`serde`](https://github.com/serde-rs/serde) and another for [`borsh`](https://g... |
globalmoneyio_LQuiD.LiQpaiD | README.md
package.json
packages
backend
.env
README.md
as-pect.config.js
asconfig.json
assembly
__tests__
as-pect.d.ts
main.spec.ts
as_types.d.ts
errors.ts
events.ts
main.ts
... | ## How-to
### Prerequisites
You need at least v12 of Node and yarn v1.x.
### Install
After cloning the repo, execute `yarn` inside the root folder.
### Build
`yarn build` will compile the frontend and backend.
### Start frontend
`yarn start-frontend` will start the frontend on the local machine and open it in a... |
hoangtuyet0202_Guestbook | .eslintrc.yml
.github
dependabot.yml
workflows
deploy.yml
tests.yml
.gitpod.yml
.travis.yml
README-Gitpod.md
README.md
as-pect.config.js
asconfig.json
assembly
__tests__
as-pect.d.ts
guestbook.spec.ts
as_types.d.ts
main.ts
model.ts
tsconfig.json
babel.config.j... | Guest Book
==========
[](https://travis-ci.com/near-examples/guest-book)
[](https://gitpod.io/#https://github.com/near-examples/guest-book)
<!-- MAGIC COMMENT: DO NOT DELETE!... |
esaminu_test-rs-boilerplate-12 | .eslintrc.yml
.github
ISSUE_TEMPLATE
01_BUG_REPORT.md
02_FEATURE_REQUEST.md
03_CODEBASE_IMPROVEMENT.md
04_SUPPORT_QUESTION.md
config.yml
PULL_REQUEST_TEMPLATE.md
labels.yml
workflows
codeql.yml
deploy-to-console.yml
labels.yml
lock.... | <h1 align="center">
<a href="https://github.com/near/boilerplate-template-rs">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/near/boilerplate-template-rs/main/docs/images/pagoda_logo_light.png">
<source media="(prefers-color-scheme: light)" srcset="ht... |
IvanMacek_near-rust-playground | Cargo.toml
README.md
build.bat
build.sh
src
lib.rs
test.sh
| # Rust Smart Contract Template
## Getting started
To get started with this template:
1. Click the "Use this template" button to create a new repo based on this template
2. Update line 2 of `Cargo.toml` with your project name
3. Update line 4 of `Cargo.toml` with your project author names
4. Set up the [prerequisites... |
MetricsDAO_near_dbt | .github
workflows
.dbt
profiles.yml
dbt_docs_update.yml
dbt_run_adhoc.yml
dbt_run_atlas.yml
dbt_run_daily_refresh.yml
dbt_run_deployment.yml
dbt_run_dev_refresh.yml
dbt_run_full_observability.yml
dbt_run_livequery_scheduled.yml
... | # NEAR Daily Supply
The set of models in this folder calculate the total supply of NEAR, derived from a model originally built by the Foundation. The composite parts of the below query (locked staked, locked unstaked, staked) have been segmented into separate sql models and are combined in `silver__atlas_supply.sql`. T... |
nearnlabs_microtaskapp | core
.gitpod.yml
README.md
contract
Cargo.toml
README.md
build.sh
deploy.sh
src
lib.rs
task.rs
integration-tests
Cargo.toml
src
tests.rs
package-lock.json
package.json
| # Hello NEAR Contract
The smart contract exposes two methods to enable storing and retrieving a greeting in the NEAR network.
```rust
const DEFAULT_GREETING: &str = "Hello";
#[near_bindgen]
#[derive(BorshDeserialize, BorshSerialize)]
pub struct Contract {
greeting: String,
}
impl Default for Contract {
fn d... |
Kylastroke_Web3-Near-Inventory-Application- | Cargo.toml
README.md
build.sh
deploy.sh
dev-deploy.sh
init-args.js
lib.rs
rustfmt.toml
| # NEAR Smart Contract Rust Template
Project structure for writing smart contracts in Rust for NEAR Protocol
# Required Software
- Rust 1.58 + cargo
- Node.js
- NEAR CLI 3.1
# Authors
- Clyde Ahoya | Software Engineer
|
microchipgnu_near-js-contract | .gitpod.yml
README.md
babel.config.json
jsconfig.json
package-lock.json
package.json
src
index.ts
nft.ts
wall.ts
tsconfig.json
| # near-js-contract
|
honganji_NEAR-Election-dApp | .eslintrc.js
.github
workflows
ci.yml
.lintstagedrc.js
.parcel-cache
657954f315cdf05c.txt
README.md
package.json
packages
client
.gitpod.yml
README.md
frontend
App.js
__mocks__
fileMock.js
assets
AppRouter.js... | # near-blank-project
This [React] app was initialized with [create-near-app]
# Quick Start
To run this project locally:
1. Prerequisites: Make sure you've installed [Node.js] ≥ 12
2. Install dependencies: `yarn install`
3. Run the local development server: `yarn dev` (see `package.json` for a
full list of `scrip... |
johnedvard_reit-games-contract | asconfig.json
contract
as_types.d.ts
assembly
index.ts
reit-token.ts
user.ts
tsconfig.json
view methods
change methods
package-lock.json
package.json
| |
gyan0890_NEAR_Quest5 | README.md
as-pect.config.js
asconfig.json
package.json
scripts
1.dev-deploy.sh
2.use-contract.sh
3.cleanup.sh
README.md
src
as_types.d.ts
tsconfig.json
utils.ts
voting
__tests__
as-pect.d.ts
index.unit.spec.ts
asconfig.json
assembly
... | ## Setting up your terminal
The scripts in this folder are designed to help you demonstrate the behavior of the contract(s) in this project.
It uses the following setup:
```sh
# set your terminal up to have 2 windows, A and B like this:
┌─────────────────────────────────┬─────────────────────────────────┐
│ ... |
mtcolak_near-blockchain-basic-dapp | .gitpod.yml
README.md
contract
Cargo.toml
README.md
build.sh
deploy.sh
src
donation.rs
lib.rs
frontend
assets
global.css
logo-black.svg
logo-white.svg
index.html
index.js
near-interface.js
near-wallet.js
package-lock.json
package.js... | # Donation 💸
[](https://docs.near.org/tutorials/welcome)
[](https://gitpod.io/#/https://github.com/near-examples/donation-rust)
[](https://docs.near.org/de... |
joelvaiju_near-spring-NFT-challenge3 | .gitpod.yml
README.md
babel.config.js
contract
Cargo.toml
README.md
compile.js
src
approval.rs
enumeration.rs
internal.rs
lib.rs
metadata.rs
mint.rs
nft_core.rs
royalty.rs
target
.rustc_info.json
debug
.finge... | near-spring-NFT-challenge3
==================
This [React] app was initialized with [create-near-app]
Quick Start
===========
To run this project locally:
1. Prerequisites: Make sure you've installed [Node.js] ≥ 12
2. Install dependencies: `yarn install`
3. Run the local development server: `yarn dev` (see `package... |
esaminu_test-rs-boilerplate-5 | .eslintrc.yml
.github
ISSUE_TEMPLATE
01_BUG_REPORT.md
02_FEATURE_REQUEST.md
03_CODEBASE_IMPROVEMENT.md
04_SUPPORT_QUESTION.md
config.yml
PULL_REQUEST_TEMPLATE.md
labels.yml
workflows
codeql.yml
deploy-to-console.yml
labels.yml
lock.... | <h1 align="center">
<a href="https://github.com/near/boilerplate-template-rs">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/near/boilerplate-template-rs/main/docs/images/pagoda_logo_light.png">
<source media="(prefers-color-scheme: light)" srcset="ht... |
ndxbinh1922001_fix-bug | .eslintrc.json
README.md
api-client
auth-api.ts
axios-client.ts
index.ts
colors.ts
components
blog
navBar
Mylinks.ts
layout
index.ts
css
_custom.css
global.css
tailwind
_base.css
_components.css
_utilities.css
interfaces
index.ts
mo... | This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
```
Open [http://localhost:3000](http://localhost:3000) with your br... |
kizzx2_near-js | examples
status-message
package.json
src
index.html
index.js
services
near.js
lerna.json
package.json
packages
cra-template-near
README.md
package.json
template.json
template
README.md
pub... | # Getting Started with Create React App
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Available Scripts
In the project directory, you can run:
### `npm start`
Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view... |
josealfredo79_ArtesaniasWeb3.0 | .vscode
settings.json
README.md
as-pect.config.js
asconfig.json
assembly
__tests__
as-pect.d.ts
index.spec.ts
index.ts
models.ts
tsconfig.json
package-lock.json
package.json
| # Bienvenido a ArtesaniasWeb3.0 📖
---
ArtesaniasWeb3.0 es un smart contract que parte de la idea que los artesanos son
los productores de las artesanias y deben de recibir regalias por la pieza que se vendio
a un precio mayor. En el estado de Oaxaca en Mexico esto es un problema grave, con el contrato inteligente se d... |
near-ndc_i-am-human | .github
workflows
lint.yml
rust.yml
.markdownlint.json
README.md
contracts
.clippy.toml
Cargo.toml
README.md
community-open
CHANGELOG.md
Cargo.toml
README.md
src
errors.rs
lib.rs
migrate.rs
storage.rs
... | # Demo SBT Issuer
Minimum implementation of SBT.
NEP: https://github.com/near/NEPs/pull/393
Functions:
- `sbt_mint(receiver: AccountId, memo?: string)` -- requests registry to mint a new SBT. Only admin can call it.
- `add_admin(account: AccountId, memo?: string)` -- registers new admin. Any admin can add new admins... |
Near-University-Tec-de-Tlaxiaco_METZTLI | README.md
as-pect.config.js
asconfig.json
assembly
__tests__
as-pect.d.ts
example.spec.ts
as.types.d.ts
index.ts
model.ts
tsconfig.json
package-lock.json
package.json
| # Smart Contract Metztli :briefcase:
# INTRODUCCIÓN
A medida que las criptomonedas y la tecnología blockchain se hicieron más populares, Bitcoin, Ethereum y otras redes empezaron a enfrentar desafíos de escalabilidad debido a una mayor demanda. El creciente interés por las aplicaciones descentralizadas y los tokens no... |
nearprotocol_localnet-script | README.md
config.py
start_localnet.py
| # Script to run several near nodes locally
1. Get near binary. Usually clone [nearcore](https://github.com/nearprotocol/nearcore) and compile it using `cargo build -p near --release`.
2. Modify `config.ini` to point to your binary.
3. Start with `python3 start_localnet.py`
## Stop
To stop the network run `python3 ... |
esaminu_test-rs-boilerplate-106g | .eslintrc.yml
.github
ISSUE_TEMPLATE
01_BUG_REPORT.md
02_FEATURE_REQUEST.md
03_CODEBASE_IMPROVEMENT.md
04_SUPPORT_QUESTION.md
config.yml
PULL_REQUEST_TEMPLATE.md
labels.yml
workflows
codeql.yml
deploy-to-console.yml
labels.yml
lock.... | # Hello NEAR Contract
The smart contract exposes two methods to enable storing and retrieving a greeting in the NEAR network.
```rust
const DEFAULT_GREETING: &str = "Hello";
#[near_bindgen]
#[derive(BorshDeserialize, BorshSerialize)]
pub struct Contract {
greeting: String,
}
impl Default for Contract {
fn d... |
near-rocket-rpc_rocket-api-js | .github
workflows
main.yml
size.yml
README.md
package-lock.json
package.json
src
index.ts
tsconfig.json
| # TSDX User Guide
Congrats! You just saved yourself hours of work by bootstrapping this project with TSDX. Let’s get you oriented with what’s here and how to use it.
> This TSDX setup is meant for developing libraries (not apps!) that can be published to NPM. If you’re looking to build a Node app, you could use `ts-n... |
josefophe_near-contract-as-temp | README.md
as-pect.config.js
asconfig.json
package.json
scripts
1.dev-deploy.sh
2.use-contract.sh
3.cleanup.sh
README.md
src
as_types.d.ts
simple
__tests__
as-pect.d.ts
index.unit.spec.ts
asconfig.json
assembly
index.ts
singleton
... | ## Setting up your terminal
The scripts in this folder are designed to help you demonstrate the behavior of the contract(s) in this project.
It uses the following setup:
```sh
# set your terminal up to have 2 windows, A and B like this:
┌─────────────────────────────────┬─────────────────────────────────┐
│ ... |
NEAR-Hispano_Tanda-Dapp | .gitpod.yml
.vscode
settings.json
README.md
babel.config.js
contract
README.md
as-pect.config.js
asconfig.json
assembly
__tests__
as-pect.d.ts
main.spec.ts
as_types.d.ts
index.ts
tsconfig.json
utils.ts
compile.js
models
... | tanda-dapp Smart Contract
==================
A [smart contract] written in [AssemblyScript] for an app initialized with [create-near-app]
Quick Start
===========
Before you compile this code, you will need to install [Node.js] ≥ 12
Exploring The Code
==================
1. The main smart contract code lives in `ass... |
Job-Unicorn_sodium | .eslintrc.json
.github
workflows
build.yml
docker.yml
lint.yml
releases.yml
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
README.md
commitlint.config.js
config
analytics.config.ts
ceramic.config.ts
common.config.ts
theme.config.ts
docker-compose.yml
global.d.ts
inte... | <h1 align="center">Job Unicorn</h1>
<p align="center"> <a href="https://jobunicorn.io/"> 🕸️ Website</a> | <a href="https://jobunicorn.io/demo"> 📹 Demo</a> | <a href="https://jobunicorn.io/pitch-deck.pdf"> 🖼️ Pitch Deck</a> | <a href="https://docs.jobunicorn.io/"> 📄 Docs</a> | <a href="https://jobunicorn.hashnode.d... |
lf-cruz_quinielas | README.md
as-pect.config.js
asconfig.json
assembly
Models
Cobro.ts
Equipo.ts
Jornada.ts
Participante.ts
Partido.ts
Quiniela.ts
Respuesta.ts
Resultado.ts
__test__
as-pect.d.ts
index.unit.spec.ts
as_types.d.ts
index.ts
mod... | # `Quine App`
📄 Descripción
=============================
`Quine App` Es un contrato inteligente Para Crear `Quinielas` y todos los datos son almacenados mediante el protocolo de `NEAR`. La idea del contrato es
debido a que a la hora de crear `Quinielas` con muchas personas es dificil de administrarla y puede existir... |
kulikovae_smart-hamster-web-app-near | README.md
build
asset-manifest.json
index.html
robots.txt
static
css
2.27be3915.chunk.css
main.97bc7d02.chunk.css
js
2.d6f95661.chunk.js
2.d6f95661.chunk.js.LICENSE.txt
main.f18cc3be.chunk.js
runtime-main.bf61b07e.js... | # Smart Hamster Web App
Web3 dapp, based on Near Blockchain to create/promote and sell education courses
https://kulikovae.github.io/smart-hamster-web-app-near
# Getting Started with Create React App
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Available Sc... |
nitrozonium_rust_testing | Cargo.toml
README.md
build.bat
build.sh
src
lib.rs
test.sh
| # Rust Smart Contract Template
## Getting started
To get started with this template:
1. Click the "Use this template" button to create a new repo based on this template
2. Update line 2 of `Cargo.toml` with your project name
3. Update line 4 of `Cargo.toml` with your project author names
4. Set up the [prerequisites... |
Jteo10_Near_SmartContract_token | .dependabot
config.yml
.gitpod.yml
.travis.yml
LICENSE-APACHE.txt
LICENSE-MIT.txt
README-Gitpod.md
README.md
as-pect.config.js
asconfig.js
assembly
__tests__
as-pect.d.ts
example.spec.ts
token.spec.ts
as_types.d.ts
main.ts
tsconfig.json
neardev
shared-test-staging
... | Token Contract in AssemblyScript
================================
[](https://gitpod.io/#https://github.com/near-examples/token-contract-as)
<!-- MAGIC COMMENT: DO NOT DELETE! Everything above this line is hidden on NEAR Examples page -->
This project cont... |
mlibre_Wisdom-Hub | .github
workflows
npm.yml
.vscode
settings.json
Contents
Health.md
Lovely Tools.md
ai
generative ai.md
langchain.md
lobe-chat.md
prompt.md
readme.md
blockchain
Bitcoin
btc.svg
readme.md
Cryptography
... | Fungible Token (FT)
===================
Example implementation of a [Fungible Token] contract which uses [near-contract-standards] and [simulation] tests. This is a contract-only example.
[Fungible Token]: https://nomicon.io/Standards/FungibleToken/Core.html
[near-contract-standards]: https://github.com/near/near... |
mehtaphysical_todos-crud | .env
README.md
contract
as-pect.config.js
asconfig.json
assembly
__tests__
as-pect.d.ts
index.spec.ts
as_types.d.ts
index.ts
model.ts
tsconfig.json
neardev
dev-account.env
package.json
package.json
public
index.html
mani... | # Getting Started with Create React App
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Available Scripts
In the project directory, you can run:
### `yarn start`
Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to vie... |
NEARFoundation_near-sdk-py | README.md
| # near-sdk-py
NEAR Python SDK
|
near_near-ledger-js | .github
ISSUE_TEMPLATE
BOUNTY.yml
.travis.yml
README.md
demo
demo.js
index.html
index.js
package.json
supportedTransports.js
| # near-ledger-js
A JavaScript library for communication with [Ledger](https://www.ledger.com/) Hardware Wallet.
# Example usage
```javascript
import { createClient, getSupportedTransport } from "near-ledger-js";
const transport = await getSupportedTransport();
transport.setScrambleKey("NEAR");
transpor... |
PierreLeGuen_near-payments | Cargo.toml
README.md
build.sh
contract
Cargo.toml
src
common
errors.rs
mod.rs
primitives.rs
escrow
mod.rs
owner.rs
receiver.rs
view.rs
lib.rs
tests
tests.rs
deploy.sh
models
Cargo.toml
... | # NEAR payments contract
Multisig wallet with advanced payment options
|
kharioki_Rust-NFT-Contract | README.md
|
|
market-contract
Cargo.toml
README.md
build.sh
src
external.rs
internal.rs
lib.rs
nft_callbacks.rs
sale.rs
sale_views.rs
nft-contract
Cargo.toml
READM... | # TBD
# NEAR NFT-Tutorial
Welcome to NEAR's NFT tutorial, where we will help you parse the details around NEAR's [NEP-171 standard](https://nomicon.io/Standards/NonFungibleToken/Core.html) (Non-Fungible Token Standard), and show you how to build your own NFT smart contract from the ground up, improving your understand... |
L-tech_NEAR-101 | README.md
as-pect.config.js
asconfig.json
package.json
scripts
1.dev-deploy.sh
2.use-contract.sh
3.cleanup.sh
README.md
src
as_types.d.ts
simple
__tests__
as-pect.d.ts
index.unit.spec.ts
asconfig.json
assembly
index.ts
singleton
... | ## Setting up your terminal
The scripts in this folder are designed to help you demonstrate the behavior of the contract(s) in this project.
It uses the following setup:
```sh
# set your terminal up to have 2 windows, A and B like this:
┌─────────────────────────────────┬─────────────────────────────────┐
│ ... |
muoi07052001_near-staking-app-sc | Cargo.toml
build.md
build.sh
neardev
dev-account.env
src
account.rs
config.rs
core_impl.rs
enumeration.rs
internal.rs
lib.rs
utils.rs
tests
sim
main.rs
| |
Learn-NEAR_NCD.L2.sample--library | README.md
babel.config.js
package-lock.json
package.json
postcss.config.js
public
index.html
src
index.css
main.js
tailwind.config.js
| # near-library-frontend
## Project setup
```
npm install
```
### Compiles and hot-reloads for development
```
npm run serve
```
### Compiles and minifies for production
```
npm run build
```
### Lints and fixes files
```
npm run lint
```
### Customize configuration
See [Configuration Reference](https://cli.vuejs.o... |
monadsocial_Near-Tipping | README.md
contract
README.md
babel.config.json
package-lock.json
package.json
src
contract.ts
model.ts
utils.ts
tsconfig.json
frontend
.parcel-cache
f6c2aacc42e8f766.txt
assets
global.css
logo-black.svg
logo-white.svg
index.html... | Hello NEAR!
=================================
A [smart contract] written with [NEAR JavaScript SDK] for an app initialized with [create-near-app]
Quick Start
===========
1. Install dependencies: `npm install`
2. Deploy to NEAR TestNet with a temporary dev account: `npm run deploy`
Exploring The Code
===============... |
Giftea_NEAR-newsletter | .gitpod.yml
README.md
contract
README.md
babel.config.json
build.sh
build
builder.c
code.h
hello_near.js
methods.h
deploy.sh
neardev
dev-account.env
package-lock.json
package.json
src
contract.ts
model.ts
tsconfig.json
front... | near-blank-project
==================
This app was initialized with [create-near-app]
Quick Start
===========
If you haven't installed dependencies during setup:
npm install
Build and deploy your contract to TestNet with a temporary dev account:
npm run deploy
Test your contract:
npm test
If you ha... |
mehtaphysical_token-test-app | README.md
package.json
public
index.html
manifest.json
robots.txt
src
index.js
| # Getting Started with Create React App
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Available Scripts
In the project directory, you can run:
### `yarn start`
Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to vie... |
Gnorme_Vote-Contract | README.md
as-pect.config.js
as-pect.d.ts
as_types.d.ts
asconfig.json
assembly
index.ts
models.ts
package.json
scripts
dev-deploy.sh
run-duel.sh
tests
index.unit.spec.ts
tsconfig.json
| # Vote-Contract
This project was started for completion of the NEAR Developer Certificate Program. I chose to build a contract that would be similar in functionality to the challenge system I will be making for the platform we’re building, AllSkills (https://allskills.ca).
At the core, the contract sets up a challeng... |
Huterok228_Multisender | README.md
contract
Cargo.toml
build.sh
deploy.sh
src
lib.rs
package-lock.json
package.json
public
index.html
src
app
styles
App.module.css
index.css
types
global.d.ts
shared
config
near.ts
lib
... | ###
Hi all! Multisender is a simple utility that will help you send multiple transactions at once on the testnet. The contract is deployed at the address bebra.huterok228.testnet. I did it on my knee, sorry 😋😋😁😁😉😉
## Available Scripts
In the project directory, you can run:
### `npm start`
Runs the app in the... |
kquan99dk_Challenge-3-Social-Good-Bounty | .eslintrc.yml
.gitpod.yml
.travis.yml
README-Gitpod.md
README.md
as-pect.config.js
asconfig.json
assembly
__tests__
as-pect.d.ts
guestbook.spec.ts
as_types.d.ts
main.ts
model.ts
tsconfig.json
babel.config.js
neardev
shared-test-staging
test.near.json
shared-test
... | Our vision is to see more people from all backgrounds, developing a life-long habit of reading for pleasure and benefitting from the improved life chances this brings them. By making a donation or raising funds for READING CULTURE FUNDRAISE, you can help us change lives through a love of books and shared reading.
The ... |
near_wallet-selector | .eslintrc.json
.github
ISSUE_TEMPLATE
bug---defect---problem.md
change_request.md
epic-template.md
feature_request.md
issue-template.md
PULL_REQUEST_TEMPLATE.md
PULL_REQUEST_TEMPLATE
general.md
wallet_integration.md
actions
checklist.js
... | # @near-wallet-selector/ramper-wallet
This is the [Ramper Wallet](https://docs.ramper.xyz/) package for NEAR Wallet Selector.
## Installation and Usage
The easiest way to use this package is to install it from the NPM registry, this package requires `near-api-js` v1.0.0 or above:
```bash
# Using Yarn
yarn add near-... |
Learn-NEAR-Club_near-dice | README.md
babel.config.js
contract
Cargo.toml
README.md
build.sh
compile.js
src
lib.rs
tests
test_utils.rs
copy-dev-account.js
jest.config.js
package.json
src
__mocks__
fileMock.js
assets
logo-black.svg
logo-white.svg
config.js
glob... | NCD-GroupA-Demo
==================
This is a homework demo project for NCD program phase-1.
Rolling Dice On NEAR
====================
Guys, let's roll dice on NEAR.
## Why dice
Randomness is always a key focus on any blockchain. We wanna show you how convenient that a random number can get on NEAR blockchain.
... |
esaminu123_console-boilerplate-template-rs-local-copy-90 | .eslintrc.yml
.github
ISSUE_TEMPLATE
01_BUG_REPORT.md
02_FEATURE_REQUEST.md
03_CODEBASE_IMPROVEMENT.md
04_SUPPORT_QUESTION.md
config.yml
PULL_REQUEST_TEMPLATE.md
labels.yml
workflows
codeql.yml
deploy-to-console.yml
labels.yml
lock.... | # Hello NEAR Contract
The smart contract exposes two methods to enable storing and retrieving a greeting in the NEAR network.
```rust
const DEFAULT_GREETING: &str = "Hello";
#[near_bindgen]
#[derive(BorshDeserialize, BorshSerialize)]
pub struct Contract {
greeting: String,
}
impl Default for Contract {
fn d... |
near_actix-extras | .github
ISSUE_TEMPLATE
BOUNTY.yml
bug_report.md
config.yml
PULL_REQUEST_TEMPLATE.md
workflows
clippy.yml
linux.yml
macos.yml
msrv.yml
upload-doc.yml
windows.yml
Cargo.toml
README.md
|
actix-cors
CHANGES.md
Cargo.toml
README.... | # actix-identity
[](https://crates.io/crates/actix-identity)
[](https://docs.rs/actix-identity)
[](https://deps.rs/crate/actix... |
Hsien-HsiuLiao_near-dapp-musician | .gitpod.yml
.vscode
settings.json
README.md
contract
Cargo.toml
README.md
src
lib.rs
songs_purchased.rs
frontend
App.js
__mocks__
fileMock.js
assets
css
global.css
img
logo-black.svg
logo-white.svg
js
... | near-blank-project Smart Contract
==================
A [smart contract] written in [Rust] for an app initialized with [create-near-app]
Quick Start
===========
Before you compile this code, you will need to install Rust with [correct target]
Exploring The Code
==================
1. The main smart contract code liv... |
KhairyKio_blockheadvote | .gitpod.yml
README.md
babel.config.js
contract
README.md
as-pect.config.js
asconfig.json
assembly
__tests__
as-pect.d.ts
main.spec.ts
as_types.d.ts
index.ts
tsconfig.json
compile.js
node_modules
.bin
acorn.cmd
... | ## Follow Redirects
Drop-in replacement for Nodes `http` and `https` that automatically follows redirects.
[](https://www.npmjs.com/package/follow-redirects)
[](ht... |
markeljan_awb | README.md
agents
README.md
bufficorn-generator.ts
dad-jokes.ts
startup-advisor.ts
contracts
README.md
foundry.toml
remappings.txt
enclave
README.md
app.ts
config.json
config.ts
events
farcaster
index.ts
near.ts
generated.ts
omni-chain
... | # Agents Repo
| name | uri |
|--------------------|----------------------------------------------------------------------------------------------------------------- |
| dad-jokes | https://3citujvkqdgeo2y1.public.blob.vercel-storage.com/awb/979zvqYCSFB9FqxU44dME-gjDpmfRK4cp3S5SozdgFLMvPeVHudE |
| startup-... |
amiyatulu_shivarthu | .github
ISSUE_TEMPLATE
config.yml
dependabot.yml
workflows
check.yml
release.yml
Cargo.toml
README.md
docs
Leadership.svg
Portfolio.svg
Problem_Solution.svg
Project_score_schelling_game.svg
Shivarthu.md
Shivarthu_old_copy.md
Winners.svg
approval_voting... | # Shivarthu
### Its now archived, latest development on https://github.com/reaudito/shivarthu
### Decentralized democracy with experts as leaders.
https://shivarthu.reaudito.com/#/
## Leptos Frontend
https://github.com/reaudito/shivarthu-client
## Frontend Tests
https://github.com/reaudito/shivarthu-client-tests
## Y... |
nexeranet_staking-pool-test | Cargo.toml
README.md
build.sh
src
contract.rs
internal.rs
lib.rs
test.sh
| # staking-pool-test
|
NearDeFi_burrowland-liquidation-bot | export.sh
package.json
run.sh
src
account.js
asset.js
burrow.js
config.js
export.js
main.js
near.js
priceData.js
test.js
utils.js
| |
metaquid_near-donation-js | .github
scripts
runfe.sh
workflows
scripts.yml
tests.yml
.gitpod.yml
README.md
contract
README.md
babel.config.json
build.sh
deploy.sh
package.json
src
contract.ts
model.ts
utils.ts
tsconfig.json
frontend
assets
global.css
... | # Donation 💸
[](https://docs.near.org/tutorials/welcome)
[](https://gitpod.io/#/https://github.com/near-examples/donation-js)
[](https://docs.near.org/dev... |
pmespresso_zebec-program-near | .gitpod.yml
README.md
cargo-audit.md
contract
Cargo.toml
README.md
build.sh
deploy.sh
src
calls.rs
lib.rs
views.rs
package.json
test-testnet.md
| near-blank-project Smart Contract
==================
A [smart contract] written in [Rust] for an app initialized with [create-near-app]
Quick Start
===========
Before you compile this code, you will need to install Rust with [correct target]
Exploring The Code
==================
1. The main smart contract code liv... |
lau-bin_near_ref-ui | .gitpod.yml
README.md
babel.config.js
package.json
src
App.js
__mocks__
fileMock.js
assets
logo-black.svg
logo-white.svg
config.js
global.css
index.html
index.js
jest.init.js
main.test.js
utils.js
wallet
login
index.html
| ref-ui
==================
This app was initialized with [create-near-app]
Quick Start
===========
To run this project locally:
1. Prerequisites: Make sure you've installed [Node.js] ≥ 12
2. Install dependencies: `yarn install`
3. Run the local development server: `yarn dev` (see `package.json` for a
full list of... |
GiovaniOliver_Near-assembly-starter-kit | README.md
as-pect.config.js
asconfig.json
package.json
scripts
1.dev-deploy.sh
2.use-contract.sh
3.cleanup.sh
README.md
src
as_types.d.ts
simple
__tests__
as-pect.d.ts
index.unit.spec.ts
asconfig.json
assembly
index.ts
singleton
... | # `near-sdk-as` Starter Kit
This is a good project to use as a starting point for your AssemblyScript project.
## Samples
This repository includes a complete project structure for AssemblyScript contracts targeting the NEAR platform.
The example here is very basic. It's a simple contract demonstrating the followin... |
ifabrisarabellapark_sc-near-crossword | DEPLOY.md
README.md
contract
Cargo.toml
build.bat
build.sh
src
lib.rs
test.sh
testnet-deploy.sh
dist
contract
Cargo.toml
build.bat
build.sh
src
lib.rs
test.sh
index.css
index.html
src.e31bb0bc.css
package.json
public
... | # :spades: :spades: :spades: Play Crossword Puzzles on NEAR Protocol
<p align="center">
<a href="https://near.org/">
<img alt="Near" src="https://github.com/irene-bbox/sc-near-crossword/blob/master/public/near_purple.png" width="1000" />
</a>
</p>
---
### Requirements
node.js, npm (or yarn), Rust, and Was... |
near_near-indexer-base | Cargo.toml
README.md
benchmarks.sql
migrations
20220221161526_initial.sql
redshift
REDSHIFT_NOTES.md
migration.sql
src
configs.rs
db_adapters
account_changes.rs
blocks.rs
chunks.rs
execution_outcomes.rs
mod.rs
receipts.rs
transactions.rs
li... | # Indexer Base [DEPRECATED]
Consider using [Microindexers](https://github.com/near/near-microindexers) instead.
Async Postgres-compatible solution to load the data from NEAR blockchain.
Based on [NEAR Lake Framework](https://github.com/near/near-lake-framework-rs).
[Indexer For Explorer](https://github.com/near/near... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.