├── .ammanrc.js ├── .dockerignore ├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ └── raindrops-ci.yml ├── .gitignore ├── .mergify.yml ├── .prettierignore ├── .prettierrc ├── .travis └── affects.sh ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.2.0.cjs ├── .yarnrc.yml ├── README.md ├── js ├── LICENSE ├── cli │ ├── .eslintrc.json │ ├── .prettierignore │ ├── README.md │ ├── example-configs │ │ ├── boot-up │ │ │ └── pandaExample.json │ │ ├── item-collection-creator │ │ │ └── itemCollectionExample.json │ │ ├── item │ │ │ ├── activateItem.json │ │ │ ├── createFreeItem.json │ │ │ ├── createItem.json │ │ │ └── itemClass.json │ │ ├── match │ │ │ └── createMatch.json │ │ ├── namespace │ │ │ ├── addToNamespaceGatekeeper.json │ │ │ ├── cacheArtifact.json │ │ │ ├── createNamespaceGatekeeper.json │ │ │ ├── initializeNamespace.json │ │ │ ├── joinNamespace.json │ │ │ ├── leaveNamespace.json │ │ │ ├── removeFromNamespaceGatekeeper.json │ │ │ ├── uncacheArtifact.json │ │ │ └── updateNamespace.json │ │ ├── player │ │ │ ├── buildPlayer.json │ │ │ ├── equipItems.json │ │ │ ├── multiLevelParenting │ │ │ │ ├── buildPlayerOfChild.json │ │ │ │ ├── playerChildClass.json │ │ │ │ ├── playerChildsChildClass.json │ │ │ │ └── playerParentClass.json │ │ │ ├── playerClass.json │ │ │ ├── updatePlayer.json │ │ │ └── useItems.json │ │ └── staking │ │ │ └── stake.json │ ├── package.json │ ├── src │ │ ├── boot_up.ts │ │ ├── item.ts │ │ ├── item_collection_creator.ts │ │ ├── matches.ts │ │ ├── namespace.ts │ │ ├── player.ts │ │ ├── staking.ts │ │ ├── upload.ts │ │ └── utils.ts │ └── tsconfig.json └── lib │ ├── .eslintrc.json │ ├── .prettierignore │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ ├── constants │ │ ├── common.ts │ │ ├── index.ts │ │ ├── item.ts │ │ ├── matches.ts │ │ ├── namespace.ts │ │ ├── player.ts │ │ ├── programIds.ts │ │ └── staking.ts │ ├── contract │ │ ├── avatar │ │ │ ├── http │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── rpc │ │ │ │ ├── avatar.ts │ │ │ │ ├── index.ts │ │ │ │ └── state.ts │ │ ├── boot_up.ts │ │ ├── common.ts │ │ ├── index.ts │ │ ├── item.ts │ │ ├── item_collection_creator.ts │ │ ├── itemv2.ts │ │ ├── matches.ts │ │ ├── namespace.ts │ │ ├── player.ts │ │ ├── staking.ts │ │ └── tests │ │ │ ├── common.test.ts │ │ │ ├── item.test.ts │ │ │ └── tsconfig.json │ ├── http │ │ ├── errors.ts │ │ ├── index.ts │ │ └── item.ts │ ├── idls │ │ ├── index.ts │ │ ├── itemv2.ts │ │ ├── raindrops_avatar.ts │ │ ├── raindrops_item.ts │ │ ├── raindrops_matches.ts │ │ ├── raindrops_namespace.ts │ │ ├── raindrops_player.ts │ │ └── raindrops_staking.ts │ ├── instructions │ │ ├── index.ts │ │ ├── item.ts │ │ ├── itemv2.ts │ │ ├── matches.ts │ │ ├── namespace.ts │ │ ├── player.ts │ │ └── staking.ts │ ├── main.ts │ ├── state │ │ ├── common.ts │ │ ├── index.ts │ │ ├── item.ts │ │ ├── itemv2.ts │ │ ├── matches.ts │ │ ├── namespace.ts │ │ ├── player.ts │ │ └── staking.ts │ └── utils │ │ ├── arweave │ │ └── arweave.ts │ │ ├── ata.ts │ │ ├── borsh.ts │ │ ├── candyMachine.ts │ │ ├── collection.ts │ │ ├── file.ts │ │ ├── index.ts │ │ ├── item.ts │ │ ├── pda.ts │ │ ├── tokenMetadata │ │ ├── instructions.ts │ │ ├── oldSchema.ts │ │ └── schema.ts │ │ └── transactions.ts │ └── tsconfig.json ├── package.json ├── rust ├── Anchor.toml ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── avatar │ ├── Cargo.toml │ ├── Xargo.toml │ └── src │ │ ├── instructions │ │ ├── add_payment_mint_to_payment_method.rs │ │ ├── add_trait_conflicts.rs │ │ ├── begin_trait_swap_update.rs │ │ ├── begin_trait_update.rs │ │ ├── begin_variant_update.rs │ │ ├── burn_payment.rs │ │ ├── burn_payment_tree.rs │ │ ├── cancel_update.rs │ │ ├── create_avatar.rs │ │ ├── create_avatar_class.rs │ │ ├── create_payment_method.rs │ │ ├── create_trait.rs │ │ ├── equip_trait.rs │ │ ├── equip_trait_authority.rs │ │ ├── migrate_avatar_account.rs │ │ ├── migrate_avatar_class_account.rs │ │ ├── mod.rs │ │ ├── remove_trait.rs │ │ ├── remove_trait_authority.rs │ │ ├── swap_trait.rs │ │ ├── transfer_payment.rs │ │ ├── transfer_payment_tree.rs │ │ ├── update_attribute_metadata.rs │ │ ├── update_class_variant_authority.rs │ │ ├── update_class_variant_metadata.rs │ │ ├── update_trait.rs │ │ ├── update_trait_variant_authority.rs │ │ ├── update_variant.rs │ │ ├── verify_payment_mint.rs │ │ └── verify_payment_mint_test.rs │ │ ├── lib.rs │ │ ├── state │ │ ├── accounts.rs │ │ ├── data.rs │ │ ├── errors.rs │ │ └── mod.rs │ │ └── utils │ │ └── mod.rs ├── item │ ├── Cargo.toml │ ├── Xargo.toml │ └── src │ │ ├── instructions │ │ ├── add_ingredient_pnft.rs │ │ ├── add_ingredient_spl.rs │ │ ├── add_item_to_item_class.rs │ │ ├── add_payment.rs │ │ ├── apply_build_effect.rs │ │ ├── close_build.rs │ │ ├── complete_build.rs │ │ ├── create_item_class_v1.rs │ │ ├── create_recipe.rs │ │ ├── destroy_ingredient_pnft.rs │ │ ├── destroy_ingredient_spl.rs │ │ ├── mod.rs │ │ ├── receive_item.rs │ │ ├── return_ingredient_pnft.rs │ │ ├── return_ingredient_spl.rs │ │ ├── start_build.rs │ │ ├── verify_ingredient.rs │ │ └── verify_ingredient_test.rs │ │ ├── lib.rs │ │ ├── state │ │ ├── accounts.rs │ │ ├── errors.rs │ │ └── mod.rs │ │ └── utils.rs ├── itemv2 │ ├── Cargo.toml │ ├── Xargo.toml │ └── src │ │ ├── instructions │ │ ├── add_ingredient_pnft.rs │ │ ├── add_ingredient_spl.rs │ │ ├── add_item_to_item_class.rs │ │ ├── apply_build_effect.rs │ │ ├── close_build.rs │ │ ├── complete_build.rs │ │ ├── create_build_permit.rs │ │ ├── create_deterministic_ingredient.rs │ │ ├── create_item_class.rs │ │ ├── create_pack.rs │ │ ├── create_recipe.rs │ │ ├── destroy_ingredient_pnft.rs │ │ ├── destroy_ingredient_spl.rs │ │ ├── escrow_payment.rs │ │ ├── migrate_build_account.rs │ │ ├── migrate_item_class_account.rs │ │ ├── mint_authority_tokens.rs │ │ ├── mod.rs │ │ ├── receive_item_pnft.rs │ │ ├── receive_item_spl.rs │ │ ├── release_from_escrow_pnft.rs │ │ ├── release_from_escrow_spl.rs │ │ ├── return_ingredient_pnft.rs │ │ ├── return_ingredient_spl.rs │ │ ├── start_build.rs │ │ ├── transfer_payment.rs │ │ ├── verify_ingredient.rs │ │ └── verify_ingredient_merkle_tree_test.rs │ │ ├── lib.rs │ │ └── state │ │ ├── accounts.rs │ │ ├── errors.rs │ │ └── mod.rs ├── matches │ ├── Cargo.toml │ ├── Xargo.toml │ └── src │ │ ├── lib.rs │ │ └── utils.rs ├── namespace │ ├── Cargo.toml │ ├── Xargo.toml │ └── src │ │ ├── lib.rs │ │ └── utils.rs ├── package.json ├── player │ ├── Cargo.toml │ ├── Xargo.toml │ └── src │ │ ├── lib.rs │ │ └── utils.rs ├── staking │ ├── Cargo.toml │ ├── Xargo.toml │ └── src │ │ ├── lib.rs │ │ └── utils.rs ├── tests │ ├── avatar.ts │ ├── files │ │ ├── bootup │ │ │ ├── attributeMetadata.json │ │ │ ├── snapshot.json │ │ │ ├── trait-mappings.json │ │ │ ├── traits.json │ │ │ └── variantMetadata.json │ │ └── lily │ │ │ ├── andro.json │ │ │ ├── angry.json │ │ │ ├── axe.json │ │ │ ├── backwards-hat.json │ │ │ ├── bed-head.json │ │ │ ├── cloak.json │ │ │ ├── global-rendering-config.json │ │ │ ├── gold.json │ │ │ ├── hollow.json │ │ │ ├── origin-hollow.json │ │ │ └── pipe.json │ ├── itemv1.ts │ ├── itemv2.ts │ ├── matches.ts │ ├── namespace.ts │ ├── player.ts │ ├── scripts │ │ ├── create-mock-rain-mint.sh │ │ ├── rain-mock.json │ │ └── rain.json │ └── staking.ts └── tsconfig.json ├── rustfmt.toml ├── turbo.json └── yarn.lock /.ammanrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/.ammanrc.js -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/raindrops-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/.github/workflows/raindrops-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/.gitignore -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/.mergify.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis/affects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/.travis/affects.sh -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.2.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/.yarn/releases/yarn-3.2.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/README.md -------------------------------------------------------------------------------- /js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/LICENSE -------------------------------------------------------------------------------- /js/cli/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/.eslintrc.json -------------------------------------------------------------------------------- /js/cli/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/.prettierignore -------------------------------------------------------------------------------- /js/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/README.md -------------------------------------------------------------------------------- /js/cli/example-configs/boot-up/pandaExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/boot-up/pandaExample.json -------------------------------------------------------------------------------- /js/cli/example-configs/item-collection-creator/itemCollectionExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/item-collection-creator/itemCollectionExample.json -------------------------------------------------------------------------------- /js/cli/example-configs/item/activateItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/item/activateItem.json -------------------------------------------------------------------------------- /js/cli/example-configs/item/createFreeItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/item/createFreeItem.json -------------------------------------------------------------------------------- /js/cli/example-configs/item/createItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/item/createItem.json -------------------------------------------------------------------------------- /js/cli/example-configs/item/itemClass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/item/itemClass.json -------------------------------------------------------------------------------- /js/cli/example-configs/match/createMatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/match/createMatch.json -------------------------------------------------------------------------------- /js/cli/example-configs/namespace/addToNamespaceGatekeeper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/namespace/addToNamespaceGatekeeper.json -------------------------------------------------------------------------------- /js/cli/example-configs/namespace/cacheArtifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/namespace/cacheArtifact.json -------------------------------------------------------------------------------- /js/cli/example-configs/namespace/createNamespaceGatekeeper.json: -------------------------------------------------------------------------------- 1 | { 2 | "mint": "7w7sAjikAzrf9CeLhgfQDpvHfQJbgS8AmVBjapiZXZ4S" 3 | } 4 | -------------------------------------------------------------------------------- /js/cli/example-configs/namespace/initializeNamespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/namespace/initializeNamespace.json -------------------------------------------------------------------------------- /js/cli/example-configs/namespace/joinNamespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/namespace/joinNamespace.json -------------------------------------------------------------------------------- /js/cli/example-configs/namespace/leaveNamespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/namespace/leaveNamespace.json -------------------------------------------------------------------------------- /js/cli/example-configs/namespace/removeFromNamespaceGatekeeper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/namespace/removeFromNamespaceGatekeeper.json -------------------------------------------------------------------------------- /js/cli/example-configs/namespace/uncacheArtifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/namespace/uncacheArtifact.json -------------------------------------------------------------------------------- /js/cli/example-configs/namespace/updateNamespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/namespace/updateNamespace.json -------------------------------------------------------------------------------- /js/cli/example-configs/player/buildPlayer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/player/buildPlayer.json -------------------------------------------------------------------------------- /js/cli/example-configs/player/equipItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/player/equipItems.json -------------------------------------------------------------------------------- /js/cli/example-configs/player/multiLevelParenting/buildPlayerOfChild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/player/multiLevelParenting/buildPlayerOfChild.json -------------------------------------------------------------------------------- /js/cli/example-configs/player/multiLevelParenting/playerChildClass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/player/multiLevelParenting/playerChildClass.json -------------------------------------------------------------------------------- /js/cli/example-configs/player/multiLevelParenting/playerChildsChildClass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/player/multiLevelParenting/playerChildsChildClass.json -------------------------------------------------------------------------------- /js/cli/example-configs/player/multiLevelParenting/playerParentClass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/player/multiLevelParenting/playerParentClass.json -------------------------------------------------------------------------------- /js/cli/example-configs/player/playerClass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/player/playerClass.json -------------------------------------------------------------------------------- /js/cli/example-configs/player/updatePlayer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/player/updatePlayer.json -------------------------------------------------------------------------------- /js/cli/example-configs/player/useItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/player/useItems.json -------------------------------------------------------------------------------- /js/cli/example-configs/staking/stake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/example-configs/staking/stake.json -------------------------------------------------------------------------------- /js/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/package.json -------------------------------------------------------------------------------- /js/cli/src/boot_up.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/src/boot_up.ts -------------------------------------------------------------------------------- /js/cli/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/src/item.ts -------------------------------------------------------------------------------- /js/cli/src/item_collection_creator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/src/item_collection_creator.ts -------------------------------------------------------------------------------- /js/cli/src/matches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/src/matches.ts -------------------------------------------------------------------------------- /js/cli/src/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/src/namespace.ts -------------------------------------------------------------------------------- /js/cli/src/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/src/player.ts -------------------------------------------------------------------------------- /js/cli/src/staking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/src/staking.ts -------------------------------------------------------------------------------- /js/cli/src/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/src/upload.ts -------------------------------------------------------------------------------- /js/cli/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/src/utils.ts -------------------------------------------------------------------------------- /js/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/cli/tsconfig.json -------------------------------------------------------------------------------- /js/lib/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/.eslintrc.json -------------------------------------------------------------------------------- /js/lib/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/.prettierignore -------------------------------------------------------------------------------- /js/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/README.md -------------------------------------------------------------------------------- /js/lib/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/jest.config.js -------------------------------------------------------------------------------- /js/lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/package.json -------------------------------------------------------------------------------- /js/lib/src/constants/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/constants/common.ts -------------------------------------------------------------------------------- /js/lib/src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/constants/index.ts -------------------------------------------------------------------------------- /js/lib/src/constants/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/constants/item.ts -------------------------------------------------------------------------------- /js/lib/src/constants/matches.ts: -------------------------------------------------------------------------------- 1 | export const PREFIX = "matches"; 2 | -------------------------------------------------------------------------------- /js/lib/src/constants/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/constants/namespace.ts -------------------------------------------------------------------------------- /js/lib/src/constants/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/constants/player.ts -------------------------------------------------------------------------------- /js/lib/src/constants/programIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/constants/programIds.ts -------------------------------------------------------------------------------- /js/lib/src/constants/staking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/constants/staking.ts -------------------------------------------------------------------------------- /js/lib/src/contract/avatar/http/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/contract/avatar/http/index.ts -------------------------------------------------------------------------------- /js/lib/src/contract/avatar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/contract/avatar/index.ts -------------------------------------------------------------------------------- /js/lib/src/contract/avatar/rpc/avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/contract/avatar/rpc/avatar.ts -------------------------------------------------------------------------------- /js/lib/src/contract/avatar/rpc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/contract/avatar/rpc/index.ts -------------------------------------------------------------------------------- /js/lib/src/contract/avatar/rpc/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/contract/avatar/rpc/state.ts -------------------------------------------------------------------------------- /js/lib/src/contract/boot_up.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/contract/boot_up.ts -------------------------------------------------------------------------------- /js/lib/src/contract/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/contract/common.ts -------------------------------------------------------------------------------- /js/lib/src/contract/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/contract/index.ts -------------------------------------------------------------------------------- /js/lib/src/contract/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/contract/item.ts -------------------------------------------------------------------------------- /js/lib/src/contract/item_collection_creator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/contract/item_collection_creator.ts -------------------------------------------------------------------------------- /js/lib/src/contract/itemv2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/contract/itemv2.ts -------------------------------------------------------------------------------- /js/lib/src/contract/matches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/contract/matches.ts -------------------------------------------------------------------------------- /js/lib/src/contract/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/contract/namespace.ts -------------------------------------------------------------------------------- /js/lib/src/contract/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/contract/player.ts -------------------------------------------------------------------------------- /js/lib/src/contract/staking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/contract/staking.ts -------------------------------------------------------------------------------- /js/lib/src/contract/tests/common.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/contract/tests/common.test.ts -------------------------------------------------------------------------------- /js/lib/src/contract/tests/item.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/contract/tests/item.test.ts -------------------------------------------------------------------------------- /js/lib/src/contract/tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/contract/tests/tsconfig.json -------------------------------------------------------------------------------- /js/lib/src/http/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/http/errors.ts -------------------------------------------------------------------------------- /js/lib/src/http/index.ts: -------------------------------------------------------------------------------- 1 | export * as Item from "./item"; 2 | -------------------------------------------------------------------------------- /js/lib/src/http/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/http/item.ts -------------------------------------------------------------------------------- /js/lib/src/idls/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/idls/index.ts -------------------------------------------------------------------------------- /js/lib/src/idls/itemv2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/idls/itemv2.ts -------------------------------------------------------------------------------- /js/lib/src/idls/raindrops_avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/idls/raindrops_avatar.ts -------------------------------------------------------------------------------- /js/lib/src/idls/raindrops_item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/idls/raindrops_item.ts -------------------------------------------------------------------------------- /js/lib/src/idls/raindrops_matches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/idls/raindrops_matches.ts -------------------------------------------------------------------------------- /js/lib/src/idls/raindrops_namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/idls/raindrops_namespace.ts -------------------------------------------------------------------------------- /js/lib/src/idls/raindrops_player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/idls/raindrops_player.ts -------------------------------------------------------------------------------- /js/lib/src/idls/raindrops_staking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/idls/raindrops_staking.ts -------------------------------------------------------------------------------- /js/lib/src/instructions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/instructions/index.ts -------------------------------------------------------------------------------- /js/lib/src/instructions/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/instructions/item.ts -------------------------------------------------------------------------------- /js/lib/src/instructions/itemv2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/instructions/itemv2.ts -------------------------------------------------------------------------------- /js/lib/src/instructions/matches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/instructions/matches.ts -------------------------------------------------------------------------------- /js/lib/src/instructions/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/instructions/namespace.ts -------------------------------------------------------------------------------- /js/lib/src/instructions/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/instructions/player.ts -------------------------------------------------------------------------------- /js/lib/src/instructions/staking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/instructions/staking.ts -------------------------------------------------------------------------------- /js/lib/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/main.ts -------------------------------------------------------------------------------- /js/lib/src/state/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/state/common.ts -------------------------------------------------------------------------------- /js/lib/src/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/state/index.ts -------------------------------------------------------------------------------- /js/lib/src/state/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/state/item.ts -------------------------------------------------------------------------------- /js/lib/src/state/itemv2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/state/itemv2.ts -------------------------------------------------------------------------------- /js/lib/src/state/matches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/state/matches.ts -------------------------------------------------------------------------------- /js/lib/src/state/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/state/namespace.ts -------------------------------------------------------------------------------- /js/lib/src/state/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/state/player.ts -------------------------------------------------------------------------------- /js/lib/src/state/staking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/state/staking.ts -------------------------------------------------------------------------------- /js/lib/src/utils/arweave/arweave.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/lib/src/utils/ata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/utils/ata.ts -------------------------------------------------------------------------------- /js/lib/src/utils/borsh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/utils/borsh.ts -------------------------------------------------------------------------------- /js/lib/src/utils/candyMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/utils/candyMachine.ts -------------------------------------------------------------------------------- /js/lib/src/utils/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/utils/collection.ts -------------------------------------------------------------------------------- /js/lib/src/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/utils/file.ts -------------------------------------------------------------------------------- /js/lib/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/utils/index.ts -------------------------------------------------------------------------------- /js/lib/src/utils/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/utils/item.ts -------------------------------------------------------------------------------- /js/lib/src/utils/pda.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/utils/pda.ts -------------------------------------------------------------------------------- /js/lib/src/utils/tokenMetadata/instructions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/utils/tokenMetadata/instructions.ts -------------------------------------------------------------------------------- /js/lib/src/utils/tokenMetadata/oldSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/utils/tokenMetadata/oldSchema.ts -------------------------------------------------------------------------------- /js/lib/src/utils/tokenMetadata/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/utils/tokenMetadata/schema.ts -------------------------------------------------------------------------------- /js/lib/src/utils/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/src/utils/transactions.ts -------------------------------------------------------------------------------- /js/lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/js/lib/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/package.json -------------------------------------------------------------------------------- /rust/Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/Anchor.toml -------------------------------------------------------------------------------- /rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/Cargo.lock -------------------------------------------------------------------------------- /rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/Cargo.toml -------------------------------------------------------------------------------- /rust/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/LICENSE -------------------------------------------------------------------------------- /rust/avatar/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/Cargo.toml -------------------------------------------------------------------------------- /rust/avatar/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/Xargo.toml -------------------------------------------------------------------------------- /rust/avatar/src/instructions/add_payment_mint_to_payment_method.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/add_payment_mint_to_payment_method.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/add_trait_conflicts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/add_trait_conflicts.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/begin_trait_swap_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/begin_trait_swap_update.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/begin_trait_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/begin_trait_update.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/begin_variant_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/begin_variant_update.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/burn_payment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/burn_payment.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/burn_payment_tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/burn_payment_tree.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/cancel_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/cancel_update.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/create_avatar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/create_avatar.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/create_avatar_class.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/create_avatar_class.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/create_payment_method.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/create_payment_method.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/create_trait.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/create_trait.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/equip_trait.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/equip_trait.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/equip_trait_authority.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/equip_trait_authority.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/migrate_avatar_account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/migrate_avatar_account.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/migrate_avatar_class_account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/migrate_avatar_class_account.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/mod.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/remove_trait.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/remove_trait.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/remove_trait_authority.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/remove_trait_authority.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/swap_trait.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/swap_trait.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/transfer_payment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/transfer_payment.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/transfer_payment_tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/transfer_payment_tree.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/update_attribute_metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/update_attribute_metadata.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/update_class_variant_authority.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/update_class_variant_authority.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/update_class_variant_metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/update_class_variant_metadata.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/update_trait.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/update_trait.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/update_trait_variant_authority.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/update_trait_variant_authority.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/update_variant.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/update_variant.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/verify_payment_mint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/verify_payment_mint.rs -------------------------------------------------------------------------------- /rust/avatar/src/instructions/verify_payment_mint_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/instructions/verify_payment_mint_test.rs -------------------------------------------------------------------------------- /rust/avatar/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/lib.rs -------------------------------------------------------------------------------- /rust/avatar/src/state/accounts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/state/accounts.rs -------------------------------------------------------------------------------- /rust/avatar/src/state/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/state/data.rs -------------------------------------------------------------------------------- /rust/avatar/src/state/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/state/errors.rs -------------------------------------------------------------------------------- /rust/avatar/src/state/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/state/mod.rs -------------------------------------------------------------------------------- /rust/avatar/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/avatar/src/utils/mod.rs -------------------------------------------------------------------------------- /rust/item/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/Cargo.toml -------------------------------------------------------------------------------- /rust/item/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/Xargo.toml -------------------------------------------------------------------------------- /rust/item/src/instructions/add_ingredient_pnft.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/instructions/add_ingredient_pnft.rs -------------------------------------------------------------------------------- /rust/item/src/instructions/add_ingredient_spl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/instructions/add_ingredient_spl.rs -------------------------------------------------------------------------------- /rust/item/src/instructions/add_item_to_item_class.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/instructions/add_item_to_item_class.rs -------------------------------------------------------------------------------- /rust/item/src/instructions/add_payment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/instructions/add_payment.rs -------------------------------------------------------------------------------- /rust/item/src/instructions/apply_build_effect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/instructions/apply_build_effect.rs -------------------------------------------------------------------------------- /rust/item/src/instructions/close_build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/instructions/close_build.rs -------------------------------------------------------------------------------- /rust/item/src/instructions/complete_build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/instructions/complete_build.rs -------------------------------------------------------------------------------- /rust/item/src/instructions/create_item_class_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/instructions/create_item_class_v1.rs -------------------------------------------------------------------------------- /rust/item/src/instructions/create_recipe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/instructions/create_recipe.rs -------------------------------------------------------------------------------- /rust/item/src/instructions/destroy_ingredient_pnft.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/instructions/destroy_ingredient_pnft.rs -------------------------------------------------------------------------------- /rust/item/src/instructions/destroy_ingredient_spl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/instructions/destroy_ingredient_spl.rs -------------------------------------------------------------------------------- /rust/item/src/instructions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/instructions/mod.rs -------------------------------------------------------------------------------- /rust/item/src/instructions/receive_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/instructions/receive_item.rs -------------------------------------------------------------------------------- /rust/item/src/instructions/return_ingredient_pnft.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/instructions/return_ingredient_pnft.rs -------------------------------------------------------------------------------- /rust/item/src/instructions/return_ingredient_spl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/instructions/return_ingredient_spl.rs -------------------------------------------------------------------------------- /rust/item/src/instructions/start_build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/instructions/start_build.rs -------------------------------------------------------------------------------- /rust/item/src/instructions/verify_ingredient.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/instructions/verify_ingredient.rs -------------------------------------------------------------------------------- /rust/item/src/instructions/verify_ingredient_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/instructions/verify_ingredient_test.rs -------------------------------------------------------------------------------- /rust/item/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/lib.rs -------------------------------------------------------------------------------- /rust/item/src/state/accounts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/state/accounts.rs -------------------------------------------------------------------------------- /rust/item/src/state/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/state/errors.rs -------------------------------------------------------------------------------- /rust/item/src/state/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/state/mod.rs -------------------------------------------------------------------------------- /rust/item/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/item/src/utils.rs -------------------------------------------------------------------------------- /rust/itemv2/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/Cargo.toml -------------------------------------------------------------------------------- /rust/itemv2/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/Xargo.toml -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/add_ingredient_pnft.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/add_ingredient_pnft.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/add_ingredient_spl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/add_ingredient_spl.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/add_item_to_item_class.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/add_item_to_item_class.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/apply_build_effect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/apply_build_effect.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/close_build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/close_build.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/complete_build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/complete_build.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/create_build_permit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/create_build_permit.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/create_deterministic_ingredient.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/create_deterministic_ingredient.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/create_item_class.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/create_item_class.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/create_pack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/create_pack.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/create_recipe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/create_recipe.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/destroy_ingredient_pnft.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/destroy_ingredient_pnft.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/destroy_ingredient_spl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/destroy_ingredient_spl.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/escrow_payment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/escrow_payment.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/migrate_build_account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/migrate_build_account.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/migrate_item_class_account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/migrate_item_class_account.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/mint_authority_tokens.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/mint_authority_tokens.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/mod.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/receive_item_pnft.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/receive_item_pnft.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/receive_item_spl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/receive_item_spl.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/release_from_escrow_pnft.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/release_from_escrow_pnft.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/release_from_escrow_spl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/release_from_escrow_spl.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/return_ingredient_pnft.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/return_ingredient_pnft.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/return_ingredient_spl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/return_ingredient_spl.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/start_build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/start_build.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/transfer_payment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/transfer_payment.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/verify_ingredient.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/verify_ingredient.rs -------------------------------------------------------------------------------- /rust/itemv2/src/instructions/verify_ingredient_merkle_tree_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/instructions/verify_ingredient_merkle_tree_test.rs -------------------------------------------------------------------------------- /rust/itemv2/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/lib.rs -------------------------------------------------------------------------------- /rust/itemv2/src/state/accounts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/state/accounts.rs -------------------------------------------------------------------------------- /rust/itemv2/src/state/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/state/errors.rs -------------------------------------------------------------------------------- /rust/itemv2/src/state/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/itemv2/src/state/mod.rs -------------------------------------------------------------------------------- /rust/matches/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/matches/Cargo.toml -------------------------------------------------------------------------------- /rust/matches/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/matches/Xargo.toml -------------------------------------------------------------------------------- /rust/matches/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/matches/src/lib.rs -------------------------------------------------------------------------------- /rust/matches/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/matches/src/utils.rs -------------------------------------------------------------------------------- /rust/namespace/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/namespace/Cargo.toml -------------------------------------------------------------------------------- /rust/namespace/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/namespace/Xargo.toml -------------------------------------------------------------------------------- /rust/namespace/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/namespace/src/lib.rs -------------------------------------------------------------------------------- /rust/namespace/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/namespace/src/utils.rs -------------------------------------------------------------------------------- /rust/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/package.json -------------------------------------------------------------------------------- /rust/player/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/player/Cargo.toml -------------------------------------------------------------------------------- /rust/player/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/player/Xargo.toml -------------------------------------------------------------------------------- /rust/player/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/player/src/lib.rs -------------------------------------------------------------------------------- /rust/player/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/player/src/utils.rs -------------------------------------------------------------------------------- /rust/staking/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/staking/Cargo.toml -------------------------------------------------------------------------------- /rust/staking/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/staking/Xargo.toml -------------------------------------------------------------------------------- /rust/staking/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/staking/src/lib.rs -------------------------------------------------------------------------------- /rust/staking/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/staking/src/utils.rs -------------------------------------------------------------------------------- /rust/tests/avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/avatar.ts -------------------------------------------------------------------------------- /rust/tests/files/bootup/attributeMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/files/bootup/attributeMetadata.json -------------------------------------------------------------------------------- /rust/tests/files/bootup/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/files/bootup/snapshot.json -------------------------------------------------------------------------------- /rust/tests/files/bootup/trait-mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/files/bootup/trait-mappings.json -------------------------------------------------------------------------------- /rust/tests/files/bootup/traits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/files/bootup/traits.json -------------------------------------------------------------------------------- /rust/tests/files/bootup/variantMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/files/bootup/variantMetadata.json -------------------------------------------------------------------------------- /rust/tests/files/lily/andro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/files/lily/andro.json -------------------------------------------------------------------------------- /rust/tests/files/lily/angry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/files/lily/angry.json -------------------------------------------------------------------------------- /rust/tests/files/lily/axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/files/lily/axe.json -------------------------------------------------------------------------------- /rust/tests/files/lily/backwards-hat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/files/lily/backwards-hat.json -------------------------------------------------------------------------------- /rust/tests/files/lily/bed-head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/files/lily/bed-head.json -------------------------------------------------------------------------------- /rust/tests/files/lily/cloak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/files/lily/cloak.json -------------------------------------------------------------------------------- /rust/tests/files/lily/global-rendering-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/files/lily/global-rendering-config.json -------------------------------------------------------------------------------- /rust/tests/files/lily/gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/files/lily/gold.json -------------------------------------------------------------------------------- /rust/tests/files/lily/hollow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/files/lily/hollow.json -------------------------------------------------------------------------------- /rust/tests/files/lily/origin-hollow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/files/lily/origin-hollow.json -------------------------------------------------------------------------------- /rust/tests/files/lily/pipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/files/lily/pipe.json -------------------------------------------------------------------------------- /rust/tests/itemv1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/itemv1.ts -------------------------------------------------------------------------------- /rust/tests/itemv2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/itemv2.ts -------------------------------------------------------------------------------- /rust/tests/matches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/matches.ts -------------------------------------------------------------------------------- /rust/tests/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/namespace.ts -------------------------------------------------------------------------------- /rust/tests/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/player.ts -------------------------------------------------------------------------------- /rust/tests/scripts/create-mock-rain-mint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/scripts/create-mock-rain-mint.sh -------------------------------------------------------------------------------- /rust/tests/scripts/rain-mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/scripts/rain-mock.json -------------------------------------------------------------------------------- /rust/tests/scripts/rain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/scripts/rain.json -------------------------------------------------------------------------------- /rust/tests/staking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tests/staking.ts -------------------------------------------------------------------------------- /rust/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rust/tsconfig.json -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raindrops-protocol/raindrops/HEAD/yarn.lock --------------------------------------------------------------------------------