race

所属分类:其他
开发工具:Rust
文件大小:0KB
下载次数:0
上传日期:2023-10-10 06:46:43
上 传 者sh-1993
说明:  非对称竞争博弈的去中心化协议,
(A decentralized protocol for asymmetric competitive games,)

文件列表:
.env (89, 2023-12-22)
.envrc (10, 2023-12-22)
CHANGELOG.md (3023, 2023-12-22)
Cargo.lock (158528, 2023-12-22)
Cargo.toml (2237, 2023-12-22)
Justfile (3740, 2023-12-22)
LICENSE (16725, 2023-12-22)
api/ (0, 2023-12-22)
api/Cargo.toml (682, 2023-12-22)
api/src/ (0, 2023-12-22)
api/src/decision.rs (5016, 2023-12-22)
api/src/effect.rs (12586, 2023-12-22)
api/src/engine.rs (2728, 2023-12-22)
api/src/error.rs (7540, 2023-12-22)
api/src/event.rs (7504, 2023-12-22)
api/src/lib.rs (284, 2023-12-22)
api/src/prelude.rs (383, 2023-12-22)
api/src/random.rs (25565, 2023-12-22)
api/src/types.rs (334, 2023-12-22)
api/src/types/ (0, 2023-12-22)
api/src/types/common.rs (10219, 2023-12-22)
assets/ (0, 2023-12-22)
assets/logo.svg (2246, 2023-12-22)
cli/ (0, 2023-12-22)
cli/Cargo.toml (974, 2023-12-22)
cli/src/ (0, 2023-12-22)
cli/src/main.rs (19583, 2023-12-22)
client/ (0, 2023-12-22)
client/Cargo.toml (538, 2023-12-22)
client/src/ (0, 2023-12-22)
client/src/lib.rs (12367, 2023-12-22)
core/ (0, 2023-12-22)
core/Cargo.toml (710, 2023-12-22)
... ...

# Race Protocol ![GitHub](https://img.shields.io/github/license/RACE-Game/race) [![Rust](https://github.com/RACE-Game/race/actions/workflows/rust.yml/badge.svg)](https://github.com/RACE-Game/race/actions/workflows/rust.yml) [![TS Tests](https://github.com/RACE-Game/race/actions/workflows/typescript.yml/badge.svg)](https://github.com/RACE-Game/race/actions/workflows/typescript.yml) Race Protocol is a multi-chain infrastructure for asymmetric competitive games. Race Protocol is made for web3 builders, because it eliminates the barrier of developing blockchain games. It is shipped with game-related smart contracts. Out of the box, these contracts provide developers with reliable and convenient utilities such as real time, transparent token settlements, programmable game management, affiliation and referral system. The community hosted servers offer developers a delightful serverless solution, so that they can focus on the core game logic, without wrestling against various server-side difficulties. Thus, the development experience is considerably improved. It offers excellent extensibility by decoupling game core and frontend. On the one hand, the game logic is published as NFTs and can be reused effortlessly. On the other hand, frontends can be built as either traditional dApps or metaverse applications, enabling the developers to connect players from different platforms. Race Protocol is also designed for web3 players, because it assures them a fair and safe gaming experience. All games built on top of Race will by default inherit a series of essential traits, such as P2P randomization and encrypted communication. This design guarantees hidden knowledge in asymmetric competition is well protected. No one can rig the game by knowing all the game information. Users' assets are secured as the funds flow is controlled exclusively by the smart contracts. Since the funds will never be sent to a centralised service, every penny of commission and deposit is 100% transparent to the public. "Race" represents "Redefining the best". # Project Status Work in progress, not ready to accept contributions yet. # Packages ## TypeScript | Package | Version | Description | |-----------------------------|--------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------| | @race-foundation/borsh | [![NPM](https://img.shields.io/npm/v/@race-foundation/borsh?logo=npm)](https://www.npmjs.com/package/@race-foundation/borsh) | A borsh implementation with decorators support | | @race-fonudation/sdk-core | [![NPM](https://img.shields.io/npm/v/@race-foundation/sdk-core?logo=npm)](https://www.npmjs.com/package/@race-foundation/sdk-core) | SDK for RACE Protocol | | @race-fonudation/sdk-solana | [![NPM](https://img.shields.io/npm/v/@race-foundation/sdk-core?logo=npm)](https://www.npmjs.com/package/@race-foundation/sdk-solana) | SDK integration for Solana blockchain | | @race-fonudation/sdk-facade | [![NPM](https://img.shields.io/npm/v/@race-foundation/sdk-core?logo=npm)](https://www.npmjs.com/package/@race-foundation/sdk-facade) | SDK integration for local facade server | ## Rust | Package | Version | Description | |-----------------|---------------------------------------------------------------------------------------------------------------------|---------------------| | race-api | [![Crates.io](https://img.shields.io/crates/v/race-api?logo=rust)](https://crates.io/crates/race-api) | API for game bundle | | race-core | [![Crates.io](https://img.shields.io/crates/v/race-core?logo=rust)](https://crates.io/crates/race-core) | Core lib | | race-proc-macro | [![Crates.io](https://img.shields.io/crates/v/race-proc-macro?logo=rust)](https://crates.io/crates/race-proc-macro) | SDK proc macros | | race-encryptor | [![Crates.io](https://img.shields.io/crates/v/race-encryptor?logo=rust)](https://crates.io/crates/race-encryptor) | Encryptor module | | race-client | [![Crates.io](https://img.shields.io/crates/v/race-client?logo=rust)](https://crates.io/crates/race-client) | Client module | | race-test | [![Crates.io](https://img.shields.io/crates/v/race-test?logo=rust)](https://crates.io/crates/race-test) | Testkit | ### Binary Releases - `race-facade`: The test server used in development - `race-transactor`: The transactor server - `race-cli`: The tools to manage on-chain accounts ## Contracts | Blockchain | Address | |------------|-------------------------------------------------------------------------------------------------------------------------| | Solana | [8ZVzTrut4TMXjRod2QRFBqGeyLzfLNnQEj2jw3q1sBqu](https://solscan.io/account/8ZVzTrut4TMXjRod2QRFBqGeyLzfLNnQEj2jw3q1sBqu) | # Core Concepts [Terminology](docs/terminology.md) [WebAssembly Usages](docs/web-assembly-usages.md) [Game Handler](docs/game-handler.md) [Transactions](docs/transactions.md) [Randomization](docs/randomization.md) [Transactor and Validator](docs/transactor-and-validator.md) [On-chain Accounts](docs/on-chain-accounts.md) [Synchronization](docs/synchronization.md) [Contract](docs/contract.md) [Payment](docs/payment.md) [Testing](docs/testing.md) [Command Line Tools](docs/command-line.md) # License Race is licensed under [MPL-2.0](./LICENSE).

近期下载者

相关文件


收藏者