├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── documentation-request.md │ └── meta-improvement.md └── workflows │ ├── build-check.yml │ ├── crowdin.yml │ ├── docs-generator.yml │ ├── spellcheck.yml │ └── test-links.yml ├── .gitignore ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE-APACHE.txt ├── LICENSE-MIT.txt ├── LOCALIZATION.md ├── README.md ├── docs ├── 1.concepts │ ├── 3.advanced │ │ ├── indexers.md │ │ ├── near-indexer-framework.md │ │ ├── near-lake-framework.md │ │ ├── papers.md │ │ ├── specification.md │ │ └── virtual_machine.md │ ├── basics │ │ ├── accounts │ │ │ ├── access-keys.md │ │ │ ├── account-id.md │ │ │ ├── creating-accounts.md │ │ │ ├── introduction.md │ │ │ ├── smartcontract.md │ │ │ └── state.md │ │ ├── actors.md │ │ ├── epoch.md │ │ ├── networks.md │ │ ├── overview.md │ │ ├── protocol.md │ │ ├── runtime.md │ │ ├── technical_stuff.md │ │ ├── token-loss.md │ │ ├── token.md │ │ ├── transactions │ │ │ ├── gas-advanced.md │ │ │ ├── gas.md │ │ │ └── overview.md │ │ └── validators.md │ ├── data-flow │ │ ├── data-storage.md │ │ ├── near-data-flow.md │ │ └── token-transfer-flow.md │ ├── storage │ │ ├── data-collections.md │ │ ├── decentralized-storage.md │ │ └── storage-staking.md │ ├── web3 │ │ ├── blockchain.md │ │ ├── economics.md │ │ ├── intro.md │ │ ├── near.md │ │ └── nfts.md │ └── welcome.md ├── 2.develop │ ├── contracts │ │ ├── actions.md │ │ ├── anatomy.md │ │ ├── basics.md │ │ ├── crosscontract.md │ │ ├── environment │ │ │ ├── environment.md │ │ │ ├── table-func.as.md │ │ │ ├── table-func.js.md │ │ │ ├── table-func.rs.md │ │ │ ├── table.as.md │ │ │ ├── table.js.md │ │ │ └── table.rs.md │ │ ├── introduction.md │ │ ├── security │ │ │ ├── audits.md │ │ │ ├── bounty.md │ │ │ ├── callbacks.md │ │ │ ├── checklist.md │ │ │ ├── frontrunning.md │ │ │ ├── one_yocto.md │ │ │ ├── random.md │ │ │ ├── reentrancy.md │ │ │ ├── storage.md │ │ │ ├── sybil.md │ │ │ └── welcome.md │ │ ├── serialization.md │ │ ├── storage.md │ │ └── whatiscontract.md │ ├── deploy.md │ ├── integrate │ │ ├── frontend.md │ │ └── rpc.md │ ├── lock.md │ ├── prerequisites.md │ ├── quickstart.md │ ├── relevant-contracts │ │ ├── dao.md │ │ ├── ft.md │ │ ├── nft.md │ │ └── oracles.md │ ├── testing │ │ ├── integration.md │ │ ├── introduction.md │ │ ├── kurtosis-localnet.md │ │ ├── unit.md │ │ └── workspaces-migration-guide.md │ ├── upgrade.md │ └── welcome.md ├── 3.tutorials │ ├── crosswords │ │ ├── 01-basics │ │ │ ├── 00-overview.md │ │ │ ├── 01-set-up-skeleton.md │ │ │ ├── 02-add-functions-call.md │ │ │ ├── 03-hashing-and-unit-tests.md │ │ │ └── 04-simple-frontend.md │ │ ├── 02-beginner │ │ │ ├── 00-overview.md │ │ │ ├── 01-collections.md │ │ │ ├── 02-structs-enums.md │ │ │ ├── 03-actions.md │ │ │ ├── 04-adding-a-puzzle.md │ │ │ ├── 05-logging-in.md │ │ │ └── 06-logging-in-implementation.md │ │ └── 03-intermediate │ │ │ ├── 00-overview.md │ │ │ ├── 01-access-key-solution.md │ │ │ ├── 02-use-seed-phrase.md │ │ │ ├── 03-linkdrop.md │ │ │ ├── 04-cross-contract-calls.md │ │ │ └── 05-base64vecu8.md │ ├── examples │ │ ├── advanced-xcc.md │ │ ├── coin-flip.md │ │ ├── count-near.md │ │ ├── donation.md │ │ ├── escrow.md │ │ ├── factory.md │ │ ├── frontend-multiple-contracts.md │ │ ├── guest-book.md │ │ ├── hello-near.md │ │ ├── update.md │ │ └── xcc.md │ ├── fts │ │ ├── 0-intro.md │ │ ├── 0-predeployed.md │ │ ├── 1-skeleton.md │ │ ├── 2-define-a-token.md │ │ ├── 3-circulating-supply.md │ │ ├── 4.storage.md │ │ ├── 5.transfers.md │ │ ├── 6-marketplace.md │ │ └── simple-fts.md │ ├── indexer │ │ ├── credentials.md │ │ ├── js-lake-indexer.md │ │ ├── lake-start-options.md │ │ ├── migrating-to-near-lake-framework.md │ │ ├── near-lake-state-changes-indexer.md │ │ ├── nft-indexer.md │ │ ├── python-lake-indexer.md │ │ └── python-nft-indexer.md │ ├── nfts │ │ ├── 0-intro.md │ │ ├── 0-predeployed.md │ │ ├── 1-skeleton.md │ │ ├── 2-minting.md │ │ ├── 2-upgrade.md │ │ ├── 3-enumeration.md │ │ ├── 4-core.md │ │ ├── 5-approval.md │ │ ├── 6-royalty.md │ │ ├── 7-events.md │ │ ├── 8-marketplace.md │ │ ├── 9-series.md │ │ ├── js │ │ │ ├── 0-intro.md │ │ │ ├── 0-predeployed.md │ │ │ ├── 1-skeleton.md │ │ │ ├── 2-minting.md │ │ │ ├── 2-upgrade.md │ │ │ ├── 3-enumeration.md │ │ │ ├── 4-core.md │ │ │ ├── 5-approval.md │ │ │ ├── 6-royalty.md │ │ │ ├── 7-events.md │ │ │ └── 8-marketplace.md │ │ ├── minecraft-nfts.md │ │ ├── minting-nfts.md │ │ └── simple-nft-minting-example.md │ └── welcome.md ├── 4.tools │ ├── cli-rs.md │ ├── cli.md │ ├── events.md │ ├── explorer.md │ ├── indexer4explorer.md │ ├── indexing-tools.md │ ├── js-sdk.md │ ├── near-api-js │ │ ├── cookbook.md │ │ ├── faq.md │ │ ├── naj-account.md │ │ ├── naj-contract.md │ │ ├── naj-utils.md │ │ ├── naj-wallet.md │ │ └── quick-reference.md │ ├── rs-sdk.md │ ├── usecases.md │ ├── wallet-selector.md │ └── welcome.md ├── 5.api │ └── rpc │ │ ├── access-keys.md │ │ ├── block-chunk.md │ │ ├── contracts.md │ │ ├── gas.md │ │ ├── introduction.md │ │ ├── maintenance-windows.md │ │ ├── network.md │ │ ├── protocol.md │ │ ├── providers.md │ │ ├── setup.md │ │ └── transactions.md ├── 6.integrator │ ├── accounts.md │ ├── balance.md │ ├── create-transactions.md │ ├── errors │ │ ├── error-implementation.md │ │ ├── introduction.md │ │ └── token-loss.md │ ├── exchange-integration.md │ ├── faq.md │ ├── implicit-accounts.md │ └── tokens.md ├── index.md └── sdk │ ├── rust │ ├── best-practices.md │ ├── building │ │ ├── basic-build.md │ │ ├── post-processing-tools.md │ │ ├── prototyping.md │ │ └── reproducible-builds.md │ ├── contract-interface │ │ ├── contract-mutability.md │ │ ├── payable-methods.md │ │ ├── private-methods.md │ │ ├── public-methods.md │ │ └── serialization-interface.md │ ├── contract-structure │ │ ├── collections.md │ │ ├── near-bindgen.md │ │ └── nesting.md │ ├── cross-contract │ │ └── callbacks.md │ ├── intro.md │ ├── promises │ │ ├── create-account.md │ │ ├── deploy-contract.md │ │ ├── intro.md │ │ └── token-tx.md │ ├── reduce-size.md │ └── testing │ │ ├── integration-tests.md │ │ └── unit-tests.md │ └── welcome.md ├── package.json ├── website ├── .near │ └── vscode │ │ └── markdown.json ├── components │ ├── ContactUs.mdx │ ├── codetabs.js │ └── featurelist.js ├── crowdin.yml ├── docusaurus.config.js ├── linkinator.config.json ├── mlc_config.json ├── near-api-js_versioned_docs │ ├── version-__dummy │ │ └── dummy.md │ └── version-near-api-js@1.1.0 │ │ ├── _category_.yml │ │ ├── classes │ │ ├── _category_.yml │ │ ├── account.Account.md │ │ ├── account_creator.AccountCreator.md │ │ ├── account_creator.LocalAccountCreator.md │ │ ├── account_creator.UrlAccountCreator.md │ │ ├── account_multisig.Account2FA.md │ │ ├── account_multisig.AccountMultisig.md │ │ ├── connection.Connection.md │ │ ├── contract.Contract.md │ │ ├── key_stores_browser_local_storage_key_store.BrowserLocalStorageKeyStore.md │ │ ├── key_stores_in_memory_key_store.InMemoryKeyStore.md │ │ ├── key_stores_keystore.KeyStore.md │ │ ├── key_stores_merge_key_store.MergeKeyStore.md │ │ ├── key_stores_unencrypted_file_system_keystore.UnencryptedFileSystemKeyStore.md │ │ ├── near.Near.md │ │ ├── providers_json_rpc_provider.JsonRpcProvider.md │ │ ├── signer.InMemorySigner.md │ │ ├── signer.Signer.md │ │ ├── transaction.AccessKey.md │ │ ├── transaction.AccessKeyPermission.md │ │ ├── transaction.Action.md │ │ ├── transaction.AddKey.md │ │ ├── transaction.CreateAccount.md │ │ ├── transaction.DeleteAccount.md │ │ ├── transaction.DeleteKey.md │ │ ├── transaction.DeployContract.md │ │ ├── transaction.FullAccessPermission.md │ │ ├── transaction.FunctionCall.md │ │ ├── transaction.FunctionCallPermission.md │ │ ├── transaction.IAction.md │ │ ├── transaction.Signature.md │ │ ├── transaction.SignedTransaction.md │ │ ├── transaction.Stake.md │ │ ├── transaction.Transaction.md │ │ ├── transaction.Transfer.md │ │ ├── utils_errors.ArgumentTypeError.md │ │ ├── utils_errors.ErrorContext.md │ │ ├── utils_errors.PositionalArgsError.md │ │ ├── utils_errors.TypedError.md │ │ ├── utils_key_pair.KeyPair.md │ │ ├── utils_key_pair.KeyPairEd25519.md │ │ ├── utils_key_pair.PublicKey.md │ │ ├── utils_rpc_errors.ServerError.md │ │ ├── utils_serialize.BinaryReader.md │ │ ├── utils_serialize.BinaryWriter.md │ │ ├── utils_serialize.BorshError.md │ │ ├── walletAccount.ConnectedWalletAccount.md │ │ └── walletAccount.WalletConnection.md │ │ ├── enums │ │ ├── _category_.yml │ │ ├── account_multisig.MultisigDeleteRequestRejectionError.md │ │ ├── account_multisig.MultisigStateStatus.md │ │ ├── providers_provider.ExecutionStatusBasic.md │ │ ├── providers_provider.FinalExecutionStatusBasic.md │ │ ├── providers_provider.IdType.md │ │ └── utils_key_pair.KeyType.md │ │ ├── index.md │ │ ├── interfaces │ │ ├── _category_.yml │ │ ├── account.AccountAuthorizedApp.md │ │ ├── account.AccountBalance.md │ │ ├── account.ChangeFunctionCallOptions.md │ │ ├── account.FunctionCallOptions.md │ │ ├── account.SignAndSendTransactionOptions.md │ │ ├── account.ViewFunctionCallOptions.md │ │ ├── browserConnect.ConnectConfig.md │ │ ├── connect.ConnectConfig.md │ │ ├── contract.ContractMethods.md │ │ ├── near.NearConfig.md │ │ ├── providers_provider.AccessKeyInfoView.md │ │ ├── providers_provider.AccessKeyList.md │ │ ├── providers_provider.AccessKeyView.md │ │ ├── providers_provider.AccessKeyViewRaw.md │ │ ├── providers_provider.AccessKeyWithPublicKey.md │ │ ├── providers_provider.AccountView.md │ │ ├── providers_provider.BlockChange.md │ │ ├── providers_provider.BlockChangeResult.md │ │ ├── providers_provider.BlockHeader.md │ │ ├── providers_provider.BlockHeaderInnerLiteView.md │ │ ├── providers_provider.BlockResult.md │ │ ├── providers_provider.CallFunctionRequest.md │ │ ├── providers_provider.ChangeResult.md │ │ ├── providers_provider.Chunk.md │ │ ├── providers_provider.ChunkHeader.md │ │ ├── providers_provider.ChunkResult.md │ │ ├── providers_provider.CodeResult.md │ │ ├── providers_provider.ContractCodeView.md │ │ ├── providers_provider.CurrentEpochValidatorInfo.md │ │ ├── providers_provider.EpochValidatorInfo.md │ │ ├── providers_provider.ExecutionError.md │ │ ├── providers_provider.ExecutionOutcome.md │ │ ├── providers_provider.ExecutionOutcomeWithId.md │ │ ├── providers_provider.ExecutionOutcomeWithIdView.md │ │ ├── providers_provider.ExecutionStatus.md │ │ ├── providers_provider.FinalExecutionOutcome.md │ │ ├── providers_provider.FinalExecutionStatus.md │ │ ├── providers_provider.FunctionCallPermissionView.md │ │ ├── providers_provider.GasPrice.md │ │ ├── providers_provider.LightClientBlockLiteView.md │ │ ├── providers_provider.LightClientProof.md │ │ ├── providers_provider.LightClientProofRequest.md │ │ ├── providers_provider.MerkleNode.md │ │ ├── providers_provider.NearProtocolConfig.md │ │ ├── providers_provider.NearProtocolRuntimeConfig.md │ │ ├── providers_provider.NextEpochValidatorInfo.md │ │ ├── providers_provider.NodeStatusResult.md │ │ ├── providers_provider.QueryResponseKind.md │ │ ├── providers_provider.SyncInfo.md │ │ ├── providers_provider.TotalWeight.md │ │ ├── providers_provider.Transaction.md │ │ ├── providers_provider.ValidatorStakeView.md │ │ ├── providers_provider.ViewAccessKeyListRequest.md │ │ ├── providers_provider.ViewAccessKeyRequest.md │ │ ├── providers_provider.ViewAccountRequest.md │ │ ├── providers_provider.ViewCodeRequest.md │ │ ├── providers_provider.ViewStateRequest.md │ │ ├── providers_provider.ViewStateResult.md │ │ ├── utils_key_pair.Signature.md │ │ ├── utils_web.ConnectionInfo.md │ │ ├── validators.ChangedValidatorInfo.md │ │ └── validators.EpochValidatorsDiff.md │ │ ├── modules.md │ │ └── modules │ │ ├── _category_.yml │ │ ├── account.md │ │ ├── account_creator.md │ │ ├── account_multisig.md │ │ ├── browserConnect.md │ │ ├── connect.md │ │ ├── connection.md │ │ ├── constants.md │ │ ├── contract.md │ │ ├── key_stores_browser_local_storage_key_store.md │ │ ├── key_stores_in_memory_key_store.md │ │ ├── key_stores_keystore.md │ │ ├── key_stores_merge_key_store.md │ │ ├── key_stores_unencrypted_file_system_keystore.md │ │ ├── near.md │ │ ├── providers_json_rpc_provider.md │ │ ├── providers_provider.md │ │ ├── signer.md │ │ ├── transaction.md │ │ ├── utils.md │ │ ├── utils_errors.md │ │ ├── utils_exponential_backoff.md │ │ ├── utils_format.md │ │ ├── utils_key_pair.md │ │ ├── utils_rpc_errors.md │ │ ├── utils_serialize.md │ │ ├── utils_setup_node_fetch.md │ │ ├── utils_web.md │ │ ├── validators.md │ │ └── walletAccount.md ├── near-api-js_versioned_sidebars │ ├── version-near-api-js@1.1.0-sidebars.json │ └── version-v0.0.0-sidebars.json ├── near-api-js_versions.json ├── near-sdk-js_versioned_docs │ └── version-__dummy │ │ └── dummy.md ├── near-sdk-js_versioned_sidebars │ └── version-v0.0.0-sidebars.json ├── near-sdk-js_versions.json ├── package.json ├── sidebars.json ├── snippets ├── src │ ├── css │ │ └── customTheme.css │ └── theme │ │ ├── DocSidebar │ │ └── Desktop │ │ │ └── Content │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── Footer │ │ ├── index.js │ │ └── styles.module.css │ │ ├── Root.js │ │ ├── SearchBar │ │ ├── CustomDocSearchModal.tsx │ │ ├── DocSearch │ │ │ ├── AlgoliaLogo.tsx │ │ │ ├── DocSearch.tsx │ │ │ ├── DocSearchButton.tsx │ │ │ ├── DocSearchModal.tsx │ │ │ ├── ErrorScreen.tsx │ │ │ ├── Footer.tsx │ │ │ ├── Hit.tsx │ │ │ ├── NoResultsScreen.tsx │ │ │ ├── Results.tsx │ │ │ ├── ResultsScreen.tsx │ │ │ ├── ScreenState.tsx │ │ │ ├── SearchBox.tsx │ │ │ ├── Snippet.tsx │ │ │ ├── StartScreen.tsx │ │ │ ├── constants.ts │ │ │ ├── icons │ │ │ │ ├── ControlKeyIcon.tsx │ │ │ │ ├── ErrorIcon.tsx │ │ │ │ ├── GoToExternalIcon.tsx │ │ │ │ ├── LoadingIcon.tsx │ │ │ │ ├── NoResultsIcon.tsx │ │ │ │ ├── RecentIcon.tsx │ │ │ │ ├── ResetIcon.tsx │ │ │ │ ├── SearchIcon.tsx │ │ │ │ ├── SelectIcon.tsx │ │ │ │ ├── SourceIcon.tsx │ │ │ │ ├── StarIcon.tsx │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── stored-searches.ts │ │ │ ├── types │ │ │ │ ├── DocSearchHit.ts │ │ │ │ ├── InternalDocSearchHit.ts │ │ │ │ ├── StoredDocSearchHit.ts │ │ │ │ └── index.ts │ │ │ ├── useDocSearchKeyboardEvents.ts │ │ │ ├── useSearchClient.ts │ │ │ ├── useTouchEvents.ts │ │ │ ├── useTrapFocus.ts │ │ │ ├── utils │ │ │ │ ├── groupBy.ts │ │ │ │ ├── identity.ts │ │ │ │ ├── index.ts │ │ │ │ ├── noop.ts │ │ │ │ └── removeHighlightTags.ts │ │ │ └── version.ts │ │ ├── HitPreviewPanel.tsx │ │ ├── SearchInput.tsx │ │ ├── SoIcons.tsx │ │ ├── SoSearchModal.tsx │ │ ├── SoSearchResult.tsx │ │ ├── index.js │ │ └── styles.css │ │ ├── algolia-events.js │ │ └── so-search.ts ├── static │ ├── css │ │ ├── copy-code-button.css │ │ ├── fonts.css │ │ ├── landing-page.css │ │ ├── near.min.css │ │ └── webfonts │ │ │ ├── 389947_0_0.eot │ │ │ ├── 389947_0_0.ttf │ │ │ ├── 389947_0_0.woff │ │ │ ├── 389947_0_0.woff2 │ │ │ ├── 389947_1_0.eot │ │ │ ├── 389947_1_0.ttf │ │ │ ├── 389947_1_0.woff │ │ │ ├── 389947_1_0.woff2 │ │ │ ├── 389947_2_0.eot │ │ │ ├── 389947_2_0.ttf │ │ │ ├── 389947_2_0.woff │ │ │ ├── 389947_2_0.woff2 │ │ │ ├── 389947_3_0.eot │ │ │ ├── 389947_3_0.ttf │ │ │ ├── 389947_3_0.woff │ │ │ ├── 389947_3_0.woff2 │ │ │ ├── 389947_4_0.eot │ │ │ ├── 389947_4_0.ttf │ │ │ ├── 389947_4_0.woff │ │ │ ├── 389947_4_0.woff2 │ │ │ ├── 389947_5_0.eot │ │ │ ├── 389947_5_0.ttf │ │ │ ├── 389947_5_0.woff │ │ │ ├── 389947_5_0.woff2 │ │ │ ├── 389947_6_0.eot │ │ │ ├── 389947_6_0.ttf │ │ │ ├── 389947_6_0.woff │ │ │ ├── 389947_6_0.woff2 │ │ │ ├── 389947_7_0.eot │ │ │ ├── 389947_7_0.ttf │ │ │ ├── 389947_7_0.woff │ │ │ ├── 389947_7_0.woff2 │ │ │ ├── 389947_8_0.eot │ │ │ ├── 389947_8_0.ttf │ │ │ ├── 389947_8_0.woff │ │ │ ├── 389947_8_0.woff2 │ │ │ ├── 389947_9_0.eot │ │ │ ├── 389947_9_0.ttf │ │ │ ├── 389947_9_0.woff │ │ │ ├── 389947_9_0.woff2 │ │ │ ├── 389947_A_0.eot │ │ │ ├── 389947_A_0.ttf │ │ │ ├── 389947_A_0.woff │ │ │ ├── 389947_A_0.woff2 │ │ │ ├── 389947_B_0.eot │ │ │ ├── 389947_B_0.ttf │ │ │ ├── 389947_B_0.woff │ │ │ └── 389947_B_0.woff2 │ ├── docs │ │ ├── assets │ │ │ ├── JSONNetworkArch.png │ │ │ ├── NEAR-Explorer-transactionHash.png │ │ │ ├── NEAR-Wallet.jpg │ │ │ ├── SOLogoSm.svg │ │ │ ├── accounts-compare-ethereum-v-near.png │ │ │ ├── arweave-1.png │ │ │ ├── arweave-2.png │ │ │ ├── arweave-3.png │ │ │ ├── as-getData-gasBurnt.png │ │ │ ├── as-setData-gasBurnt.png │ │ │ ├── authorize-near-cli.png │ │ │ ├── concepts │ │ │ │ ├── transaction-atomicity.png │ │ │ │ └── transaction-structure.png │ │ │ ├── create-account │ │ │ │ ├── account-funded.png │ │ │ │ ├── email-text-recovery.jpg │ │ │ │ ├── fund-your-account.jpg │ │ │ │ ├── local-storage.png │ │ │ │ ├── mainnet-create-account.jpg │ │ │ │ ├── mainnet-success.jpg │ │ │ │ ├── mainnet-wallet-dashboard.jpg │ │ │ │ ├── mainnet-wallet-landing.jpg │ │ │ │ ├── purchase_near.jpg │ │ │ │ ├── security-method.jpg │ │ │ │ ├── seed-phrase.jpg │ │ │ │ ├── testnet-create-account.jpg │ │ │ │ ├── testnet-success.jpg │ │ │ │ └── url-breakdown.png │ │ │ ├── create-near-app--output-variants.png │ │ │ ├── cross-contract-call-jest-test.png │ │ │ ├── crosswords │ │ │ │ ├── access-keys.png │ │ │ │ ├── basics-crossword.jpg │ │ │ │ ├── basics-final-frontend.png │ │ │ │ ├── batch-of-actions--dobulyo.near--w_artsu.jpg │ │ │ │ ├── boop-base64-encode.gif │ │ │ │ ├── chapter-1-crossword-correct.gif │ │ │ │ ├── chapter-2-crossword-blank.png │ │ │ │ ├── chapter-2-explorer-transfer.jpg │ │ │ │ ├── chapter-2-solve.gif │ │ │ │ ├── cli-guess-solution.png │ │ │ │ ├── clion-suggestion.gif │ │ │ │ ├── create-key-carpenter-near--carlcarlkarl.near--CarlCarlKarl.jpg │ │ │ │ ├── create-mainnet-account.png │ │ │ │ ├── create-testnet-wallet-account.png │ │ │ │ ├── creating account with text--seanpineda.near--_seanpineda.png │ │ │ │ ├── crossword-actions.png │ │ │ │ ├── enum-a-d-block--eizaconiendo.near--eiza_coniendo.png │ │ │ │ ├── erase-recreate-subaccount--3one9.near--3one92.gif │ │ │ │ ├── erasing-subaccount-chalkboard--iambon.near--JohnreyBona.mp4 │ │ │ │ ├── function-call-action.png │ │ │ │ ├── guards-contract-permissions--connoisseur_dane.near--connoisseurdane.png │ │ │ │ ├── kapun-hashing.png │ │ │ │ ├── keys-cartoon-good--alcantara_gabriel.near--Bagriel_5_10.png │ │ │ │ ├── logging-in.png │ │ │ │ ├── near-and-react--dakila.near--rodolf_dtbbx.png │ │ │ │ ├── paging-through-hashes-swing--pierced_staggg.near--pierced_stag.jpg │ │ │ │ ├── predecessor-signer-current--yasuoarts.near--YasuoArt69.png │ │ │ │ ├── puzzle-frontrun.png │ │ │ │ ├── puzzle-piggy-bank--r3v.near--rev_rodrigueza.png │ │ │ │ ├── remove-key-recycle--eerie_ram.near--eerie_ram.png │ │ │ │ ├── rpc-api-view-state.png │ │ │ │ ├── rust-good--ksart.near.png │ │ │ │ ├── rust-scary--ksart.near.png │ │ │ │ ├── safe-with-access-key--soulless.near--ZeroSerotonin__.png │ │ │ │ ├── shuffle-keys.gif │ │ │ │ ├── teaching--jeheycell.near--artcultureac.jpeg │ │ │ │ ├── teaching-just-teacher--herogranada.near--GranadaHero.jpeg │ │ │ │ ├── transfer-brand-blue--qiqi04.near--blankworl.png │ │ │ │ └── yoctoNEAR-magnifying--jrbemint.near--JrbeMad.jpg │ │ │ ├── crowdin-list.png │ │ │ ├── crowdin-tasks.png │ │ │ ├── data-decision-tree.png │ │ │ ├── default-token-contract-test.png │ │ │ ├── develop │ │ │ │ ├── develop.png │ │ │ │ ├── examples.png │ │ │ │ ├── quickstart.png │ │ │ │ ├── secure.png │ │ │ │ ├── test.png │ │ │ │ └── tutorials.png │ │ │ ├── docker-logs.png │ │ │ ├── entercode.png │ │ │ ├── entry-point.gif │ │ │ ├── evm │ │ │ │ ├── Screen-Shot-2021-01-01-at-11.07.17-AM-1024x1016.png │ │ │ │ ├── Screen-Shot-2021-01-01-at-11.07.17-AM-150x150.png │ │ │ │ ├── Screen-Shot-2021-01-01-at-11.07.17-AM-300x298.png │ │ │ │ ├── Screen-Shot-2021-01-01-at-11.07.17-AM-768x762.png │ │ │ │ ├── Screen-Shot-2021-01-01-at-11.07.17-AM.png │ │ │ │ ├── Screen-Shot-2021-01-01-at-2.57.49-PM-1024x318.png │ │ │ │ ├── Screen-Shot-2021-01-01-at-2.57.49-PM-300x93.png │ │ │ │ ├── Screen-Shot-2021-01-01-at-2.57.49-PM-768x238.png │ │ │ │ ├── Screen-Shot-2021-01-01-at-2.57.49-PM.png │ │ │ │ ├── adoption-artifact-improved-1024x257.jpg │ │ │ │ ├── adoption-artifact-improved-1536x385.jpg │ │ │ │ ├── adoption-artifact-improved-2048x514.jpg │ │ │ │ ├── adoption-artifact-improved-300x75.jpg │ │ │ │ ├── adoption-artifact-improved-768x193.jpg │ │ │ │ ├── dev-tools-improved-1024x324.jpg │ │ │ │ ├── dev-tools-improved-1536x486.jpg │ │ │ │ ├── dev-tools-improved-2048x648.jpg │ │ │ │ ├── dev-tools-improved-300x95.jpg │ │ │ │ ├── dev-tools-improved-768x243.jpg │ │ │ │ ├── dev-tools-improved.jpg │ │ │ │ ├── evm-simple-callEvm-collapsed-1024x482.jpg │ │ │ │ ├── evm-simple-callEvm-collapsed-1536x723.jpg │ │ │ │ ├── evm-simple-callEvm-collapsed-2048x964.jpg │ │ │ │ ├── evm-simple-callEvm-collapsed-300x141.jpg │ │ │ │ ├── evm-simple-callEvm-collapsed-768x362.jpg │ │ │ │ ├── evm-simple-with-sections-numbers-improved-1024x978.jpg │ │ │ │ ├── evm-simple-with-sections-numbers-improved-1536x1467.jpg │ │ │ │ ├── evm-simple-with-sections-numbers-improved-2048x1956.jpg │ │ │ │ ├── evm-simple-with-sections-numbers-improved-300x286.jpg │ │ │ │ ├── evm-simple-with-sections-numbers-improved-768x733.jpg │ │ │ │ ├── josh.betanet-eth-address-1024x442.jpg │ │ │ │ ├── josh.betanet-eth-address-1536x663.jpg │ │ │ │ ├── josh.betanet-eth-address-300x130.jpg │ │ │ │ ├── josh.betanet-eth-address-768x332.jpg │ │ │ │ ├── josh.betanet-eth-address.jpg │ │ │ │ ├── pet-shop-1024x591.jpg │ │ │ │ ├── pet-shop-1536x887.jpg │ │ │ │ ├── pet-shop-2048x1182.jpg │ │ │ │ ├── pet-shop-300x173.jpg │ │ │ │ ├── pet-shop-768x443.jpg │ │ │ │ ├── pet-shop-nearprovider-sma11er-1024x527.jpg │ │ │ │ ├── pet-shop-nearprovider-sma11er-300x154.jpg │ │ │ │ ├── pet-shop-nearprovider-sma11er-768x395.jpg │ │ │ │ └── pet-shop-nearprovider-sma11er.jpg │ │ │ ├── examples │ │ │ │ ├── coin-flip.png │ │ │ │ ├── count-on-near-banner.png │ │ │ │ ├── count-on-near.png │ │ │ │ ├── donation.png │ │ │ │ ├── guest-book.png │ │ │ │ ├── hello-near-banner.png │ │ │ │ └── hello-near.png │ │ │ ├── explorers │ │ │ │ ├── dapplooker.png │ │ │ │ ├── near-explorer.png │ │ │ │ ├── nearblocks.png │ │ │ │ ├── nearscope.png │ │ │ │ └── stats-gallery.png │ │ │ ├── figment-learn-color.png │ │ │ ├── figment-learn-compact.png │ │ │ ├── fts │ │ │ │ ├── empty-wallet-ft-tab.png │ │ │ │ ├── filled-fts-in-wallet.png │ │ │ │ ├── storage-standard-meme.png │ │ │ │ └── teamtoken.png │ │ │ ├── gitpod-create-fresh-workspace.png │ │ │ ├── gray_near_logo (1).svg │ │ │ ├── gray_near_logo.svg │ │ │ ├── gray_near_logo_bigger.png │ │ │ ├── gray_near_logo_md (1).png │ │ │ ├── gray_near_logo_md (2).png │ │ │ ├── gray_near_logo_md (3).png │ │ │ ├── gray_near_logo_md-1.png │ │ │ ├── gray_near_logo_md.png │ │ │ ├── guest-book_as_unit-test.jpg │ │ │ ├── guest-book_fe_build_success.jpg │ │ │ ├── guest-book_fe_deployment_fail_compile.jpg │ │ │ ├── guest-book_fe_form_donation.jpg │ │ │ ├── guest-book_fe_logged-in.jpg │ │ │ ├── guest-book_fe_tests_complete.jpg │ │ │ ├── header.svg │ │ │ ├── home │ │ │ │ ├── create.png │ │ │ │ ├── discord.png │ │ │ │ ├── discover.png │ │ │ │ ├── integrate.png │ │ │ │ ├── learn.png │ │ │ │ ├── nomicon.png │ │ │ │ ├── rpc.png │ │ │ │ ├── sdk.png │ │ │ │ ├── tools.png │ │ │ │ ├── tutorials.png │ │ │ │ ├── twitter.png │ │ │ │ ├── validate.png │ │ │ │ └── zulip.png │ │ │ ├── icons │ │ │ │ └── GitHub.png │ │ │ ├── image (7).png │ │ │ ├── image-5.png │ │ │ ├── image-shell.png │ │ │ ├── image.png │ │ │ ├── integrate │ │ │ │ ├── cli.png │ │ │ │ ├── events.png │ │ │ │ ├── indexer.png │ │ │ │ └── website.png │ │ │ ├── jasmine-tests-for-token-smart-contract.png │ │ │ ├── jest-tests-for-calculator-contract.png │ │ │ ├── jscolor-picker.png │ │ │ ├── kurtosis │ │ │ │ ├── guest-book-function-access-key.png │ │ │ │ ├── local-dapp-build.png │ │ │ │ ├── local-explorer-contract-deployed.png │ │ │ │ ├── local-explorer-landing-page.png │ │ │ │ ├── local-explorer-send-funds.png │ │ │ │ ├── local-explorer-signed-transaction.png │ │ │ │ ├── local-guest-book-landing.png │ │ │ │ ├── local-guest-book-signed-message.png │ │ │ │ ├── local-wallet-collectibles-tab.png │ │ │ │ ├── local-wallet-landing-page.png │ │ │ │ └── localnet-explorer.png │ │ │ ├── ledger │ │ │ │ ├── ledger-developer-mode.jpg │ │ │ │ └── ledger-install-near-app.jpg │ │ │ ├── lockup │ │ │ │ ├── lockup_1.png │ │ │ │ ├── lockup_2.png │ │ │ │ ├── lockup_3.png │ │ │ │ ├── lockup_4.png │ │ │ │ └── lockup_5.png │ │ │ ├── near-cli-rs.png │ │ │ ├── near-docs.svg │ │ │ ├── near-login-confirm.png │ │ │ ├── near-login.png │ │ │ ├── near-place-console-on-launch.png │ │ │ ├── near-place-drawing-after-sign-in.png │ │ │ ├── near-place-painting.png │ │ │ ├── near-place-webpage-on-launch.png │ │ │ ├── near-studio-launch-screen-counter-smart-contract.png │ │ │ ├── near-studio-launch-screen-guest-book.png │ │ │ ├── near-studio-launch-screen-near-wallet-integration.png │ │ │ ├── near-studio-tests-near-wallet-integration.png │ │ │ ├── near-terminology.png │ │ │ ├── near_logo.png │ │ │ ├── near_place_screenshot.png │ │ │ ├── new-to-near │ │ │ │ ├── simple-blockchain.png │ │ │ │ └── simple-validator.png │ │ │ ├── nfts │ │ │ │ ├── IPFS-village-schem.png │ │ │ │ ├── copy-chat-message-minecraft.png │ │ │ │ ├── customizing-logic-meme.png │ │ │ │ ├── empty-nft-in-wallet.png │ │ │ │ ├── explorer-payout-series-owner.png │ │ │ │ ├── filled-nft-in-wallet.png │ │ │ │ ├── final-village-pasting.png │ │ │ │ ├── nft-mint-frontend.png │ │ │ │ ├── nft-storage.png │ │ │ │ ├── nft-wallet-token.png │ │ │ │ ├── nft-wallet.png │ │ │ │ ├── pasted-minecraft-house.png │ │ │ │ ├── series-wallet-collectibles.png │ │ │ │ ├── village-house-minecraft.png │ │ │ │ └── web3-storage-upload.png │ │ │ ├── node │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── download.png │ │ │ │ ├── initialize.png │ │ │ │ ├── pool.png │ │ │ │ └── rust.png │ │ │ ├── oracle-flow.gif │ │ │ ├── phonerecovery.png │ │ │ ├── postman-setup-body.png │ │ │ ├── postman-setup-headers.png │ │ │ ├── prepare-your-playground.png │ │ │ ├── rust-getData-gasBurnt.png │ │ │ ├── rust-setData-gasBurnt.png │ │ │ ├── rust-testing-iterate.png │ │ │ ├── screen-shot-2019-03-11-at-4.36.34-pm (1).png │ │ │ ├── screen-shot-2019-03-11-at-4.36.34-pm (2).png │ │ │ ├── screen-shot-2019-03-11-at-4.36.34-pm-1 (1).png │ │ │ ├── screen-shot-2019-03-11-at-4.36.34-pm-1 (2).png │ │ │ ├── screen-shot-2019-03-11-at-4.36.34-pm-1.png │ │ │ ├── screen-shot-2019-03-11-at-4.36.34-pm.png │ │ │ ├── screenshot-2019-03-11-21.31.48 (1).png │ │ │ ├── screenshot-2019-03-11-21.31.48 (2).png │ │ │ ├── screenshot-2019-03-11-21.31.48-2 (1).png │ │ │ ├── screenshot-2019-03-11-21.31.48-2.png │ │ │ ├── screenshot-2019-03-11-21.31.48.png │ │ │ ├── screenshot-2019-03-11-21.35.48 (1).png │ │ │ ├── screenshot-2019-03-11-21.35.48 (2).png │ │ │ ├── screenshot-2019-03-11-21.35.48-1 (1).png │ │ │ ├── screenshot-2019-03-11-21.35.48-1.png │ │ │ ├── screenshot-2019-03-11-21.35.48.png │ │ │ ├── screenshot-2019-04-19-19.53.36 (1).png │ │ │ ├── screenshot-2019-04-19-19.53.36-1 (1).png │ │ │ ├── screenshot-2019-04-19-19.53.36-1 (2).png │ │ │ ├── screenshot-2019-04-19-19.53.36-1-2.png │ │ │ ├── screenshot-2019-04-19-19.53.36-1.png │ │ │ ├── screenshot-2019-04-19-19.53.36.png │ │ │ ├── screenshot-2019-04-19-20.09.33 (1).png │ │ │ ├── screenshot-2019-04-19-20.09.33 (2).png │ │ │ ├── screenshot-2019-04-19-20.09.33-2.png │ │ │ ├── screenshot-2019-04-19-20.09.33.png │ │ │ ├── screenshot-2019-06-04-15.26.08.png │ │ │ ├── screenshot-2019-07-30-13.23.01.png │ │ │ ├── siaskynet-1.png │ │ │ ├── siaskynet-2.png │ │ │ ├── spaceship (1).png │ │ │ ├── spaceship (2).png │ │ │ ├── spaceship-2 (1).png │ │ │ ├── spaceship-2.png │ │ │ ├── spaceship.png │ │ │ ├── token-contract-aspect-game-test.png │ │ │ ├── token-contract-aspect-test.png │ │ │ ├── update_near-cli.png │ │ │ ├── validators.png │ │ │ ├── wallet-selector-preview.png │ │ │ ├── wallet-welcome.png │ │ │ ├── web3 │ │ │ │ ├── nfts-1.png │ │ │ │ ├── nfts-10.png │ │ │ │ ├── nfts-11.png │ │ │ │ ├── nfts-12.png │ │ │ │ ├── nfts-13.png │ │ │ │ ├── nfts-14.png │ │ │ │ ├── nfts-15.png │ │ │ │ ├── nfts-16.png │ │ │ │ ├── nfts-17.png │ │ │ │ ├── nfts-18.png │ │ │ │ ├── nfts-19.png │ │ │ │ ├── nfts-2.png │ │ │ │ ├── nfts-20.png │ │ │ │ ├── nfts-21.png │ │ │ │ ├── nfts-22.png │ │ │ │ ├── nfts-23.png │ │ │ │ ├── nfts-24.png │ │ │ │ ├── nfts-25.png │ │ │ │ ├── nfts-3.png │ │ │ │ ├── nfts-4.png │ │ │ │ ├── nfts-5.png │ │ │ │ ├── nfts-6.png │ │ │ │ ├── nfts-7.png │ │ │ │ ├── nfts-8.png │ │ │ │ ├── nfts-9.png │ │ │ │ ├── web3--2.png │ │ │ │ ├── web3-1.png │ │ │ │ ├── web3-10.png │ │ │ │ ├── web3-11.png │ │ │ │ ├── web3-12.png │ │ │ │ ├── web3-13.png │ │ │ │ ├── web3-14.png │ │ │ │ ├── web3-15.png │ │ │ │ ├── web3-16.png │ │ │ │ ├── web3-17.png │ │ │ │ ├── web3-18.png │ │ │ │ ├── web3-19.png │ │ │ │ ├── web3-2.png │ │ │ │ ├── web3-20.png │ │ │ │ ├── web3-21.png │ │ │ │ ├── web3-22.png │ │ │ │ ├── web3-23.png │ │ │ │ ├── web3-3.png │ │ │ │ ├── web3-4.png │ │ │ │ ├── web3-5.png │ │ │ │ ├── web3-6.png │ │ │ │ ├── web3-7.png │ │ │ │ ├── web3-8.png │ │ │ │ └── web3-9.png │ │ │ ├── welcome-pages │ │ │ │ ├── aurora.png │ │ │ │ ├── awesomenear.jpg │ │ │ │ ├── blocks.png │ │ │ │ ├── contract.png │ │ │ │ ├── count-near.png │ │ │ │ ├── cross-call.png │ │ │ │ ├── crossword.png │ │ │ │ ├── dao.png │ │ │ │ ├── develop.png │ │ │ │ ├── donation.png │ │ │ │ ├── drawing.svg │ │ │ │ ├── ecosystem.png │ │ │ │ ├── examples.png │ │ │ │ ├── experiment.png │ │ │ │ ├── factory.png │ │ │ │ ├── frontend.png │ │ │ │ ├── ft.png │ │ │ │ ├── guest-book.png │ │ │ │ ├── hello-near.png │ │ │ │ ├── indexers.png │ │ │ │ ├── key.png │ │ │ │ ├── monitor.png │ │ │ │ ├── multiple.png │ │ │ │ ├── near-api-js.png │ │ │ │ ├── near-cli.png │ │ │ │ ├── near-logo.png │ │ │ │ ├── nft-marketplace-js.png │ │ │ │ ├── nft-marketplace-rs.png │ │ │ │ ├── nft.png │ │ │ │ ├── nomicon.png │ │ │ │ ├── oracle.png │ │ │ │ ├── protocol.png │ │ │ │ ├── quickstart.png │ │ │ │ ├── rainbow.png │ │ │ │ ├── random.png │ │ │ │ ├── rpc.png │ │ │ │ ├── smart-contracts.png │ │ │ │ ├── smartcontract-js.png │ │ │ │ ├── smartcontract-rust.png │ │ │ │ ├── smartcontract.png │ │ │ │ ├── test.png │ │ │ │ ├── transaction.png │ │ │ │ ├── tutorials.png │ │ │ │ ├── update.png │ │ │ │ ├── user.png │ │ │ │ ├── validate.png │ │ │ │ ├── validation.png │ │ │ │ └── valitate.png │ │ │ ├── windows-quickedit-mode.png │ │ │ └── writedownrecovery.png │ │ ├── flow-token-transfer │ │ │ ├── 01-diff-shards-complete.png │ │ │ └── 02-same-shard-complete.png │ │ ├── flow │ │ │ ├── 01-timeline.png │ │ │ ├── 02-tracks.png │ │ │ ├── 03-tx-outcome-receipt.png │ │ │ └── 04-send-nears-flow.png │ │ └── intro │ │ │ ├── blockchain.png │ │ │ ├── indexer.png │ │ │ └── near-lake.png │ ├── img │ │ ├── Icons │ │ │ ├── icon-arrow-left.svg │ │ │ ├── icon-arrow-up.svg │ │ │ └── telegram.svg │ │ ├── docs.svg │ │ ├── explorer.svg │ │ ├── favicon.ico │ │ ├── icon-contributors.svg │ │ ├── icon-core.png │ │ ├── icon-core.svg │ │ ├── icon-developers.svg │ │ ├── icon-integrators.svg │ │ ├── icon-validators.svg │ │ ├── icons-product.svg │ │ ├── near_logo.ico │ │ ├── near_logo.svg │ │ ├── near_logo_white.svg │ │ ├── near_protocol_logo.png │ │ ├── studio.svg │ │ ├── typedoc-icons.png │ │ └── wallet.svg │ └── js │ │ ├── copy-code-button.js │ │ ├── hotjar.js │ │ └── mixpanel.js ├── test-links.sh ├── tests │ └── testcli.sh ├── tsconfig.json └── yarn.lock └── yarn.lock /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # CODEOWNERS info: https://help.github.com/en/articles/about-code-owners 2 | # Owners are automatically requested for review for PRs that changes code 3 | # that they own. 4 | * @bucanero 5 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 🐞 3 | about: Create a report to help us improve the docs 4 | title: "[BUG] " 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | 12 | **Describe the bug** 🐞 13 | Briefly describe the issue you're experiencing. 14 | 15 | **Expected behavior** 16 | Describe what you were expecting to find. 17 | 18 | **Screenshots** 19 | If applicable, add screenshots to help explain your problem. 20 | 21 | **Location** 🎯 22 | Please link to the page that you see this issue. 23 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Question 4 | url: https://stackoverflow.com/questions/tagged/nearprotocol 5 | about: Please ask and answer questions here. -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Documentation request ✏️ 3 | about: Suggest an idea for a new document propose an enhancement of an existing document. 4 | title: "[DOC] " 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | 12 | **Is your feature request related to a problem? Please describe.** 13 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 14 | 15 | **Describe the solution you'd like** 16 | A clear and concise description of what you want to happen. 17 | 18 | **Additional context** 19 | Add any other context or screenshots about the feature request here. 20 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/meta-improvement.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Meta improvement 💡 3 | about: This is for an improvement to the workflow and/or tooling 4 | title: "[META]" 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Additional context** 17 | Add any other context or screenshots about the feature request here. 18 | -------------------------------------------------------------------------------- /.github/workflows/build-check.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | workflow_dispatch: 5 | pull_request: 6 | types: [opened, reopened, synchronize] 7 | branches: 8 | - master 9 | push: 10 | branches: 11 | - master 12 | 13 | jobs: 14 | build-check: 15 | runs-on: ubuntu-latest 16 | steps: 17 | - uses: actions/checkout@v2 18 | - uses: actions/setup-node@v2 19 | with: 20 | node-version: '16' 21 | - name: Build docusaurus crowdin docs 22 | run: | 23 | cd website && npm install 24 | npm run crowdin:build 25 | npm run build 26 | env: 27 | CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} 28 | -------------------------------------------------------------------------------- /.github/workflows/crowdin.yml: -------------------------------------------------------------------------------- 1 | name: Upload to Crowdin on PR merge 2 | 3 | # only trigger on pull request closed events 4 | on: 5 | pull_request: 6 | types: [ closed ] 7 | workflow_dispatch: 8 | 9 | jobs: 10 | merge_job: 11 | # this job will only run if the PR has been merged 12 | if: github.event.pull_request.merged == true 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: actions/checkout@v2 16 | - uses: actions/setup-node@v2 17 | with: 18 | node-version: '16' 19 | - name: Upload Crowdin docs 20 | run: | 21 | echo PR #${{ github.event.number }} has been merged 22 | cd website && npm install 23 | npm run crowdin:sync 24 | env: 25 | CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} 26 | -------------------------------------------------------------------------------- /.github/workflows/spellcheck.yml: -------------------------------------------------------------------------------- 1 | name: spellchecker 2 | 3 | on: 4 | workflow_dispatch: 5 | pull_request: 6 | types: [opened, reopened, synchronize] 7 | branches: 8 | - master 9 | push: 10 | branches: 11 | - master 12 | 13 | jobs: 14 | misspell: 15 | name: runner / misspell 16 | runs-on: ubuntu-latest 17 | steps: 18 | - name: Check out code. 19 | uses: actions/checkout@v1 20 | - name: misspell 21 | id: check_for_typos 22 | uses: reviewdog/action-misspell@v1 23 | with: 24 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 25 | path: "./docs" 26 | locale: "US" 27 | -------------------------------------------------------------------------------- /.github/workflows/test-links.yml: -------------------------------------------------------------------------------- 1 | name: Check Markdown links 2 | 3 | on: 4 | workflow_dispatch: 5 | pull_request: 6 | types: [opened, reopened, synchronize] 7 | branches: 8 | - master 9 | push: 10 | branches: 11 | - master 12 | 13 | jobs: 14 | markdown-link-check: 15 | runs-on: ubuntu-latest 16 | steps: 17 | - uses: actions/checkout@master 18 | - uses: gaurav-nelson/github-action-markdown-link-check@v1 19 | with: 20 | use-quiet-mode: 'yes' 21 | config-file: 'website/mlc_config.json' 22 | folder-path: 'docs' 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | .DS_Store? 4 | */.DS_Store 5 | website/secrets.js 6 | website/secrets.env 7 | website/build/* 8 | website/i18n/* 9 | website/.docusaurus/* 10 | neardev 11 | .idea 12 | .docz 13 | 14 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true, 3 | "cSpell.words": [ 4 | "Assemblyscript" 5 | ] 6 | } -------------------------------------------------------------------------------- /docs/1.concepts/3.advanced/specification.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: specification 3 | title: NEAR Protocol Specification 4 | sidebar_label: Specification 5 | --- 6 | 7 | NEAR Protocol Specifications and Standards are tracked in two places: 8 | 9 | - NEAR Protocol Specification Documentation: [ [Nomicon.io](https://nomicon.io) ] 10 | - NEAR Enhancement Proposals GitHub Repository: [ [NEAR NEPs](https://github.com/near/NEPs) ] 11 | -------------------------------------------------------------------------------- /docs/1.concepts/3.advanced/virtual_machine.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: vm 3 | title: Virtual Machine 4 | --- 5 | 6 | Talk about execution here -------------------------------------------------------------------------------- /docs/2.develop/contracts/security/bounty.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: bounty 3 | title: Bug Bounty Program 4 | --- 5 | 6 | NEAR has a [revamped bug bounty program](https://hackenproof.com/near/near-protocol)! 7 | 8 | Hackers - help audit, test, and toughen NEAR up, starting with bounties in the protocol category, and soon expanding to wallet, web, console, and smart contracts 9 | -------------------------------------------------------------------------------- /docs/2.develop/contracts/security/frontrunning.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: frontrunning 3 | title: Front Running 4 | --- 5 | 6 | In the NEAR network, validators have access to the transaction pool, and can therefore see them before they execute. This enables validators to analyze transactions for a potential profit and frontrun them with a transaction of their own. 7 | 8 | For example, imagine that you make a game where users are paid for solving puzzles. If not handled carefully, a validator could swap a transaction with the valid answer for one of its own and claim the prize. You can read more about this in [this blog post](https://www.paradigm.xyz/2020/08/ethereum-is-a-dark-forest). 9 | -------------------------------------------------------------------------------- /docs/2.develop/contracts/security/sybil.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: sybil 3 | title: Sybil Attacks 4 | --- 5 | 6 | While developing your smart contract, keep in mind that an individual can potentially create multiple NEAR accounts. This is especially relevant in ecosystems involving crowd decisions, such as [DAOs](../../relevant-contracts/dao.md). 7 | 8 | Imagine that you open the voting to anyone in the community. If each account can cast a vote, a malicious actor could span multiple accounts and gain a disproportionately large influence on the result. -------------------------------------------------------------------------------- /docs/2.develop/lock.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: lock 3 | title: Locking Accounts 4 | --- 5 | 6 | Removing all [full access keys](../4.tools/cli.md#near-delete-key-near-delete-key) from an account will effectively **lock it**. 7 | 8 | When an account is locked nobody can perform transactions in the account's name (e.g. update the code or transfer money). 9 | 10 | #### How to Lock an Account 11 | ```bash 12 | near keys 13 | # result: [access_key: {"nonce": ..., "public_key": ''}] 14 | 15 | near delete-key '' 16 | ``` 17 | 18 | #### Why Locking an Account 19 | Locking an account brings more reassurance to end-users, since they know no external actor will be able to manipulate the account's 20 | contract or balance. 21 | 22 | :::tip Upgrading Locked Contracts 23 | Please do note that, while no external actor can update the contract, the contract **can still upgrade itself**. See [this article](upgrade.md#programmatic-update) for details. 24 | ::: 25 | -------------------------------------------------------------------------------- /docs/2.develop/prerequisites.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: prerequisites 3 | title: Prerequisites 4 | #sidebar_label: 💻 Prerequisites 5 | --- 6 | 7 | In order to develop smart contracts you will need Node.js for javascript, and the rust toolchain for Rust. 8 | 9 | --- 10 | 11 | ## Developing Contracts in Rust 12 | 13 | Follow [these instructions](https://doc.rust-lang.org/book/ch01-01-installation.html) for setting up Rust. Then, add the `wasm32-unknown-unknown` toolchain which enables compiling Rust to [Web Assembly (wasm)](https://webassembly.org/), the low-level language used by the NEAR platform. 14 | 15 | ```bash 16 | # Get Rust in linux and MacOS 17 | curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh 18 | source $HOME/.cargo/env 19 | 20 | # Add the wasm toolchain 21 | rustup target add wasm32-unknown-unknown 22 | ``` 23 | 24 | --- 25 | 26 | -------------------------------------------------------------------------------- /docs/4.tools/near-api-js/naj-utils.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: utils 3 | title: Utils 4 | sidebar_label: Utils 5 | --- 6 | 7 | ### NEAR => yoctoNEAR {#near--yoctonear} 8 | 9 | ```js 10 | // converts NEAR amount into yoctoNEAR (10^-24) 11 | 12 | const { utils } = nearAPI; 13 | const amountInYocto = utils.format.parseNearAmount("1"); 14 | ``` 15 | 16 | [ Function `parseNearAmount`](https://near.github.io/near-api-js/modules/utils_format#parsenearamount) 17 | 18 | ### YoctoNEAR => NEAR {#yoctonear--near} 19 | 20 | ```js 21 | // converts yoctoNEAR (10^-24) amount into NEAR 22 | 23 | const { utils } = nearAPI; 24 | const amountInNEAR = utils.format.formatNearAmount("1000000000000000000000000"); 25 | ``` 26 | 27 | [ Function `formatNearAmount`](https://near.github.io/near-api-js/modules/utils_format#formatnearamount) 28 | 29 | -------------------------------------------------------------------------------- /docs/sdk/welcome.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: welcome 3 | title: "NEAR SDKs" 4 | hide_table_of_contents: false 5 | --- 6 | 7 | import {FeatureList, Column, Feature} from "@site/components/featurelist"; 8 | import ContactUs from '@site/components/ContactUs.mdx'; 9 | 10 | Explore our language-specific SDK documentation 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | --- 22 | 23 | 24 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "scripts": { 3 | "test": "cd ./website && npm run test" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /website/crowdin.yml: -------------------------------------------------------------------------------- 1 | project_id: '479619' 2 | api_token_env: 'CROWDIN_PERSONAL_TOKEN' 3 | base_path: ".." 4 | preserve_hierarchy: true 5 | files: [ 6 | # JSON translation files 7 | { 8 | source: '/website/i18n/en/**/*', 9 | translation: '/website/i18n/%two_letters_code%/**/%original_file_name%', 10 | }, 11 | # Docs Markdown files 12 | { 13 | source: '/docs/**/*', 14 | translation: '/website/i18n/%two_letters_code%/docusaurus-plugin-content-docs/current/**/%original_file_name%', 15 | }, 16 | ] -------------------------------------------------------------------------------- /website/linkinator.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "recurse": true, 3 | "silent": true, 4 | "directoryListing": true, 5 | "skip": [ 6 | "https://crates.io/crates/near-sdk", 7 | "https://staking.dokia.cloud/staking/near/validators", 8 | "https://near.zavodil.ru/?pools=", 9 | "https://rpc.testnet.near.org/", 10 | "https://rpc.betanet.near.org", 11 | "https://rpc.betanet.near.org/status", 12 | "https://rpc.betanet.near.org/network_info", 13 | "https://rpc.near.org/", 14 | "http://localhost:5000/css/fonts.css", 15 | "http://localhost:5000/css/landing-page.css", 16 | "http://localhost:5000/css/copy-code-button.css", 17 | "https://github.com/near/docs/tree/master/docs", 18 | "https://etherscan.io/chart/gasprice", 19 | "https://ropsten.etherscan.io/*" 20 | ], 21 | "retry": true 22 | } 23 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-__dummy/dummy.md: -------------------------------------------------------------------------------- 1 | dummy for near-api-js -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/_category_.yml: -------------------------------------------------------------------------------- 1 | label: "API" -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/classes/_category_.yml: -------------------------------------------------------------------------------- 1 | label: "Classes" 2 | position: 3 -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/classes/transaction.CreateAccount.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "transaction.CreateAccount" 3 | title: "Class: CreateAccount" 4 | sidebar_label: "CreateAccount" 5 | custom_edit_url: null 6 | --- 7 | 8 | [transaction](../modules/transaction.md).CreateAccount 9 | 10 | ## Hierarchy 11 | 12 | - [`IAction`](transaction.IAction.md) 13 | 14 | ↳ **`CreateAccount`** 15 | 16 | ## Constructors 17 | 18 | ### constructor 19 | 20 | **new CreateAccount**(`properties`) 21 | 22 | #### Parameters 23 | 24 | | Name | Type | 25 | | :------ | :------ | 26 | | `properties` | `any` | 27 | 28 | #### Inherited from 29 | 30 | [IAction](transaction.IAction.md).[constructor](transaction.IAction.md#constructor) 31 | 32 | #### Defined in 33 | 34 | [utils/enums.ts:17](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/utils/enums.ts#L17) 35 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/classes/transaction.FullAccessPermission.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "transaction.FullAccessPermission" 3 | title: "Class: FullAccessPermission" 4 | sidebar_label: "FullAccessPermission" 5 | custom_edit_url: null 6 | --- 7 | 8 | [transaction](../modules/transaction.md).FullAccessPermission 9 | 10 | ## Hierarchy 11 | 12 | - `Assignable` 13 | 14 | ↳ **`FullAccessPermission`** 15 | 16 | ## Constructors 17 | 18 | ### constructor 19 | 20 | **new FullAccessPermission**(`properties`) 21 | 22 | #### Parameters 23 | 24 | | Name | Type | 25 | | :------ | :------ | 26 | | `properties` | `any` | 27 | 28 | #### Inherited from 29 | 30 | Assignable.constructor 31 | 32 | #### Defined in 33 | 34 | [utils/enums.ts:17](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/utils/enums.ts#L17) 35 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/classes/utils_errors.ErrorContext.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "utils_errors.ErrorContext" 3 | title: "Class: ErrorContext" 4 | sidebar_label: "ErrorContext" 5 | custom_edit_url: null 6 | --- 7 | 8 | [utils/errors](../modules/utils_errors.md).ErrorContext 9 | 10 | ## Constructors 11 | 12 | ### constructor 13 | 14 | **new ErrorContext**(`transactionHash?`) 15 | 16 | #### Parameters 17 | 18 | | Name | Type | 19 | | :------ | :------ | 20 | | `transactionHash?` | `string` | 21 | 22 | #### Defined in 23 | 24 | [utils/errors.ts:25](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/utils/errors.ts#L25) 25 | 26 | ## Properties 27 | 28 | ### transactionHash 29 | 30 | `Optional` **transactionHash**: `string` 31 | 32 | #### Defined in 33 | 34 | [utils/errors.ts:24](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/utils/errors.ts#L24) 35 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/enums/_category_.yml: -------------------------------------------------------------------------------- 1 | label: "Enumerations" 2 | position: 2 -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/enums/providers_provider.IdType.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_provider.IdType" 3 | title: "Enumeration: IdType" 4 | sidebar_label: "IdType" 5 | custom_edit_url: null 6 | --- 7 | 8 | [providers/provider](../modules/providers_provider.md).IdType 9 | 10 | ## Enumeration Members 11 | 12 | ### Receipt 13 | 14 | **Receipt** = ``"receipt"`` 15 | 16 | #### Defined in 17 | 18 | [providers/provider.ts:294](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L294) 19 | 20 | ___ 21 | 22 | ### Transaction 23 | 24 | **Transaction** = ``"transaction"`` 25 | 26 | #### Defined in 27 | 28 | [providers/provider.ts:293](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L293) 29 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/enums/utils_key_pair.KeyType.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "utils_key_pair.KeyType" 3 | title: "Enumeration: KeyType" 4 | sidebar_label: "KeyType" 5 | custom_edit_url: null 6 | --- 7 | 8 | [utils/key_pair](../modules/utils_key_pair.md).KeyType 9 | 10 | All supported key types 11 | 12 | ## Enumeration Members 13 | 14 | ### ED25519 15 | 16 | **ED25519** = ``0`` 17 | 18 | #### Defined in 19 | 20 | [utils/key_pair.ts:14](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/utils/key_pair.ts#L14) 21 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/_category_.yml: -------------------------------------------------------------------------------- 1 | label: "Interfaces" 2 | position: 4 -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/account.AccountAuthorizedApp.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "account.AccountAuthorizedApp" 3 | title: "Interface: AccountAuthorizedApp" 4 | sidebar_label: "AccountAuthorizedApp" 5 | custom_edit_url: null 6 | --- 7 | 8 | [account](../modules/account.md).AccountAuthorizedApp 9 | 10 | ## Properties 11 | 12 | ### amount 13 | 14 | **amount**: `string` 15 | 16 | #### Defined in 17 | 18 | [account.ts:59](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/account.ts#L59) 19 | 20 | ___ 21 | 22 | ### contractId 23 | 24 | **contractId**: `string` 25 | 26 | #### Defined in 27 | 28 | [account.ts:58](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/account.ts#L58) 29 | 30 | ___ 31 | 32 | ### publicKey 33 | 34 | **publicKey**: `string` 35 | 36 | #### Defined in 37 | 38 | [account.ts:60](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/account.ts#L60) 39 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/providers_provider.AccessKeyInfoView.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_provider.AccessKeyInfoView" 3 | title: "Interface: AccessKeyInfoView" 4 | sidebar_label: "AccessKeyInfoView" 5 | custom_edit_url: null 6 | --- 7 | 8 | [providers/provider](../modules/providers_provider.md).AccessKeyInfoView 9 | 10 | ## Properties 11 | 12 | ### access\_key 13 | 14 | **access\_key**: [`AccessKeyView`](providers_provider.AccessKeyView.md) 15 | 16 | #### Defined in 17 | 18 | [providers/provider.ts:367](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L367) 19 | 20 | ___ 21 | 22 | ### public\_key 23 | 24 | **public\_key**: `string` 25 | 26 | #### Defined in 27 | 28 | [providers/provider.ts:366](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L366) 29 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/providers_provider.AccessKeyWithPublicKey.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_provider.AccessKeyWithPublicKey" 3 | title: "Interface: AccessKeyWithPublicKey" 4 | sidebar_label: "AccessKeyWithPublicKey" 5 | custom_edit_url: null 6 | --- 7 | 8 | [providers/provider](../modules/providers_provider.md).AccessKeyWithPublicKey 9 | 10 | ## Properties 11 | 12 | ### account\_id 13 | 14 | **account\_id**: `string` 15 | 16 | #### Defined in 17 | 18 | [providers/provider.ts:311](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L311) 19 | 20 | ___ 21 | 22 | ### public\_key 23 | 24 | **public\_key**: `string` 25 | 26 | #### Defined in 27 | 28 | [providers/provider.ts:312](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L312) 29 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/providers_provider.BlockChange.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_provider.BlockChange" 3 | title: "Interface: BlockChange" 4 | sidebar_label: "BlockChange" 5 | custom_edit_url: null 6 | --- 7 | 8 | [providers/provider](../modules/providers_provider.md).BlockChange 9 | 10 | ## Properties 11 | 12 | ### account\_id 13 | 14 | **account\_id**: `string` 15 | 16 | #### Defined in 17 | 18 | [providers/provider.ts:200](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L200) 19 | 20 | ___ 21 | 22 | ### type 23 | 24 | **type**: `string` 25 | 26 | #### Defined in 27 | 28 | [providers/provider.ts:199](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L199) 29 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/providers_provider.BlockChangeResult.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_provider.BlockChangeResult" 3 | title: "Interface: BlockChangeResult" 4 | sidebar_label: "BlockChangeResult" 5 | custom_edit_url: null 6 | --- 7 | 8 | [providers/provider](../modules/providers_provider.md).BlockChangeResult 9 | 10 | ## Properties 11 | 12 | ### block\_hash 13 | 14 | **block\_hash**: `string` 15 | 16 | #### Defined in 17 | 18 | [providers/provider.ts:204](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L204) 19 | 20 | ___ 21 | 22 | ### changes 23 | 24 | **changes**: [`BlockChange`](providers_provider.BlockChange.md)[] 25 | 26 | #### Defined in 27 | 28 | [providers/provider.ts:205](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L205) 29 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/providers_provider.ChangeResult.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_provider.ChangeResult" 3 | title: "Interface: ChangeResult" 4 | sidebar_label: "ChangeResult" 5 | custom_edit_url: null 6 | --- 7 | 8 | [providers/provider](../modules/providers_provider.md).ChangeResult 9 | 10 | ## Properties 11 | 12 | ### block\_hash 13 | 14 | **block\_hash**: `string` 15 | 16 | #### Defined in 17 | 18 | [providers/provider.ts:209](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L209) 19 | 20 | ___ 21 | 22 | ### changes 23 | 24 | **changes**: `any`[] 25 | 26 | #### Defined in 27 | 28 | [providers/provider.ts:210](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L210) 29 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/providers_provider.ExecutionError.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_provider.ExecutionError" 3 | title: "Interface: ExecutionError" 4 | sidebar_label: "ExecutionError" 5 | custom_edit_url: null 6 | --- 7 | 8 | [providers/provider](../modules/providers_provider.md).ExecutionError 9 | 10 | ## Properties 11 | 12 | ### error\_message 13 | 14 | **error\_message**: `string` 15 | 16 | #### Defined in 17 | 18 | [providers/provider.ts:57](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L57) 19 | 20 | ___ 21 | 22 | ### error\_type 23 | 24 | **error\_type**: `string` 25 | 26 | #### Defined in 27 | 28 | [providers/provider.ts:58](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L58) 29 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/providers_provider.ExecutionOutcomeWithId.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_provider.ExecutionOutcomeWithId" 3 | title: "Interface: ExecutionOutcomeWithId" 4 | sidebar_label: "ExecutionOutcomeWithId" 5 | custom_edit_url: null 6 | --- 7 | 8 | [providers/provider](../modules/providers_provider.md).ExecutionOutcomeWithId 9 | 10 | ## Properties 11 | 12 | ### id 13 | 14 | **id**: `string` 15 | 16 | #### Defined in 17 | 18 | [providers/provider.ts:67](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L67) 19 | 20 | ___ 21 | 22 | ### outcome 23 | 24 | **outcome**: [`ExecutionOutcome`](providers_provider.ExecutionOutcome.md) 25 | 26 | #### Defined in 27 | 28 | [providers/provider.ts:68](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L68) 29 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/providers_provider.FinalExecutionStatus.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_provider.FinalExecutionStatus" 3 | title: "Interface: FinalExecutionStatus" 4 | sidebar_label: "FinalExecutionStatus" 5 | custom_edit_url: null 6 | --- 7 | 8 | [providers/provider](../modules/providers_provider.md).FinalExecutionStatus 9 | 10 | ## Properties 11 | 12 | ### Failure 13 | 14 | `Optional` **Failure**: [`ExecutionError`](providers_provider.ExecutionError.md) 15 | 16 | #### Defined in 17 | 18 | [providers/provider.ts:63](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L63) 19 | 20 | ___ 21 | 22 | ### SuccessValue 23 | 24 | `Optional` **SuccessValue**: `string` 25 | 26 | #### Defined in 27 | 28 | [providers/provider.ts:62](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L62) 29 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/providers_provider.FunctionCallPermissionView.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_provider.FunctionCallPermissionView" 3 | title: "Interface: FunctionCallPermissionView" 4 | sidebar_label: "FunctionCallPermissionView" 5 | custom_edit_url: null 6 | --- 7 | 8 | [providers/provider](../modules/providers_provider.md).FunctionCallPermissionView 9 | 10 | ## Properties 11 | 12 | ### FunctionCall 13 | 14 | **FunctionCall**: `Object` 15 | 16 | #### Type declaration 17 | 18 | | Name | Type | 19 | | :------ | :------ | 20 | | `allowance` | `string` | 21 | | `method_names` | `string`[] | 22 | | `receiver_id` | `string` | 23 | 24 | #### Defined in 25 | 26 | [providers/provider.ts:350](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L350) 27 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/providers_provider.GasPrice.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_provider.GasPrice" 3 | title: "Interface: GasPrice" 4 | sidebar_label: "GasPrice" 5 | custom_edit_url: null 6 | --- 7 | 8 | [providers/provider](../modules/providers_provider.md).GasPrice 9 | 10 | ## Properties 11 | 12 | ### gas\_price 13 | 14 | **gas\_price**: `string` 15 | 16 | #### Defined in 17 | 18 | [providers/provider.ts:307](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L307) 19 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/providers_provider.MerkleNode.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_provider.MerkleNode" 3 | title: "Interface: MerkleNode" 4 | sidebar_label: "MerkleNode" 5 | custom_edit_url: null 6 | --- 7 | 8 | [providers/provider](../modules/providers_provider.md).MerkleNode 9 | 10 | ## Properties 11 | 12 | ### direction 13 | 14 | **direction**: `string` 15 | 16 | #### Defined in 17 | 18 | [providers/provider.ts:263](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L263) 19 | 20 | ___ 21 | 22 | ### hash 23 | 24 | **hash**: `string` 25 | 26 | #### Defined in 27 | 28 | [providers/provider.ts:262](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L262) 29 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/providers_provider.NearProtocolConfig.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_provider.NearProtocolConfig" 3 | title: "Interface: NearProtocolConfig" 4 | sidebar_label: "NearProtocolConfig" 5 | custom_edit_url: null 6 | --- 7 | 8 | [providers/provider](../modules/providers_provider.md).NearProtocolConfig 9 | 10 | ## Properties 11 | 12 | ### runtime\_config 13 | 14 | **runtime\_config**: [`NearProtocolRuntimeConfig`](providers_provider.NearProtocolRuntimeConfig.md) 15 | 16 | #### Defined in 17 | 18 | [providers/provider.ts:237](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L237) 19 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/providers_provider.NearProtocolRuntimeConfig.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_provider.NearProtocolRuntimeConfig" 3 | title: "Interface: NearProtocolRuntimeConfig" 4 | sidebar_label: "NearProtocolRuntimeConfig" 5 | custom_edit_url: null 6 | --- 7 | 8 | [providers/provider](../modules/providers_provider.md).NearProtocolRuntimeConfig 9 | 10 | ## Properties 11 | 12 | ### storage\_amount\_per\_byte 13 | 14 | **storage\_amount\_per\_byte**: `string` 15 | 16 | #### Defined in 17 | 18 | [providers/provider.ts:241](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L241) 19 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/providers_provider.TotalWeight.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_provider.TotalWeight" 3 | title: "Interface: TotalWeight" 4 | sidebar_label: "TotalWeight" 5 | custom_edit_url: null 6 | --- 7 | 8 | [providers/provider](../modules/providers_provider.md).TotalWeight 9 | 10 | ## Properties 11 | 12 | ### num 13 | 14 | **num**: `number` 15 | 16 | #### Defined in 17 | 18 | [providers/provider.ts:93](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L93) 19 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/providers_provider.ViewAccessKeyListRequest.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_provider.ViewAccessKeyListRequest" 3 | title: "Interface: ViewAccessKeyListRequest" 4 | sidebar_label: "ViewAccessKeyListRequest" 5 | custom_edit_url: null 6 | --- 7 | 8 | [providers/provider](../modules/providers_provider.md).ViewAccessKeyListRequest 9 | 10 | ## Properties 11 | 12 | ### account\_id 13 | 14 | **account\_id**: `string` 15 | 16 | #### Defined in 17 | 18 | [providers/provider.ts:398](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L398) 19 | 20 | ___ 21 | 22 | ### request\_type 23 | 24 | **request\_type**: ``"view_access_key_list"`` 25 | 26 | #### Defined in 27 | 28 | [providers/provider.ts:397](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L397) 29 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/providers_provider.ViewAccountRequest.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_provider.ViewAccountRequest" 3 | title: "Interface: ViewAccountRequest" 4 | sidebar_label: "ViewAccountRequest" 5 | custom_edit_url: null 6 | --- 7 | 8 | [providers/provider](../modules/providers_provider.md).ViewAccountRequest 9 | 10 | ## Properties 11 | 12 | ### account\_id 13 | 14 | **account\_id**: `string` 15 | 16 | #### Defined in 17 | 18 | [providers/provider.ts:376](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L376) 19 | 20 | ___ 21 | 22 | ### request\_type 23 | 24 | **request\_type**: ``"view_account"`` 25 | 26 | #### Defined in 27 | 28 | [providers/provider.ts:375](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L375) 29 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/providers_provider.ViewCodeRequest.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_provider.ViewCodeRequest" 3 | title: "Interface: ViewCodeRequest" 4 | sidebar_label: "ViewCodeRequest" 5 | custom_edit_url: null 6 | --- 7 | 8 | [providers/provider](../modules/providers_provider.md).ViewCodeRequest 9 | 10 | ## Properties 11 | 12 | ### account\_id 13 | 14 | **account\_id**: `string` 15 | 16 | #### Defined in 17 | 18 | [providers/provider.ts:381](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L381) 19 | 20 | ___ 21 | 22 | ### request\_type 23 | 24 | **request\_type**: ``"view_code"`` 25 | 26 | #### Defined in 27 | 28 | [providers/provider.ts:380](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/providers/provider.ts#L380) 29 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/utils_key_pair.Signature.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "utils_key_pair.Signature" 3 | title: "Interface: Signature" 4 | sidebar_label: "Signature" 5 | custom_edit_url: null 6 | --- 7 | 8 | [utils/key_pair](../modules/utils_key_pair.md).Signature 9 | 10 | ## Properties 11 | 12 | ### publicKey 13 | 14 | **publicKey**: [`PublicKey`](../classes/utils_key_pair.PublicKey.md) 15 | 16 | #### Defined in 17 | 18 | [utils/key_pair.ts:9](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/utils/key_pair.ts#L9) 19 | 20 | ___ 21 | 22 | ### signature 23 | 24 | **signature**: `Uint8Array` 25 | 26 | #### Defined in 27 | 28 | [utils/key_pair.ts:8](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/utils/key_pair.ts#L8) 29 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/interfaces/validators.ChangedValidatorInfo.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "validators.ChangedValidatorInfo" 3 | title: "Interface: ChangedValidatorInfo" 4 | sidebar_label: "ChangedValidatorInfo" 5 | custom_edit_url: null 6 | --- 7 | 8 | [validators](../modules/validators.md).ChangedValidatorInfo 9 | 10 | ## Properties 11 | 12 | ### current 13 | 14 | **current**: [`CurrentEpochValidatorInfo`](providers_provider.CurrentEpochValidatorInfo.md) 15 | 16 | #### Defined in 17 | 18 | [validators.ts:69](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/validators.ts#L69) 19 | 20 | ___ 21 | 22 | ### next 23 | 24 | **next**: [`NextEpochValidatorInfo`](providers_provider.NextEpochValidatorInfo.md) 25 | 26 | #### Defined in 27 | 28 | [validators.ts:70](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/validators.ts#L70) 29 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/_category_.yml: -------------------------------------------------------------------------------- 1 | label: "Modules" 2 | position: 1 -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/account.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "account" 3 | title: "Module: account" 4 | sidebar_label: "account" 5 | sidebar_position: 0 6 | custom_edit_url: null 7 | --- 8 | 9 | ## Classes 10 | 11 | - [Account](../classes/account.Account.md) 12 | 13 | ## Interfaces 14 | 15 | - [AccountAuthorizedApp](../interfaces/account.AccountAuthorizedApp.md) 16 | - [AccountBalance](../interfaces/account.AccountBalance.md) 17 | - [ChangeFunctionCallOptions](../interfaces/account.ChangeFunctionCallOptions.md) 18 | - [FunctionCallOptions](../interfaces/account.FunctionCallOptions.md) 19 | - [SignAndSendTransactionOptions](../interfaces/account.SignAndSendTransactionOptions.md) 20 | - [ViewFunctionCallOptions](../interfaces/account.ViewFunctionCallOptions.md) 21 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/account_creator.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "account_creator" 3 | title: "Module: account_creator" 4 | sidebar_label: "account_creator" 5 | sidebar_position: 0 6 | custom_edit_url: null 7 | --- 8 | 9 | ## Classes 10 | 11 | - [AccountCreator](../classes/account_creator.AccountCreator.md) 12 | - [LocalAccountCreator](../classes/account_creator.LocalAccountCreator.md) 13 | - [UrlAccountCreator](../classes/account_creator.UrlAccountCreator.md) 14 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/connection.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "connection" 3 | title: "Module: connection" 4 | sidebar_label: "connection" 5 | sidebar_position: 0 6 | custom_edit_url: null 7 | --- 8 | 9 | ## Classes 10 | 11 | - [Connection](../classes/connection.Connection.md) 12 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/constants.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "constants" 3 | title: "Module: constants" 4 | sidebar_label: "constants" 5 | sidebar_position: 0 6 | custom_edit_url: null 7 | --- 8 | 9 | ## Variables 10 | 11 | ### DEFAULT\_FUNCTION\_CALL\_GAS 12 | 13 | `Const` **DEFAULT\_FUNCTION\_CALL\_GAS**: `BN` 14 | 15 | #### Defined in 16 | 17 | [constants.ts:9](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/constants.ts#L9) 18 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/contract.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "contract" 3 | title: "Module: contract" 4 | sidebar_label: "contract" 5 | sidebar_position: 0 6 | custom_edit_url: null 7 | --- 8 | 9 | ## Classes 10 | 11 | - [Contract](../classes/contract.Contract.md) 12 | 13 | ## Interfaces 14 | 15 | - [ContractMethods](../interfaces/contract.ContractMethods.md) 16 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/key_stores_browser_local_storage_key_store.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "key_stores_browser_local_storage_key_store" 3 | title: "Module: key_stores/browser_local_storage_key_store" 4 | sidebar_label: "key_stores/browser_local_storage_key_store" 5 | sidebar_position: 0 6 | custom_edit_url: null 7 | --- 8 | 9 | ## Classes 10 | 11 | - [BrowserLocalStorageKeyStore](../classes/key_stores_browser_local_storage_key_store.BrowserLocalStorageKeyStore.md) 12 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/key_stores_in_memory_key_store.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "key_stores_in_memory_key_store" 3 | title: "Module: key_stores/in_memory_key_store" 4 | sidebar_label: "key_stores/in_memory_key_store" 5 | sidebar_position: 0 6 | custom_edit_url: null 7 | --- 8 | 9 | ## Classes 10 | 11 | - [InMemoryKeyStore](../classes/key_stores_in_memory_key_store.InMemoryKeyStore.md) 12 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/key_stores_keystore.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "key_stores_keystore" 3 | title: "Module: key_stores/keystore" 4 | sidebar_label: "key_stores/keystore" 5 | sidebar_position: 0 6 | custom_edit_url: null 7 | --- 8 | 9 | ## Classes 10 | 11 | - [KeyStore](../classes/key_stores_keystore.KeyStore.md) 12 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/key_stores_merge_key_store.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "key_stores_merge_key_store" 3 | title: "Module: key_stores/merge_key_store" 4 | sidebar_label: "key_stores/merge_key_store" 5 | sidebar_position: 0 6 | custom_edit_url: null 7 | --- 8 | 9 | ## Classes 10 | 11 | - [MergeKeyStore](../classes/key_stores_merge_key_store.MergeKeyStore.md) 12 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/key_stores_unencrypted_file_system_keystore.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "key_stores_unencrypted_file_system_keystore" 3 | title: "Module: key_stores/unencrypted_file_system_keystore" 4 | sidebar_label: "key_stores/unencrypted_file_system_keystore" 5 | sidebar_position: 0 6 | custom_edit_url: null 7 | --- 8 | 9 | ## Classes 10 | 11 | - [UnencryptedFileSystemKeyStore](../classes/key_stores_unencrypted_file_system_keystore.UnencryptedFileSystemKeyStore.md) 12 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/near.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "near" 3 | title: "Module: near" 4 | sidebar_label: "near" 5 | sidebar_position: 0 6 | custom_edit_url: null 7 | --- 8 | 9 | This module contains the main class developers will use to interact with NEAR. 10 | The [Near](../classes/near.Near.md) class is used to interact with [Accounts](../classes/account.Account.md) through the [JsonRpcProvider](../classes/providers_json_rpc_provider.JsonRpcProvider.md). 11 | It is configured via the [NearConfig](../interfaces/near.NearConfig.md). 12 | 13 | **`See`** 14 | 15 | [https://docs.near.org/tools/near-api-js/quick-reference#account](https://docs.near.org/tools/near-api-js/quick-reference#account) 16 | 17 | ## Classes 18 | 19 | - [Near](../classes/near.Near.md) 20 | 21 | ## Interfaces 22 | 23 | - [NearConfig](../interfaces/near.NearConfig.md) 24 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/providers_json_rpc_provider.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "providers_json_rpc_provider" 3 | title: "Module: providers/json-rpc-provider" 4 | sidebar_label: "providers/json-rpc-provider" 5 | sidebar_position: 0 6 | custom_edit_url: null 7 | --- 8 | 9 | **`Description`** 10 | 11 | This module contains the [JsonRpcProvider](../classes/providers_json_rpc_provider.JsonRpcProvider.md) client class 12 | which can be used to interact with the [NEAR RPC API](https://docs.near.org/api/rpc/introduction). 13 | 14 | **`See`** 15 | 16 | [providers](providers_provider.md) for a list of request and response types 17 | 18 | ## Classes 19 | 20 | - [JsonRpcProvider](../classes/providers_json_rpc_provider.JsonRpcProvider.md) 21 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/signer.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "signer" 3 | title: "Module: signer" 4 | sidebar_label: "signer" 5 | sidebar_position: 0 6 | custom_edit_url: null 7 | --- 8 | 9 | ## Classes 10 | 11 | - [InMemorySigner](../classes/signer.InMemorySigner.md) 12 | - [Signer](../classes/signer.Signer.md) 13 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/utils_errors.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "utils_errors" 3 | title: "Module: utils/errors" 4 | sidebar_label: "utils/errors" 5 | sidebar_position: 0 6 | custom_edit_url: null 7 | --- 8 | 9 | ## Classes 10 | 11 | - [ArgumentTypeError](../classes/utils_errors.ArgumentTypeError.md) 12 | - [ErrorContext](../classes/utils_errors.ErrorContext.md) 13 | - [PositionalArgsError](../classes/utils_errors.PositionalArgsError.md) 14 | - [TypedError](../classes/utils_errors.TypedError.md) 15 | 16 | ## Functions 17 | 18 | ### logWarning 19 | 20 | **logWarning**(...`args`): `void` 21 | 22 | #### Parameters 23 | 24 | | Name | Type | 25 | | :------ | :------ | 26 | | `...args` | `any`[] | 27 | 28 | #### Returns 29 | 30 | `void` 31 | 32 | #### Defined in 33 | 34 | [utils/errors.ts:30](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/utils/errors.ts#L30) 35 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/utils_exponential_backoff.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "utils_exponential_backoff" 3 | title: "Module: utils/exponential-backoff" 4 | sidebar_label: "utils/exponential-backoff" 5 | sidebar_position: 0 6 | custom_edit_url: null 7 | --- 8 | 9 | ## Functions 10 | 11 | ### default 12 | 13 | **default**(`startWaitTime`, `retryNumber`, `waitBackoff`, `getResult`): `Promise`<`any`\> 14 | 15 | #### Parameters 16 | 17 | | Name | Type | 18 | | :------ | :------ | 19 | | `startWaitTime` | `any` | 20 | | `retryNumber` | `any` | 21 | | `waitBackoff` | `any` | 22 | | `getResult` | `any` | 23 | 24 | #### Returns 25 | 26 | `Promise`<`any`\> 27 | 28 | #### Defined in 29 | 30 | [utils/exponential-backoff.ts:1](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/utils/exponential-backoff.ts#L1) 31 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/utils_key_pair.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "utils_key_pair" 3 | title: "Module: utils/key_pair" 4 | sidebar_label: "utils/key_pair" 5 | sidebar_position: 0 6 | custom_edit_url: null 7 | --- 8 | 9 | ## Enumerations 10 | 11 | - [KeyType](../enums/utils_key_pair.KeyType.md) 12 | 13 | ## Classes 14 | 15 | - [KeyPair](../classes/utils_key_pair.KeyPair.md) 16 | - [KeyPairEd25519](../classes/utils_key_pair.KeyPairEd25519.md) 17 | - [PublicKey](../classes/utils_key_pair.PublicKey.md) 18 | 19 | ## Interfaces 20 | 21 | - [Signature](../interfaces/utils_key_pair.Signature.md) 22 | 23 | ## Type Aliases 24 | 25 | ### Arrayish 26 | 27 | **Arrayish**: `string` \| `ArrayLike`<`number`\> 28 | 29 | #### Defined in 30 | 31 | [utils/key_pair.ts:5](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/utils/key_pair.ts#L5) 32 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/utils_setup_node_fetch.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "utils_setup_node_fetch" 3 | title: "Module: utils/setup-node-fetch" 4 | sidebar_label: "utils/setup-node-fetch" 5 | sidebar_position: 0 6 | custom_edit_url: null 7 | --- 8 | 9 | ## Functions 10 | 11 | ### default 12 | 13 | **default**(`resource`, `init`): `any` 14 | 15 | #### Parameters 16 | 17 | | Name | Type | 18 | | :------ | :------ | 19 | | `resource` | `any` | 20 | | `init` | `any` | 21 | 22 | #### Returns 23 | 24 | `any` 25 | 26 | #### Defined in 27 | 28 | [utils/setup-node-fetch.ts:16](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/utils/setup-node-fetch.ts#L16) 29 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_docs/version-near-api-js@1.1.0/modules/utils_web.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: "utils_web" 3 | title: "Module: utils/web" 4 | sidebar_label: "utils/web" 5 | sidebar_position: 0 6 | custom_edit_url: null 7 | --- 8 | 9 | ## Interfaces 10 | 11 | - [ConnectionInfo](../interfaces/utils_web.ConnectionInfo.md) 12 | 13 | ## Functions 14 | 15 | ### fetchJson 16 | 17 | **fetchJson**(`connectionInfoOrUrl`, `json?`): `Promise`<`any`\> 18 | 19 | #### Parameters 20 | 21 | | Name | Type | 22 | | :------ | :------ | 23 | | `connectionInfoOrUrl` | `string` \| [`ConnectionInfo`](../interfaces/utils_web.ConnectionInfo.md) | 24 | | `json?` | `string` | 25 | 26 | #### Returns 27 | 28 | `Promise`<`any`\> 29 | 30 | #### Defined in 31 | 32 | [utils/web.ts:20](https://github.com/near/near-api-js/blob/ef6d7fbf/packages/near-api-js/src/utils/web.ts#L20) 33 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_sidebars/version-near-api-js@1.1.0-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultSidebar": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /website/near-api-js_versioned_sidebars/version-v0.0.0-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultSidebar": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /website/near-api-js_versions.json: -------------------------------------------------------------------------------- 1 | [ 2 | "near-api-js@1.1.0", 3 | "__dummy" 4 | ] 5 | -------------------------------------------------------------------------------- /website/near-sdk-js_versioned_docs/version-__dummy/dummy.md: -------------------------------------------------------------------------------- 1 | dummy for near-sdk-js -------------------------------------------------------------------------------- /website/near-sdk-js_versioned_sidebars/version-v0.0.0-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultSidebar": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /website/near-sdk-js_versions.json: -------------------------------------------------------------------------------- 1 | [ 2 | "__dummy" 3 | ] 4 | -------------------------------------------------------------------------------- /website/snippets: -------------------------------------------------------------------------------- 1 | { 2 | "replacements": [ 3 | { 4 | "from": "", 5 | "to": "npm install -g near-cli" 6 | }, 7 | { 8 | "from": "", 9 | "to": "yarn dev" 10 | } 11 | 12 | ] 13 | } -------------------------------------------------------------------------------- /website/src/theme/DocSidebar/Desktop/Content/styles.module.css: -------------------------------------------------------------------------------- 1 | @media (min-width: 997px) { 2 | .menu { 3 | flex-grow: 1; 4 | padding: 0.5rem; 5 | } 6 | @supports (scrollbar-gutter: stable) { 7 | .menu { 8 | padding: 0.5rem 0 0.5rem 0.5rem; 9 | scrollbar-gutter: stable; 10 | } 11 | } 12 | 13 | .menuWithAnnouncementBar { 14 | margin-bottom: var(--docusaurus-announcement-bar-height); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /website/src/theme/Footer/styles.module.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | .footerLogoLink { 9 | opacity: 0.5; 10 | transition: opacity var(--ifm-transition-fast) var(--ifm-transition-timing-default); 11 | } 12 | 13 | .footerLogoLink:hover { 14 | opacity: 1; 15 | } 16 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/ErrorScreen.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | import { ErrorIcon } from './icons'; 4 | 5 | export type ErrorScreenTranslations = Partial<{ 6 | titleText: string; 7 | helpText: string; 8 | }>; 9 | 10 | type ErrorScreenProps = { 11 | translations?: ErrorScreenTranslations; 12 | }; 13 | 14 | export function ErrorScreen({ translations = {} }: ErrorScreenProps) { 15 | const { 16 | titleText = 'Unable to fetch results', 17 | helpText = 'You might want to check your network connection.', 18 | } = translations; 19 | return ( 20 |
21 |
22 | 23 |
24 |

{titleText}

25 |

{helpText}

26 |
27 | ); 28 | } 29 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/Hit.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | import type { InternalDocSearchHit, StoredDocSearchHit } from './types'; 4 | 5 | interface HitProps { 6 | hit: InternalDocSearchHit | StoredDocSearchHit; 7 | children: React.ReactNode; 8 | } 9 | 10 | export function Hit({ hit, children }: HitProps) { 11 | return {children}; 12 | } 13 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/constants.ts: -------------------------------------------------------------------------------- 1 | export const MAX_QUERY_SIZE = 64; 2 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/icons/ControlKeyIcon.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export function ControlKeyIcon() { 4 | return ( 5 | 6 | 13 | 14 | ); 15 | } 16 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/icons/ErrorIcon.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export function ErrorIcon() { 4 | return ( 5 | 15 | 16 | 17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/icons/GoToExternalIcon.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export function GoToExternal() { 4 | return ( 5 | 6 | 11 | 12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/icons/LoadingIcon.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export function LoadingIcon() { 4 | return ( 5 | 6 | 7 | 8 | 9 | 10 | 18 | 19 | 20 | 21 | 22 | ); 23 | } 24 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/icons/NoResultsIcon.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export function NoResultsIcon() { 4 | return ( 5 | 15 | 16 | 17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/icons/RecentIcon.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export function RecentIcon() { 4 | return ( 5 | 6 | 13 | 14 | 15 | 16 | 17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/icons/ResetIcon.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export function ResetIcon() { 4 | return ( 5 | 6 | 14 | 15 | ); 16 | } 17 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/icons/SearchIcon.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export function SearchIcon() { 4 | return ( 5 | 11 | 19 | 20 | ); 21 | } 22 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/icons/SelectIcon.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export function SelectIcon() { 4 | return ( 5 | 11 | 18 | 19 | 20 | 21 | 22 | ); 23 | } 24 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/icons/StarIcon.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export function StarIcon() { 4 | return ( 5 | 6 | 13 | 14 | ); 15 | } 16 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/icons/index.ts: -------------------------------------------------------------------------------- 1 | export * from './GoToExternalIcon'; 2 | export * from './LoadingIcon'; 3 | export * from './RecentIcon'; 4 | export * from './ResetIcon'; 5 | export * from './SearchIcon'; 6 | export * from './SelectIcon'; 7 | export * from './SourceIcon'; 8 | export * from './StarIcon'; 9 | export * from './ErrorIcon'; 10 | export * from './NoResultsIcon'; 11 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DocSearch'; 2 | export * from './DocSearchButton'; 3 | export * from './DocSearchModal'; 4 | export * from './useDocSearchKeyboardEvents'; 5 | export * from './version'; 6 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/types/InternalDocSearchHit.ts: -------------------------------------------------------------------------------- 1 | import type { DocSearchHit } from './DocSearchHit'; 2 | 3 | export type InternalDocSearchHit = DocSearchHit & { 4 | __docsearch_parent: InternalDocSearchHit | null; 5 | }; 6 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/types/StoredDocSearchHit.ts: -------------------------------------------------------------------------------- 1 | import type { DocSearchHit } from './DocSearchHit'; 2 | 3 | export type StoredDocSearchHit = Omit< 4 | DocSearchHit, 5 | '_highlightResult' | '_snippetResult' 6 | >; 7 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/types/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DocSearchHit'; 2 | export * from './InternalDocSearchHit'; 3 | export * from './StoredDocSearchHit'; 4 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/utils/groupBy.ts: -------------------------------------------------------------------------------- 1 | export function groupBy>( 2 | values: TValue[], 3 | predicate: (value: TValue) => string 4 | ): Record { 5 | return values.reduce>((acc, item) => { 6 | const key = predicate(item); 7 | 8 | if (!acc.hasOwnProperty(key)) { 9 | acc[key] = []; 10 | } 11 | 12 | // We limit each section to show 5 hits maximum. 13 | // This acts as a frontend alternative to `distinct`. 14 | if (acc[key].length < 5) { 15 | acc[key].push(item); 16 | } 17 | 18 | return acc; 19 | }, {}); 20 | } 21 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/utils/identity.ts: -------------------------------------------------------------------------------- 1 | export function identity(x: TParam): TParam { 2 | return x; 3 | } 4 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './groupBy'; 2 | export * from './identity'; 3 | export * from './noop'; 4 | export * from './removeHighlightTags'; 5 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/utils/noop.ts: -------------------------------------------------------------------------------- 1 | export function noop(..._args: any[]): void {} 2 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/utils/removeHighlightTags.ts: -------------------------------------------------------------------------------- 1 | import type { DocSearchHit, InternalDocSearchHit } from '../types'; 2 | 3 | const regexHighlightTags = /(|<\/mark>)/g; 4 | const regexHasHighlightTags = RegExp(regexHighlightTags.source); 5 | 6 | export function removeHighlightTags( 7 | hit: DocSearchHit | InternalDocSearchHit 8 | ): string { 9 | const internalDocSearchHit = hit as InternalDocSearchHit; 10 | 11 | if (!internalDocSearchHit.__docsearch_parent && !hit._highlightResult) { 12 | return hit.hierarchy.lvl0; 13 | } 14 | 15 | const { value } = 16 | (internalDocSearchHit.__docsearch_parent 17 | ? internalDocSearchHit.__docsearch_parent?._highlightResult?.hierarchy 18 | ?.lvl0 19 | : hit._highlightResult?.hierarchy?.lvl0) || {}; 20 | 21 | return value && regexHasHighlightTags.test(value) 22 | ? value.replace(regexHighlightTags, '') 23 | : value; 24 | } 25 | -------------------------------------------------------------------------------- /website/src/theme/SearchBar/DocSearch/version.ts: -------------------------------------------------------------------------------- 1 | export const version = '3.2.1'; 2 | -------------------------------------------------------------------------------- /website/static/css/copy-code-button.css: -------------------------------------------------------------------------------- 1 | /* "Copy" code block button */ 2 | pre { 3 | position: relative; 4 | } 5 | 6 | pre .btnIcon { 7 | position: absolute; 8 | top: 4px; 9 | z-index: 2; 10 | cursor: pointer; 11 | border: 1px solid transparent; 12 | padding: 0; 13 | color: #fff; 14 | background-color: transparent; 15 | height: 30px; 16 | transition: all .25s ease-out; 17 | } 18 | 19 | pre .btnIcon:hover { 20 | text-decoration: none; 21 | } 22 | 23 | .btnIcon__body { 24 | align-items: center; 25 | display: flex; 26 | } 27 | 28 | .btnIcon svg { 29 | fill: currentColor; 30 | margin-right: .4em; 31 | } 32 | 33 | .btnIcon__label { 34 | font-size: 11px; 35 | } 36 | 37 | .btnClipboard { 38 | right: 10px; 39 | } 40 | -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_0_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_0_0.eot -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_0_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_0_0.ttf -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_0_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_0_0.woff -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_0_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_0_0.woff2 -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_1_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_1_0.eot -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_1_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_1_0.ttf -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_1_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_1_0.woff -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_1_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_1_0.woff2 -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_2_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_2_0.eot -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_2_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_2_0.ttf -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_2_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_2_0.woff -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_2_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_2_0.woff2 -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_3_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_3_0.eot -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_3_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_3_0.ttf -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_3_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_3_0.woff -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_3_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_3_0.woff2 -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_4_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_4_0.eot -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_4_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_4_0.ttf -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_4_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_4_0.woff -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_4_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_4_0.woff2 -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_5_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_5_0.eot -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_5_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_5_0.ttf -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_5_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_5_0.woff -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_5_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_5_0.woff2 -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_6_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_6_0.eot -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_6_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_6_0.ttf -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_6_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_6_0.woff -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_6_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_6_0.woff2 -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_7_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_7_0.eot -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_7_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_7_0.ttf -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_7_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_7_0.woff -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_7_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_7_0.woff2 -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_8_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_8_0.eot -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_8_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_8_0.ttf -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_8_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_8_0.woff -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_8_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_8_0.woff2 -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_9_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_9_0.eot -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_9_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_9_0.ttf -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_9_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_9_0.woff -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_9_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_9_0.woff2 -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_A_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_A_0.eot -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_A_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_A_0.ttf -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_A_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_A_0.woff -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_A_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_A_0.woff2 -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_B_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_B_0.eot -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_B_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_B_0.ttf -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_B_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_B_0.woff -------------------------------------------------------------------------------- /website/static/css/webfonts/389947_B_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/css/webfonts/389947_B_0.woff2 -------------------------------------------------------------------------------- /website/static/docs/assets/JSONNetworkArch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/JSONNetworkArch.png -------------------------------------------------------------------------------- /website/static/docs/assets/NEAR-Explorer-transactionHash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/NEAR-Explorer-transactionHash.png -------------------------------------------------------------------------------- /website/static/docs/assets/NEAR-Wallet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/NEAR-Wallet.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/accounts-compare-ethereum-v-near.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/accounts-compare-ethereum-v-near.png -------------------------------------------------------------------------------- /website/static/docs/assets/arweave-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/arweave-1.png -------------------------------------------------------------------------------- /website/static/docs/assets/arweave-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/arweave-2.png -------------------------------------------------------------------------------- /website/static/docs/assets/arweave-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/arweave-3.png -------------------------------------------------------------------------------- /website/static/docs/assets/as-getData-gasBurnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/as-getData-gasBurnt.png -------------------------------------------------------------------------------- /website/static/docs/assets/as-setData-gasBurnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/as-setData-gasBurnt.png -------------------------------------------------------------------------------- /website/static/docs/assets/authorize-near-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/authorize-near-cli.png -------------------------------------------------------------------------------- /website/static/docs/assets/concepts/transaction-atomicity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/concepts/transaction-atomicity.png -------------------------------------------------------------------------------- /website/static/docs/assets/concepts/transaction-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/concepts/transaction-structure.png -------------------------------------------------------------------------------- /website/static/docs/assets/create-account/account-funded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/create-account/account-funded.png -------------------------------------------------------------------------------- /website/static/docs/assets/create-account/email-text-recovery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/create-account/email-text-recovery.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/create-account/fund-your-account.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/create-account/fund-your-account.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/create-account/local-storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/create-account/local-storage.png -------------------------------------------------------------------------------- /website/static/docs/assets/create-account/mainnet-create-account.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/create-account/mainnet-create-account.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/create-account/mainnet-success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/create-account/mainnet-success.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/create-account/mainnet-wallet-dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/create-account/mainnet-wallet-dashboard.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/create-account/mainnet-wallet-landing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/create-account/mainnet-wallet-landing.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/create-account/purchase_near.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/create-account/purchase_near.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/create-account/security-method.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/create-account/security-method.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/create-account/seed-phrase.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/create-account/seed-phrase.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/create-account/testnet-create-account.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/create-account/testnet-create-account.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/create-account/testnet-success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/create-account/testnet-success.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/create-account/url-breakdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/create-account/url-breakdown.png -------------------------------------------------------------------------------- /website/static/docs/assets/create-near-app--output-variants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/create-near-app--output-variants.png -------------------------------------------------------------------------------- /website/static/docs/assets/cross-contract-call-jest-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/cross-contract-call-jest-test.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/access-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/access-keys.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/basics-crossword.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/basics-crossword.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/basics-final-frontend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/basics-final-frontend.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/batch-of-actions--dobulyo.near--w_artsu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/batch-of-actions--dobulyo.near--w_artsu.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/boop-base64-encode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/boop-base64-encode.gif -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/chapter-1-crossword-correct.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/chapter-1-crossword-correct.gif -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/chapter-2-crossword-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/chapter-2-crossword-blank.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/chapter-2-explorer-transfer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/chapter-2-explorer-transfer.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/chapter-2-solve.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/chapter-2-solve.gif -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/cli-guess-solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/cli-guess-solution.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/clion-suggestion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/clion-suggestion.gif -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/create-key-carpenter-near--carlcarlkarl.near--CarlCarlKarl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/create-key-carpenter-near--carlcarlkarl.near--CarlCarlKarl.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/create-mainnet-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/create-mainnet-account.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/create-testnet-wallet-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/create-testnet-wallet-account.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/creating account with text--seanpineda.near--_seanpineda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/creating account with text--seanpineda.near--_seanpineda.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/crossword-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/crossword-actions.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/enum-a-d-block--eizaconiendo.near--eiza_coniendo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/enum-a-d-block--eizaconiendo.near--eiza_coniendo.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/erase-recreate-subaccount--3one9.near--3one92.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/erase-recreate-subaccount--3one9.near--3one92.gif -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/erasing-subaccount-chalkboard--iambon.near--JohnreyBona.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/erasing-subaccount-chalkboard--iambon.near--JohnreyBona.mp4 -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/function-call-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/function-call-action.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/guards-contract-permissions--connoisseur_dane.near--connoisseurdane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/guards-contract-permissions--connoisseur_dane.near--connoisseurdane.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/kapun-hashing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/kapun-hashing.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/keys-cartoon-good--alcantara_gabriel.near--Bagriel_5_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/keys-cartoon-good--alcantara_gabriel.near--Bagriel_5_10.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/logging-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/logging-in.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/near-and-react--dakila.near--rodolf_dtbbx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/near-and-react--dakila.near--rodolf_dtbbx.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/paging-through-hashes-swing--pierced_staggg.near--pierced_stag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/paging-through-hashes-swing--pierced_staggg.near--pierced_stag.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/predecessor-signer-current--yasuoarts.near--YasuoArt69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/predecessor-signer-current--yasuoarts.near--YasuoArt69.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/puzzle-frontrun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/puzzle-frontrun.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/puzzle-piggy-bank--r3v.near--rev_rodrigueza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/puzzle-piggy-bank--r3v.near--rev_rodrigueza.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/remove-key-recycle--eerie_ram.near--eerie_ram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/remove-key-recycle--eerie_ram.near--eerie_ram.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/rpc-api-view-state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/rpc-api-view-state.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/rust-good--ksart.near.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/rust-good--ksart.near.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/rust-scary--ksart.near.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/rust-scary--ksart.near.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/safe-with-access-key--soulless.near--ZeroSerotonin__.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/safe-with-access-key--soulless.near--ZeroSerotonin__.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/shuffle-keys.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/shuffle-keys.gif -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/teaching--jeheycell.near--artcultureac.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/teaching--jeheycell.near--artcultureac.jpeg -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/teaching-just-teacher--herogranada.near--GranadaHero.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/teaching-just-teacher--herogranada.near--GranadaHero.jpeg -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/transfer-brand-blue--qiqi04.near--blankworl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/transfer-brand-blue--qiqi04.near--blankworl.png -------------------------------------------------------------------------------- /website/static/docs/assets/crosswords/yoctoNEAR-magnifying--jrbemint.near--JrbeMad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crosswords/yoctoNEAR-magnifying--jrbemint.near--JrbeMad.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/crowdin-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crowdin-list.png -------------------------------------------------------------------------------- /website/static/docs/assets/crowdin-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/crowdin-tasks.png -------------------------------------------------------------------------------- /website/static/docs/assets/data-decision-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/data-decision-tree.png -------------------------------------------------------------------------------- /website/static/docs/assets/default-token-contract-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/default-token-contract-test.png -------------------------------------------------------------------------------- /website/static/docs/assets/develop/develop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/develop/develop.png -------------------------------------------------------------------------------- /website/static/docs/assets/develop/examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/develop/examples.png -------------------------------------------------------------------------------- /website/static/docs/assets/develop/quickstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/develop/quickstart.png -------------------------------------------------------------------------------- /website/static/docs/assets/develop/secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/develop/secure.png -------------------------------------------------------------------------------- /website/static/docs/assets/develop/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/develop/test.png -------------------------------------------------------------------------------- /website/static/docs/assets/develop/tutorials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/develop/tutorials.png -------------------------------------------------------------------------------- /website/static/docs/assets/docker-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/docker-logs.png -------------------------------------------------------------------------------- /website/static/docs/assets/entercode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/entercode.png -------------------------------------------------------------------------------- /website/static/docs/assets/entry-point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/entry-point.gif -------------------------------------------------------------------------------- /website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-1024x1016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-1024x1016.png -------------------------------------------------------------------------------- /website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-150x150.png -------------------------------------------------------------------------------- /website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-300x298.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-300x298.png -------------------------------------------------------------------------------- /website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-768x762.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-768x762.png -------------------------------------------------------------------------------- /website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM.png -------------------------------------------------------------------------------- /website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM-1024x318.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM-1024x318.png -------------------------------------------------------------------------------- /website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM-300x93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM-300x93.png -------------------------------------------------------------------------------- /website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM-768x238.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM-768x238.png -------------------------------------------------------------------------------- /website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM.png -------------------------------------------------------------------------------- /website/static/docs/assets/evm/adoption-artifact-improved-1024x257.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/adoption-artifact-improved-1024x257.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/adoption-artifact-improved-1536x385.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/adoption-artifact-improved-1536x385.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/adoption-artifact-improved-2048x514.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/adoption-artifact-improved-2048x514.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/adoption-artifact-improved-300x75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/adoption-artifact-improved-300x75.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/adoption-artifact-improved-768x193.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/adoption-artifact-improved-768x193.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/dev-tools-improved-1024x324.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/dev-tools-improved-1024x324.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/dev-tools-improved-1536x486.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/dev-tools-improved-1536x486.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/dev-tools-improved-2048x648.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/dev-tools-improved-2048x648.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/dev-tools-improved-300x95.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/dev-tools-improved-300x95.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/dev-tools-improved-768x243.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/dev-tools-improved-768x243.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/dev-tools-improved.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/dev-tools-improved.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/evm-simple-callEvm-collapsed-1024x482.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-1024x482.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/evm-simple-callEvm-collapsed-1536x723.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-1536x723.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/evm-simple-callEvm-collapsed-2048x964.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-2048x964.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/evm-simple-callEvm-collapsed-300x141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-300x141.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/evm-simple-callEvm-collapsed-768x362.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-768x362.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-1024x978.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-1024x978.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-1536x1467.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-1536x1467.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-2048x1956.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-2048x1956.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-300x286.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-300x286.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-768x733.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-768x733.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/josh.betanet-eth-address-1024x442.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/josh.betanet-eth-address-1024x442.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/josh.betanet-eth-address-1536x663.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/josh.betanet-eth-address-1536x663.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/josh.betanet-eth-address-300x130.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/josh.betanet-eth-address-300x130.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/josh.betanet-eth-address-768x332.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/josh.betanet-eth-address-768x332.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/josh.betanet-eth-address.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/josh.betanet-eth-address.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/pet-shop-1024x591.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/pet-shop-1024x591.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/pet-shop-1536x887.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/pet-shop-1536x887.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/pet-shop-2048x1182.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/pet-shop-2048x1182.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/pet-shop-300x173.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/pet-shop-300x173.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/pet-shop-768x443.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/pet-shop-768x443.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/pet-shop-nearprovider-sma11er-1024x527.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/pet-shop-nearprovider-sma11er-1024x527.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/pet-shop-nearprovider-sma11er-300x154.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/pet-shop-nearprovider-sma11er-300x154.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/pet-shop-nearprovider-sma11er-768x395.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/pet-shop-nearprovider-sma11er-768x395.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/evm/pet-shop-nearprovider-sma11er.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/evm/pet-shop-nearprovider-sma11er.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/examples/coin-flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/examples/coin-flip.png -------------------------------------------------------------------------------- /website/static/docs/assets/examples/count-on-near-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/examples/count-on-near-banner.png -------------------------------------------------------------------------------- /website/static/docs/assets/examples/count-on-near.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/examples/count-on-near.png -------------------------------------------------------------------------------- /website/static/docs/assets/examples/donation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/examples/donation.png -------------------------------------------------------------------------------- /website/static/docs/assets/examples/guest-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/examples/guest-book.png -------------------------------------------------------------------------------- /website/static/docs/assets/examples/hello-near-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/examples/hello-near-banner.png -------------------------------------------------------------------------------- /website/static/docs/assets/examples/hello-near.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/examples/hello-near.png -------------------------------------------------------------------------------- /website/static/docs/assets/explorers/dapplooker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/explorers/dapplooker.png -------------------------------------------------------------------------------- /website/static/docs/assets/explorers/near-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/explorers/near-explorer.png -------------------------------------------------------------------------------- /website/static/docs/assets/explorers/nearblocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/explorers/nearblocks.png -------------------------------------------------------------------------------- /website/static/docs/assets/explorers/nearscope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/explorers/nearscope.png -------------------------------------------------------------------------------- /website/static/docs/assets/explorers/stats-gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/explorers/stats-gallery.png -------------------------------------------------------------------------------- /website/static/docs/assets/figment-learn-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/figment-learn-color.png -------------------------------------------------------------------------------- /website/static/docs/assets/figment-learn-compact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/figment-learn-compact.png -------------------------------------------------------------------------------- /website/static/docs/assets/fts/empty-wallet-ft-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/fts/empty-wallet-ft-tab.png -------------------------------------------------------------------------------- /website/static/docs/assets/fts/filled-fts-in-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/fts/filled-fts-in-wallet.png -------------------------------------------------------------------------------- /website/static/docs/assets/fts/storage-standard-meme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/fts/storage-standard-meme.png -------------------------------------------------------------------------------- /website/static/docs/assets/fts/teamtoken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/fts/teamtoken.png -------------------------------------------------------------------------------- /website/static/docs/assets/gitpod-create-fresh-workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/gitpod-create-fresh-workspace.png -------------------------------------------------------------------------------- /website/static/docs/assets/gray_near_logo_bigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/gray_near_logo_bigger.png -------------------------------------------------------------------------------- /website/static/docs/assets/gray_near_logo_md (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/gray_near_logo_md (1).png -------------------------------------------------------------------------------- /website/static/docs/assets/gray_near_logo_md (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/gray_near_logo_md (2).png -------------------------------------------------------------------------------- /website/static/docs/assets/gray_near_logo_md (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/gray_near_logo_md (3).png -------------------------------------------------------------------------------- /website/static/docs/assets/gray_near_logo_md-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/gray_near_logo_md-1.png -------------------------------------------------------------------------------- /website/static/docs/assets/gray_near_logo_md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/gray_near_logo_md.png -------------------------------------------------------------------------------- /website/static/docs/assets/guest-book_as_unit-test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/guest-book_as_unit-test.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/guest-book_fe_build_success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/guest-book_fe_build_success.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/guest-book_fe_deployment_fail_compile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/guest-book_fe_deployment_fail_compile.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/guest-book_fe_form_donation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/guest-book_fe_form_donation.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/guest-book_fe_logged-in.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/guest-book_fe_logged-in.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/guest-book_fe_tests_complete.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/guest-book_fe_tests_complete.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/home/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/home/create.png -------------------------------------------------------------------------------- /website/static/docs/assets/home/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/home/discord.png -------------------------------------------------------------------------------- /website/static/docs/assets/home/discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/home/discover.png -------------------------------------------------------------------------------- /website/static/docs/assets/home/integrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/home/integrate.png -------------------------------------------------------------------------------- /website/static/docs/assets/home/learn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/home/learn.png -------------------------------------------------------------------------------- /website/static/docs/assets/home/nomicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/home/nomicon.png -------------------------------------------------------------------------------- /website/static/docs/assets/home/rpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/home/rpc.png -------------------------------------------------------------------------------- /website/static/docs/assets/home/sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/home/sdk.png -------------------------------------------------------------------------------- /website/static/docs/assets/home/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/home/tools.png -------------------------------------------------------------------------------- /website/static/docs/assets/home/tutorials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/home/tutorials.png -------------------------------------------------------------------------------- /website/static/docs/assets/home/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/home/twitter.png -------------------------------------------------------------------------------- /website/static/docs/assets/home/validate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/home/validate.png -------------------------------------------------------------------------------- /website/static/docs/assets/home/zulip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/home/zulip.png -------------------------------------------------------------------------------- /website/static/docs/assets/icons/GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/icons/GitHub.png -------------------------------------------------------------------------------- /website/static/docs/assets/image (7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/image (7).png -------------------------------------------------------------------------------- /website/static/docs/assets/image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/image-5.png -------------------------------------------------------------------------------- /website/static/docs/assets/image-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/image-shell.png -------------------------------------------------------------------------------- /website/static/docs/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/image.png -------------------------------------------------------------------------------- /website/static/docs/assets/integrate/cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/integrate/cli.png -------------------------------------------------------------------------------- /website/static/docs/assets/integrate/events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/integrate/events.png -------------------------------------------------------------------------------- /website/static/docs/assets/integrate/indexer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/integrate/indexer.png -------------------------------------------------------------------------------- /website/static/docs/assets/integrate/website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/integrate/website.png -------------------------------------------------------------------------------- /website/static/docs/assets/jasmine-tests-for-token-smart-contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/jasmine-tests-for-token-smart-contract.png -------------------------------------------------------------------------------- /website/static/docs/assets/jest-tests-for-calculator-contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/jest-tests-for-calculator-contract.png -------------------------------------------------------------------------------- /website/static/docs/assets/jscolor-picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/jscolor-picker.png -------------------------------------------------------------------------------- /website/static/docs/assets/kurtosis/guest-book-function-access-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/kurtosis/guest-book-function-access-key.png -------------------------------------------------------------------------------- /website/static/docs/assets/kurtosis/local-dapp-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/kurtosis/local-dapp-build.png -------------------------------------------------------------------------------- /website/static/docs/assets/kurtosis/local-explorer-contract-deployed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/kurtosis/local-explorer-contract-deployed.png -------------------------------------------------------------------------------- /website/static/docs/assets/kurtosis/local-explorer-landing-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/kurtosis/local-explorer-landing-page.png -------------------------------------------------------------------------------- /website/static/docs/assets/kurtosis/local-explorer-send-funds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/kurtosis/local-explorer-send-funds.png -------------------------------------------------------------------------------- /website/static/docs/assets/kurtosis/local-explorer-signed-transaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/kurtosis/local-explorer-signed-transaction.png -------------------------------------------------------------------------------- /website/static/docs/assets/kurtosis/local-guest-book-landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/kurtosis/local-guest-book-landing.png -------------------------------------------------------------------------------- /website/static/docs/assets/kurtosis/local-guest-book-signed-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/kurtosis/local-guest-book-signed-message.png -------------------------------------------------------------------------------- /website/static/docs/assets/kurtosis/local-wallet-collectibles-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/kurtosis/local-wallet-collectibles-tab.png -------------------------------------------------------------------------------- /website/static/docs/assets/kurtosis/local-wallet-landing-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/kurtosis/local-wallet-landing-page.png -------------------------------------------------------------------------------- /website/static/docs/assets/kurtosis/localnet-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/kurtosis/localnet-explorer.png -------------------------------------------------------------------------------- /website/static/docs/assets/ledger/ledger-developer-mode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/ledger/ledger-developer-mode.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/ledger/ledger-install-near-app.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/ledger/ledger-install-near-app.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/lockup/lockup_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/lockup/lockup_1.png -------------------------------------------------------------------------------- /website/static/docs/assets/lockup/lockup_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/lockup/lockup_2.png -------------------------------------------------------------------------------- /website/static/docs/assets/lockup/lockup_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/lockup/lockup_3.png -------------------------------------------------------------------------------- /website/static/docs/assets/lockup/lockup_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/lockup/lockup_4.png -------------------------------------------------------------------------------- /website/static/docs/assets/lockup/lockup_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/lockup/lockup_5.png -------------------------------------------------------------------------------- /website/static/docs/assets/near-cli-rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/near-cli-rs.png -------------------------------------------------------------------------------- /website/static/docs/assets/near-login-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/near-login-confirm.png -------------------------------------------------------------------------------- /website/static/docs/assets/near-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/near-login.png -------------------------------------------------------------------------------- /website/static/docs/assets/near-place-console-on-launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/near-place-console-on-launch.png -------------------------------------------------------------------------------- /website/static/docs/assets/near-place-drawing-after-sign-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/near-place-drawing-after-sign-in.png -------------------------------------------------------------------------------- /website/static/docs/assets/near-place-painting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/near-place-painting.png -------------------------------------------------------------------------------- /website/static/docs/assets/near-place-webpage-on-launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/near-place-webpage-on-launch.png -------------------------------------------------------------------------------- /website/static/docs/assets/near-studio-launch-screen-counter-smart-contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/near-studio-launch-screen-counter-smart-contract.png -------------------------------------------------------------------------------- /website/static/docs/assets/near-studio-launch-screen-guest-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/near-studio-launch-screen-guest-book.png -------------------------------------------------------------------------------- /website/static/docs/assets/near-studio-launch-screen-near-wallet-integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/near-studio-launch-screen-near-wallet-integration.png -------------------------------------------------------------------------------- /website/static/docs/assets/near-studio-tests-near-wallet-integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/near-studio-tests-near-wallet-integration.png -------------------------------------------------------------------------------- /website/static/docs/assets/near-terminology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/near-terminology.png -------------------------------------------------------------------------------- /website/static/docs/assets/near_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/near_logo.png -------------------------------------------------------------------------------- /website/static/docs/assets/near_place_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/near_place_screenshot.png -------------------------------------------------------------------------------- /website/static/docs/assets/new-to-near/simple-blockchain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/new-to-near/simple-blockchain.png -------------------------------------------------------------------------------- /website/static/docs/assets/new-to-near/simple-validator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/new-to-near/simple-validator.png -------------------------------------------------------------------------------- /website/static/docs/assets/nfts/IPFS-village-schem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/nfts/IPFS-village-schem.png -------------------------------------------------------------------------------- /website/static/docs/assets/nfts/copy-chat-message-minecraft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/nfts/copy-chat-message-minecraft.png -------------------------------------------------------------------------------- /website/static/docs/assets/nfts/customizing-logic-meme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/nfts/customizing-logic-meme.png -------------------------------------------------------------------------------- /website/static/docs/assets/nfts/empty-nft-in-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/nfts/empty-nft-in-wallet.png -------------------------------------------------------------------------------- /website/static/docs/assets/nfts/explorer-payout-series-owner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/nfts/explorer-payout-series-owner.png -------------------------------------------------------------------------------- /website/static/docs/assets/nfts/filled-nft-in-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/nfts/filled-nft-in-wallet.png -------------------------------------------------------------------------------- /website/static/docs/assets/nfts/final-village-pasting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/nfts/final-village-pasting.png -------------------------------------------------------------------------------- /website/static/docs/assets/nfts/nft-mint-frontend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/nfts/nft-mint-frontend.png -------------------------------------------------------------------------------- /website/static/docs/assets/nfts/nft-storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/nfts/nft-storage.png -------------------------------------------------------------------------------- /website/static/docs/assets/nfts/nft-wallet-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/nfts/nft-wallet-token.png -------------------------------------------------------------------------------- /website/static/docs/assets/nfts/nft-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/nfts/nft-wallet.png -------------------------------------------------------------------------------- /website/static/docs/assets/nfts/pasted-minecraft-house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/nfts/pasted-minecraft-house.png -------------------------------------------------------------------------------- /website/static/docs/assets/nfts/series-wallet-collectibles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/nfts/series-wallet-collectibles.png -------------------------------------------------------------------------------- /website/static/docs/assets/nfts/village-house-minecraft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/nfts/village-house-minecraft.png -------------------------------------------------------------------------------- /website/static/docs/assets/nfts/web3-storage-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/nfts/web3-storage-upload.png -------------------------------------------------------------------------------- /website/static/docs/assets/node/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/node/1.png -------------------------------------------------------------------------------- /website/static/docs/assets/node/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/node/2.png -------------------------------------------------------------------------------- /website/static/docs/assets/node/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/node/3.png -------------------------------------------------------------------------------- /website/static/docs/assets/node/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/node/4.png -------------------------------------------------------------------------------- /website/static/docs/assets/node/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/node/5.png -------------------------------------------------------------------------------- /website/static/docs/assets/node/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/node/download.png -------------------------------------------------------------------------------- /website/static/docs/assets/node/initialize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/node/initialize.png -------------------------------------------------------------------------------- /website/static/docs/assets/node/pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/node/pool.png -------------------------------------------------------------------------------- /website/static/docs/assets/node/rust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/node/rust.png -------------------------------------------------------------------------------- /website/static/docs/assets/oracle-flow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/oracle-flow.gif -------------------------------------------------------------------------------- /website/static/docs/assets/phonerecovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/phonerecovery.png -------------------------------------------------------------------------------- /website/static/docs/assets/postman-setup-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/postman-setup-body.png -------------------------------------------------------------------------------- /website/static/docs/assets/postman-setup-headers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/postman-setup-headers.png -------------------------------------------------------------------------------- /website/static/docs/assets/prepare-your-playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/prepare-your-playground.png -------------------------------------------------------------------------------- /website/static/docs/assets/rust-getData-gasBurnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/rust-getData-gasBurnt.png -------------------------------------------------------------------------------- /website/static/docs/assets/rust-setData-gasBurnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/rust-setData-gasBurnt.png -------------------------------------------------------------------------------- /website/static/docs/assets/rust-testing-iterate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/rust-testing-iterate.png -------------------------------------------------------------------------------- /website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm (1).png -------------------------------------------------------------------------------- /website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm (2).png -------------------------------------------------------------------------------- /website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm-1 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm-1 (1).png -------------------------------------------------------------------------------- /website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm-1 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm-1 (2).png -------------------------------------------------------------------------------- /website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm-1.png -------------------------------------------------------------------------------- /website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm.png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-03-11-21.31.48 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-03-11-21.31.48 (1).png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-03-11-21.31.48 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-03-11-21.31.48 (2).png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-03-11-21.31.48-2 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-03-11-21.31.48-2 (1).png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-03-11-21.31.48-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-03-11-21.31.48-2.png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-03-11-21.31.48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-03-11-21.31.48.png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-03-11-21.35.48 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-03-11-21.35.48 (1).png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-03-11-21.35.48 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-03-11-21.35.48 (2).png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-03-11-21.35.48-1 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-03-11-21.35.48-1 (1).png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-03-11-21.35.48-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-03-11-21.35.48-1.png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-03-11-21.35.48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-03-11-21.35.48.png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-04-19-19.53.36 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-04-19-19.53.36 (1).png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-04-19-19.53.36-1 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-04-19-19.53.36-1 (1).png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-04-19-19.53.36-1 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-04-19-19.53.36-1 (2).png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-04-19-19.53.36-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-04-19-19.53.36-1-2.png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-04-19-19.53.36-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-04-19-19.53.36-1.png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-04-19-19.53.36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-04-19-19.53.36.png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-04-19-20.09.33 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-04-19-20.09.33 (1).png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-04-19-20.09.33 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-04-19-20.09.33 (2).png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-04-19-20.09.33-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-04-19-20.09.33-2.png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-04-19-20.09.33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-04-19-20.09.33.png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-06-04-15.26.08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-06-04-15.26.08.png -------------------------------------------------------------------------------- /website/static/docs/assets/screenshot-2019-07-30-13.23.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/screenshot-2019-07-30-13.23.01.png -------------------------------------------------------------------------------- /website/static/docs/assets/siaskynet-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/siaskynet-1.png -------------------------------------------------------------------------------- /website/static/docs/assets/siaskynet-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/siaskynet-2.png -------------------------------------------------------------------------------- /website/static/docs/assets/spaceship (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/spaceship (1).png -------------------------------------------------------------------------------- /website/static/docs/assets/spaceship (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/spaceship (2).png -------------------------------------------------------------------------------- /website/static/docs/assets/spaceship-2 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/spaceship-2 (1).png -------------------------------------------------------------------------------- /website/static/docs/assets/spaceship-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/spaceship-2.png -------------------------------------------------------------------------------- /website/static/docs/assets/spaceship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/spaceship.png -------------------------------------------------------------------------------- /website/static/docs/assets/token-contract-aspect-game-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/token-contract-aspect-game-test.png -------------------------------------------------------------------------------- /website/static/docs/assets/token-contract-aspect-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/token-contract-aspect-test.png -------------------------------------------------------------------------------- /website/static/docs/assets/update_near-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/update_near-cli.png -------------------------------------------------------------------------------- /website/static/docs/assets/validators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/validators.png -------------------------------------------------------------------------------- /website/static/docs/assets/wallet-selector-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/wallet-selector-preview.png -------------------------------------------------------------------------------- /website/static/docs/assets/wallet-welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/wallet-welcome.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-1.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-10.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-11.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-12.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-13.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-14.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-15.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-16.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-17.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-18.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-19.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-2.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-20.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-21.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-22.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-23.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-24.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-25.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-3.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-4.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-5.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-6.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-7.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-8.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/nfts-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/nfts-9.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3--2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3--2.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-1.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-10.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-11.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-12.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-13.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-14.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-15.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-16.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-17.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-18.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-19.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-2.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-20.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-21.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-22.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-23.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-3.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-4.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-5.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-6.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-7.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-8.png -------------------------------------------------------------------------------- /website/static/docs/assets/web3/web3-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/web3/web3-9.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/aurora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/aurora.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/awesomenear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/awesomenear.jpg -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/blocks.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/contract.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/count-near.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/count-near.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/cross-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/cross-call.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/crossword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/crossword.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/dao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/dao.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/develop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/develop.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/donation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/donation.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/ecosystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/ecosystem.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/examples.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/experiment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/experiment.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/factory.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/frontend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/frontend.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/ft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/ft.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/guest-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/guest-book.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/hello-near.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/hello-near.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/indexers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/indexers.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/key.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/monitor.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/multiple.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/near-api-js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/near-api-js.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/near-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/near-cli.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/near-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/near-logo.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/nft-marketplace-js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/nft-marketplace-js.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/nft-marketplace-rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/nft-marketplace-rs.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/nft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/nft.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/nomicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/nomicon.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/oracle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/oracle.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/protocol.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/quickstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/quickstart.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/rainbow.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/random.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/rpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/rpc.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/smart-contracts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/smart-contracts.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/smartcontract-js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/smartcontract-js.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/smartcontract-rust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/smartcontract-rust.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/smartcontract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/smartcontract.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/test.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/transaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/transaction.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/tutorials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/tutorials.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/update.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/user.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/validate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/validate.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/validation.png -------------------------------------------------------------------------------- /website/static/docs/assets/welcome-pages/valitate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/welcome-pages/valitate.png -------------------------------------------------------------------------------- /website/static/docs/assets/windows-quickedit-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/windows-quickedit-mode.png -------------------------------------------------------------------------------- /website/static/docs/assets/writedownrecovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/assets/writedownrecovery.png -------------------------------------------------------------------------------- /website/static/docs/flow-token-transfer/01-diff-shards-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/flow-token-transfer/01-diff-shards-complete.png -------------------------------------------------------------------------------- /website/static/docs/flow-token-transfer/02-same-shard-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/flow-token-transfer/02-same-shard-complete.png -------------------------------------------------------------------------------- /website/static/docs/flow/01-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/flow/01-timeline.png -------------------------------------------------------------------------------- /website/static/docs/flow/02-tracks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/flow/02-tracks.png -------------------------------------------------------------------------------- /website/static/docs/flow/03-tx-outcome-receipt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/flow/03-tx-outcome-receipt.png -------------------------------------------------------------------------------- /website/static/docs/flow/04-send-nears-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/flow/04-send-nears-flow.png -------------------------------------------------------------------------------- /website/static/docs/intro/blockchain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/intro/blockchain.png -------------------------------------------------------------------------------- /website/static/docs/intro/indexer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/intro/indexer.png -------------------------------------------------------------------------------- /website/static/docs/intro/near-lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/docs/intro/near-lake.png -------------------------------------------------------------------------------- /website/static/img/Icons/icon-arrow-left.svg: -------------------------------------------------------------------------------- 1 | icon-arrow-left -------------------------------------------------------------------------------- /website/static/img/Icons/icon-arrow-up.svg: -------------------------------------------------------------------------------- 1 | icon-arrow-up -------------------------------------------------------------------------------- /website/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/img/favicon.ico -------------------------------------------------------------------------------- /website/static/img/icon-core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/img/icon-core.png -------------------------------------------------------------------------------- /website/static/img/near_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/img/near_logo.ico -------------------------------------------------------------------------------- /website/static/img/near_protocol_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/img/near_protocol_logo.png -------------------------------------------------------------------------------- /website/static/img/typedoc-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniaprotocol/docs/cebe0cb48c2fc5da3f160f3f0eac49ef1f5a1e16/website/static/img/typedoc-icons.png -------------------------------------------------------------------------------- /website/static/js/hotjar.js: -------------------------------------------------------------------------------- 1 | // Hotjar Tracking Code for docs.near.org 2 | (function(h,o,t,j,a,r){ 3 | h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)}; 4 | h._hjSettings={hjid:2540352,hjsv:6}; 5 | a=o.getElementsByTagName('head')[0]; 6 | r=o.createElement('script');r.async=1; 7 | r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv; 8 | a.appendChild(r); 9 | })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv='); 10 | -------------------------------------------------------------------------------- /website/test-links.sh: -------------------------------------------------------------------------------- 1 | set -e 2 | 3 | # build the project 4 | npm install 5 | npm run build -- --locale en 6 | 7 | # serve up files for testing to port 5000 (default) 8 | npx serve build & 9 | SERVE_PID=$! 10 | 11 | # wait til the server is responding 12 | npx wait-on http://localhost:5000/ 13 | 14 | # ignore errors since link check exits with nonzero error if any links break 15 | set +e 16 | 17 | # crawl site and check all links 18 | npx linkinator http://localhost:5000 --skip support.ledger.com,crates.io,near.events 19 | 20 | # record exit status of link check 21 | status=$? 22 | 23 | # cleanup 24 | echo $SERVE_PID 25 | kill -9 $SERVE_PID 26 | 27 | # set exit status to link check's exit status, so script fails correctly on CI 28 | exit $status 29 | -------------------------------------------------------------------------------- /website/tests/testcli.sh: -------------------------------------------------------------------------------- 1 | # make sure that the cli installs correctly 2 | npm install -g near-cli 3 | 4 | NODE_ENV=ci near state test.near 5 | -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "allowSyntheticDefaultImports": true, 4 | "jsx": "react", 5 | "module": "es2015", 6 | "moduleResolution": "node", 7 | "noFallthroughCasesInSwitch": true, 8 | "noImplicitAny": false, 9 | "noImplicitReturns": true, 10 | "noUnusedLocals": true, 11 | "noUnusedParameters": true, 12 | "resolveJsonModule": true, 13 | "skipLibCheck": true, 14 | "strict": true, 15 | "target": "ESNEXT" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | --------------------------------------------------------------------------------