SYMBOL INDEX (1708 symbols across 448 files) FILE: docs-generator/generate-all-docs.js function main (line 5) | async function main() { FILE: docs-generator/generate-docs.js function main (line 17) | async function main() { FILE: docs-generator/generators/generate-function-page.js function getGenericTypeStructure (line 11) | function getGenericTypeStructure(baseTypeName, packageName, sourceFilePa... function extractTypeStructure (line 86) | function extractTypeStructure(typeAlias) { constant PRIMITIVE_TYPES (line 135) | const PRIMITIVE_TYPES = new Set([ function escapeMDXCharacters (line 154) | function escapeMDXCharacters(text) { function extractCoreTypes (line 194) | function extractCoreTypes() { function extractTypeName (line 225) | function extractTypeName(fullType) { function isTypeInTypedefs (line 275) | function isTypeInTypedefs(typeName, coreTypes) { function isNonPrimitiveType (line 298) | function isNonPrimitiveType(typeString) { function extractTypeDefinition (line 398) | function extractTypeDefinition(sourceFile, node) { function findTypeInFile (line 414) | function findTypeInFile(sourceFile, typeName) { function getTypeDefinition (line 428) | function getTypeDefinition(typeName, packageName, sourceFilePath) { function searchTypeInImports (line 506) | function searchTypeInImports(sourceFile, typeName, project) { function resolveImportPath (line 573) | function resolveImportPath(sourceFile, moduleSpecifier, project) { function searchTypeInWorkspacePackages (line 634) | function searchTypeInWorkspacePackages(typeName, project) { function processTypeForDisplay (line 671) | function processTypeForDisplay( function generateFunctionPage (line 819) | function generateFunctionPage(templates, outputDir, packageName, func) { FILE: docs-generator/generators/generate-namespace-page.js constant PRIMITIVE_TYPES (line 8) | const PRIMITIVE_TYPES = new Set([ function escapeMDXCharacters (line 26) | function escapeMDXCharacters(text) { function extractCoreTypes (line 66) | function extractCoreTypes() { function extractTypeName (line 97) | function extractTypeName(fullType) { function isTypeInTypedefs (line 147) | function isTypeInTypedefs(typeName, coreTypes) { function isNonPrimitiveType (line 170) | function isNonPrimitiveType(typeString) { function extractTypeDefinition (line 205) | function extractTypeDefinition(sourceFile, node) { function findTypeInFile (line 221) | function findTypeInFile(sourceFile, typeName) { function getTypeDefinition (line 235) | function getTypeDefinition(typeName, packageName, sourceFilePath) { function processTypeForDisplay (line 299) | function processTypeForDisplay( function processFunction (line 366) | function processFunction(func, packageName, coreTypes) { function truncateDescription (line 412) | function truncateDescription(description, maxLength = 80) { function generateNamespacePage (line 432) | function generateNamespacePage(templates, outputDir, packageName, namesp... FILE: docs-generator/generators/generate-package-page.js function truncateDescription (line 5) | function truncateDescription(description, maxLength = 80) { function getPackageDescription (line 25) | function getPackageDescription(packageName) { function generatePackagePage (line 40) | function generatePackagePage( FILE: docs-generator/generators/generate-root-page.js function getPackageDescription (line 5) | function getPackageDescription(packageName) { function generateRootPage (line 25) | function generateRootPage(templates, packagesDir, currentPackageName) { FILE: docs-generator/generators/generate-types-page.js function decodeHtmlEntities (line 5) | function decodeHtmlEntities(text) { function extractJSDocDescription (line 19) | function extractJSDocDescription(node) { function extractInterfaces (line 53) | function extractInterfaces(sourceFiles) { function extractTypeAliases (line 91) | function extractTypeAliases(sourceFiles) { function extractEnums (line 167) | function extractEnums(sourceFiles) { function generateTypesPage (line 209) | function generateTypesPage(templates, outputDir) { FILE: docs-generator/generators/utils/extract-utils.js function getFirstWord (line 1) | function getFirstWord(packageName) { FILE: docs-generator/generators/utils/generate-page.js function generatePage (line 3) | function generatePage(templates, templateName, outputPath, context) { FILE: docs-generator/generators/utils/parse-config-custom-data.js function parseConfigCustomData (line 3) | function parseConfigCustomData(configPath) { FILE: docs-generator/utils/export-extractor.js function extractExportsFromEntryFile (line 10) | function extractExportsFromEntryFile(sourceFile) { FILE: docs-generator/utils/file-utils.js function discoverWorkspacePackages (line 4) | function discoverWorkspacePackages() { FILE: docs-generator/utils/function-extractor.js function extractFunctionInfo (line 12) | function extractFunctionInfo( function findFunctionInSourceFile (line 614) | function findFunctionInSourceFile(sourceFile, functionName) { function resolveOnFlowPackage (line 660) | function resolveOnFlowPackage(packageName) { function resolveReExportedFunction (line 685) | function resolveReExportedFunction(sourceFile, exportName, moduleSpecifi... FILE: docs-generator/utils/jsdoc-parser.js function parseJsDoc (line 1) | function parseJsDoc(node) { FILE: docs-generator/utils/namespace-utils.js function extractNamespaceFunctions (line 5) | function extractNamespaceFunctions( FILE: docs-generator/utils/type-utils.js function cleanupTypeText (line 1) | function cleanupTypeText(typeText) { function stripGenericParams (line 22) | function stripGenericParams(typeText) { function toCamelCase (line 30) | function toCamelCase(typeName) { function escapeParameterNameForMDX (line 37) | function escapeParameterNameForMDX(paramName) { function escapeTextForMDX (line 43) | function escapeTextForMDX(text) { FILE: docs-generator/utils/typescript-formatter.js function formatTypeScript (line 1) | function formatTypeScript(typeText) { FILE: packages/config/src/config.ts constant NAME (line 16) | const NAME = "config" constant PUT (line 17) | const PUT = "PUT_CONFIG" constant GET (line 18) | const GET = "GET_CONFIG" constant GET_ALL (line 19) | const GET_ALL = "GET_ALL_CONFIG" constant UPDATE (line 20) | const UPDATE = "UPDATE_CONFIG" constant DELETE (line 21) | const DELETE = "DELETE_CONFIG" constant CLEAR (line 22) | const CLEAR = "CLEAR_CONFIG" constant WHERE (line 23) | const WHERE = "WHERE_CONFIG" constant UPDATED (line 24) | const UPDATED = "CONFIG/UPDATED" constant HANDLERS (line 28) | const HANDLERS: ActorHandlers = { function put (line 77) | function put(key: string, value: T) { function get (line 88) | function get(key: string, fallback?: T): Promise { function first (line 98) | async function first(wants: string[] = [], fallback: T): Promise { function all (line 110) | function all(): Promise> { function update (line 120) | function update(key: string, fn: (x: T) => T = identity) { function _delete (line 130) | function _delete(key: string) { function where (line 140) | function where(pattern: RegExp): Promise> { function subscribe (line 149) | function subscribe( function clearConfig (line 161) | async function clearConfig(): Promise { function resetConfig (line 170) | async function resetConfig(oldConfig: Record) { function load (line 181) | async function load( function config (line 261) | function config(values?: Record) { function overload (line 300) | async function overload( FILE: packages/config/src/utils/utils.ts type ForkNetworkConfig (line 5) | interface ForkNetworkConfig { type NetworkConfig (line 13) | type NetworkConfig = string | ForkNetworkConfig type FlowJson (line 15) | interface FlowJson { FILE: packages/demo/src/app.tsx function AppContent (line 9) | function AppContent() { function App (line 180) | function App() { FILE: packages/demo/src/components/advanced-cards/dark-mode-card.tsx constant DARK_MODE_CODE (line 6) | const DARK_MODE_CODE = `import { FlowProvider, useDarkMode } from "@onfl... function DarkModeCard (line 33) | function DarkModeCard() { FILE: packages/demo/src/components/advanced-cards/theming-card.tsx constant THEMING_CODE (line 8) | const THEMING_CODE = `import { FlowProvider } from "@onflow/react-sdk" function ThemingCard (line 37) | function ThemingCard() { FILE: packages/demo/src/components/component-cards/connect-card.tsx constant IMPLEMENTATION_CODE (line 8) | const IMPLEMENTATION_CODE = `import { Connect } from "@onflow/react-sdk" constant PROPS (line 31) | const PROPS: PropDefinition[] = [ function ConnectCard (line 83) | function ConnectCard() { FILE: packages/demo/src/components/component-cards/demo-nft-card.tsx constant IMPLEMENTATION_CODE (line 8) | const IMPLEMENTATION_CODE = `import { NftCard } from "@onflow/react-sdk" constant PROPS (line 40) | const PROPS: PropDefinition[] = [ function DemoNftCard (line 96) | function DemoNftCard() { FILE: packages/demo/src/components/component-cards/profile-card.tsx constant IMPLEMENTATION_CODE (line 8) | const IMPLEMENTATION_CODE = `import { Profile } from "@onflow/react-sdk" constant PROPS (line 37) | const PROPS: PropDefinition[] = [ function ProfileCard (line 80) | function ProfileCard() { FILE: packages/demo/src/components/component-cards/scheduled-transaction-list-demo.tsx constant IMPLEMENTATION_CODE (line 12) | const IMPLEMENTATION_CODE = `import { ScheduledTransactionList, useFlowC... constant PROPS (line 28) | const PROPS: PropDefinition[] = [ function ScheduledTransactionListDemo (line 63) | function ScheduledTransactionListDemo() { FILE: packages/demo/src/components/component-cards/transaction-button-card.tsx constant IMPLEMENTATION_CODE (line 7) | const IMPLEMENTATION_CODE = `import { TransactionButton } from "@onflow/... constant PROPS (line 26) | const PROPS: PropDefinition[] = [ function TransactionButtonCard (line 63) | function TransactionButtonCard() { FILE: packages/demo/src/components/component-cards/transaction-dialog-card.tsx constant IMPLEMENTATION_CODE (line 7) | const IMPLEMENTATION_CODE = `import { TransactionDialog } from "@onflow/... constant PROPS (line 11) | const PROPS: PropDefinition[] = [ function TransactionDialogCard (line 71) | function TransactionDialogCard() { FILE: packages/demo/src/components/component-cards/transaction-link-card.tsx constant IMPLEMENTATION_CODE (line 7) | const IMPLEMENTATION_CODE = `import { TransactionLink } from "@onflow/re... constant PROPS (line 11) | const PROPS: PropDefinition[] = [ function TransactionLinkCard (line 27) | function TransactionLinkCard() { FILE: packages/demo/src/components/content-section.tsx function ContentSection (line 39) | function ContentSection() { FILE: packages/demo/src/components/content-sidebar.tsx type SidebarItem (line 4) | interface SidebarItem { type ContentSidebarProps (line 183) | interface ContentSidebarProps { function ContentSidebar (line 188) | function ContentSidebar({darkMode, onItemClick}: ContentSidebarProps) { FILE: packages/demo/src/components/flow-provider-wrapper.tsx type DarkModeContextType (line 6) | interface DarkModeContextType { type NetworkSwitchContextType (line 12) | interface NetworkSwitchContextType { type FlowConfig (line 19) | interface FlowConfig { type DemoFlowNetwork (line 53) | type DemoFlowNetwork = "emulator" | "testnet" | "mainnet" function NetworkSwitchProvider (line 81) | function NetworkSwitchProvider({children}: {children: React.ReactNode}) { function FlowProviderInner (line 135) | function FlowProviderInner({ function FlowProviderWrapper (line 164) | function FlowProviderWrapper({ FILE: packages/demo/src/components/footer.tsx function Footer (line 4) | function Footer() { FILE: packages/demo/src/components/header.tsx type DemoFlowNetwork (line 6) | type DemoFlowNetwork = "emulator" | "testnet" | "mainnet" type HeaderProps (line 8) | interface HeaderProps { function Header (line 13) | function Header({ FILE: packages/demo/src/components/hook-cards/use-cross-vm-bridge-nft-from-evm-card.tsx constant IMPLEMENTATION_CODE (line 9) | const IMPLEMENTATION_CODE = `import { useCrossVmBridgeNftFromEvm } from ... function UseCrossVmBridgeNftFromEvmCard (line 23) | function UseCrossVmBridgeNftFromEvmCard() { FILE: packages/demo/src/components/hook-cards/use-cross-vm-bridge-nft-to-evm-card.tsx constant IMPLEMENTATION_CODE (line 9) | const IMPLEMENTATION_CODE = `import { useCrossVmBridgeNftToEvm } from "@... function UseCrossVmBridgeNftToEvmCard (line 24) | function UseCrossVmBridgeNftToEvmCard() { FILE: packages/demo/src/components/hook-cards/use-cross-vm-bridge-token-from-evm-card.tsx constant IMPLEMENTATION_CODE (line 9) | const IMPLEMENTATION_CODE = `import { useCrossVmBridgeTokenFromEvm } fro... function UseCrossVmBridgeTokenFromEvmCard (line 23) | function UseCrossVmBridgeTokenFromEvmCard() { FILE: packages/demo/src/components/hook-cards/use-cross-vm-bridge-token-to-evm-card.tsx constant IMPLEMENTATION_CODE (line 9) | const IMPLEMENTATION_CODE = `import { useCrossVmBridgeTokenToEvm } from ... function UseCrossVmBridgeTokenToEvmCard (line 24) | function UseCrossVmBridgeTokenToEvmCard() { FILE: packages/demo/src/components/hook-cards/use-flow-account-card.tsx constant IMPLEMENTATION_CODE (line 8) | const IMPLEMENTATION_CODE = `import { useFlowAccount } from "@onflow/rea... function UseFlowAccountCard (line 20) | function UseFlowAccountCard() { FILE: packages/demo/src/components/hook-cards/use-flow-block-card.tsx constant IMPLEMENTATION_CODE (line 8) | const IMPLEMENTATION_CODE = `import { useFlowBlock } from "@onflow/react... function UseFlowBlockCard (line 19) | function UseFlowBlockCard() { FILE: packages/demo/src/components/hook-cards/use-flow-chain-id-card.tsx constant IMPLEMENTATION_CODE (line 13) | const IMPLEMENTATION_CODE = `import { useFlowChainId } from "@onflow/rea... function UseFlowChainIdCard (line 20) | function UseFlowChainIdCard() { FILE: packages/demo/src/components/hook-cards/use-flow-config-card.tsx constant IMPLEMENTATION_CODE (line 7) | const IMPLEMENTATION_CODE = `import { useFlowConfig } from "@onflow/reac... function UseFlowConfigCard (line 11) | function UseFlowConfigCard() { FILE: packages/demo/src/components/hook-cards/use-flow-current-user-card.tsx constant IMPLEMENTATION_CODE (line 7) | const IMPLEMENTATION_CODE = `import { useFlowCurrentUser } from "@onflow... function UseFlowCurrentUserCard (line 11) | function UseFlowCurrentUserCard() { FILE: packages/demo/src/components/hook-cards/use-flow-events-card.tsx constant IMPLEMENTATION_CODE (line 10) | const IMPLEMENTATION_CODE = `import { useFlowEvents } from "@onflow/reac... function UseFlowEventsCard (line 23) | function UseFlowEventsCard() { FILE: packages/demo/src/components/hook-cards/use-flow-mutate-card.tsx constant IMPLEMENTATION_CODE (line 8) | const IMPLEMENTATION_CODE = `import { useFlowMutate } from "@onflow/reac... function UseFlowMutateCard (line 21) | function UseFlowMutateCard() { FILE: packages/demo/src/components/hook-cards/use-flow-nft-metadata-card.tsx constant IMPLEMENTATION_CODE (line 8) | const IMPLEMENTATION_CODE = `import { useFlowNftMetadata } from "@onflow... function UseFlowNftMetadataCard (line 22) | function UseFlowNftMetadataCard() { FILE: packages/demo/src/components/hook-cards/use-flow-query-card.tsx constant IMPLEMENTATION_CODE (line 14) | const IMPLEMENTATION_CODE = `import { useFlowQuery } from "@onflow/react... function UseFlowQueryCard (line 30) | function UseFlowQueryCard() { FILE: packages/demo/src/components/hook-cards/use-flow-query-raw-card.tsx constant IMPLEMENTATION_CODE (line 15) | const IMPLEMENTATION_CODE = `import { useFlowQueryRaw } from "@onflow/re... function UseFlowQueryRawCard (line 31) | function UseFlowQueryRawCard() { FILE: packages/demo/src/components/hook-cards/use-flow-revertible-random-card.tsx constant IMPLEMENTATION_CODE (line 7) | const IMPLEMENTATION_CODE = `import { useFlowRevertibleRandom } from "@o... function UseFlowRevertibleRandomCard (line 18) | function UseFlowRevertibleRandomCard() { FILE: packages/demo/src/components/hook-cards/use-flow-scheduled-transaction-card.tsx constant IMPLEMENTATION_CODE (line 16) | const IMPLEMENTATION_CODE = `import { constant PRIORITY_LABELS (line 43) | const PRIORITY_LABELS: Record = { constant STATUS_LABELS (line 49) | const STATUS_LABELS: Record = { function UseFlowScheduledTransactionCard (line 57) | function UseFlowScheduledTransactionCard() { FILE: packages/demo/src/components/hook-cards/use-flow-transaction-status-card.tsx constant IMPLEMENTATION_CODE (line 8) | const IMPLEMENTATION_CODE = `import { useFlowTransactionStatus } from "@... function useSafeFlowTransactionStatus (line 18) | function useSafeFlowTransactionStatus(id?: string) { function UseFlowTransactionStatusCard (line 78) | function UseFlowTransactionStatusCard() { FILE: packages/demo/src/components/setup-cards/installation-card.tsx function InstallationCard (line 8) | function InstallationCard() { FILE: packages/demo/src/components/starter-banner.tsx function StarterBanner (line 1) | function StarterBanner() { FILE: packages/demo/src/components/ui/code-editor.tsx type CodeEditorProps (line 6) | interface CodeEditorProps { function CodeEditor (line 15) | function CodeEditor({ FILE: packages/demo/src/components/ui/code-viewer.tsx type CodeViewerProps (line 6) | interface CodeViewerProps { function CodeViewer (line 12) | function CodeViewer({ FILE: packages/demo/src/components/ui/demo-card.tsx type PropDefinition (line 7) | interface PropDefinition { type DemoCardProps (line 15) | interface DemoCardProps { FILE: packages/demo/src/components/ui/error-boundary.tsx type Props (line 3) | interface Props { type State (line 8) | interface State { class ErrorBoundary (line 13) | class ErrorBoundary extends Component { method constructor (line 14) | constructor(props: Props) { method getDerivedStateFromError (line 19) | static getDerivedStateFromError(error: Error): State { method componentDidCatch (line 23) | componentDidCatch(error: Error, errorInfo: ErrorInfo) { method render (line 27) | render() { FILE: packages/demo/src/components/ui/inline-code.tsx type InlineCodeProps (line 5) | interface InlineCodeProps { function InlineCode (line 11) | function InlineCode({ FILE: packages/demo/src/components/ui/json-viewer.tsx type JsonViewerProps (line 3) | interface JsonViewerProps { function JsonViewer (line 10) | function JsonViewer({ FILE: packages/demo/src/components/ui/loading-spinner.tsx type LoadingSpinnerProps (line 4) | interface LoadingSpinnerProps { type LoadingStateProps (line 32) | interface LoadingStateProps { FILE: packages/demo/src/components/ui/plus-grid.tsx type PlusGridProps (line 3) | interface PlusGridProps { type PlusGridRowProps (line 8) | interface PlusGridRowProps { type PlusGridIconProps (line 15) | interface PlusGridIconProps { function PlusGrid (line 20) | function PlusGrid({className = "", children}: PlusGridProps) { function PlusGridRow (line 24) | function PlusGridRow({ function PlusGridItem (line 63) | function PlusGridItem({className = "", children}: PlusGridProps) { function PlusGridIcon (line 84) | function PlusGridIcon({className = "", placement}: PlusGridIconProps) { FILE: packages/demo/src/components/ui/props-viewer.tsx type PropsViewerProps (line 4) | interface PropsViewerProps { function PropsViewer (line 8) | function PropsViewer({props}: PropsViewerProps) { FILE: packages/demo/src/components/ui/results-section.tsx type ResultsSectionProps (line 3) | interface ResultsSectionProps { function ResultsSection (line 10) | function ResultsSection({ FILE: packages/demo/src/constants.ts constant ACCESS_NODE_URLS (line 3) | const ACCESS_NODE_URLS: Record = { constant BLOCK_EXPLORER_URLS (line 10) | const BLOCK_EXPLORER_URLS: Record = { constant CONTRACT_ADDRESSES (line 17) | const CONTRACT_ADDRESSES: Record> = { constant DEMO_ADDRESS_TESTNET (line 75) | const DEMO_ADDRESS_TESTNET = "0x012e4d204a60ac6f" FILE: packages/demo/src/utils/chain-helpers.ts type FlowChainId (line 1) | type FlowChainId = "mainnet" | "testnet" | "emulator" | "local" type FlowNetworkParametersChainId (line 2) | type FlowNetworkParametersChainId = type FlowEVMChainId (line 7) | type FlowEVMChainId = 747 | 545 function normalizeChainId (line 9) | function normalizeChainId(chainId: string): FlowChainId | "unknown" { function getNetworkName (line 26) | function getNetworkName(chainId: string): string { function getEVMChainId (line 40) | function getEVMChainId(chainId: string): FlowEVMChainId | null { function isProductionNetwork (line 54) | function isProductionNetwork(chainId: string): boolean { function isDevelopmentNetwork (line 58) | function isDevelopmentNetwork(chainId: string): boolean { FILE: packages/fcl-bundle/src/build/build-watch.js function handleWatcherEvent (line 14) | function handleWatcherEvent(event) { function getWatcherOptions (line 30) | function getWatcherOptions(build, package) { FILE: packages/fcl-bundle/src/build/build.js function buildModule (line 12) | async function buildModule(build, package) { function generateOutput (line 30) | async function generateOutput(bundle, outputOptions) { FILE: packages/fcl-bundle/src/build/get-input-options.js constant SUPPRESSED_WARNING_CODES (line 19) | const SUPPRESSED_WARNING_CODES = [ FILE: packages/fcl-bundle/src/build/watcher-pool.js class WatcherPool (line 4) | class WatcherPool extends EventEmitter { method constructor (line 5) | constructor(watcherOptionsList) { method addWatcher (line 16) | addWatcher(watcherOptions) { class EventBuffer (line 45) | class EventBuffer { method get (line 48) | get(watcher) { method put (line 52) | put(watcher, event) { method clear (line 59) | clear() { method size (line 63) | get size() { FILE: packages/fcl-bundle/src/package-config.js function determineBuildPaths (line 6) | function determineBuildPaths(package, outputs, entryName) { FILE: packages/fcl-bundle/src/plugins/banner.js method outputOptions (line 4) | outputOptions(options) { FILE: packages/fcl-bundle/src/plugins/preserve-dynamic-imports.js method renderDynamicImport (line 4) | renderDynamicImport() { FILE: packages/fcl-bundle/src/util.js function isArray (line 1) | function isArray(obj) { function isObject (line 5) | function isObject(obj) { function isString (line 9) | function isString(obj) { function getPackageRoot (line 14) | function getPackageRoot() { FILE: packages/fcl-core/src/VERSION.ts constant VERSION (line 4) | const VERSION: string = FILE: packages/fcl-core/src/app-utils/verify-signatures.ts type AccountProofData (line 11) | interface AccountProofData { type VerifySignaturesScriptOptions (line 17) | interface VerifySignaturesScriptOptions { type ValidateArgsInput (line 21) | interface ValidateArgsInput { constant ACCOUNT_PROOF (line 30) | const ACCOUNT_PROOF = "ACCOUNT_PROOF" constant USER_SIGNATURE (line 31) | const USER_SIGNATURE = "USER_SIGNATURE" function createVerifyAccountProof (line 170) | function createVerifyAccountProof( function createVerifyUserSignatures (line 241) | function createVerifyUserSignatures( FILE: packages/fcl-core/src/client.ts type FlowClientCoreConfig (line 14) | interface FlowClientCoreConfig { function createFlowClientCore (line 56) | function createFlowClientCore(params: FlowClientCoreConfig) { type FlowClientCore (line 90) | type FlowClientCore = ReturnType FILE: packages/fcl-core/src/context/global.ts function createPartialGlobalFCLContext (line 25) | function createPartialGlobalFCLContext(): Pick< FILE: packages/fcl-core/src/context/index.ts type FCLConfig (line 6) | interface FCLConfig { type ConfigService (line 34) | interface ConfigService { type FCLContext (line 53) | interface FCLContext { function createFCLContext (line 66) | function createFCLContext(config: FCLConfig): FCLContext { function createConfigService (line 115) | function createConfigService(config: FCLConfig): ConfigService { FILE: packages/fcl-core/src/current-user/build-user.ts type UserData (line 10) | interface UserData { function deriveCompositeId (line 20) | function deriveCompositeId(authn: Service): string { function normalizeData (line 29) | function normalizeData(data: UserData): UserData { function buildUser (line 54) | async function buildUser(data: UserData): Promise { FILE: packages/fcl-core/src/current-user/exec-service/index.ts type ExecStrategyParams (line 14) | interface ExecStrategyParams { type ExecServiceParams (line 24) | interface ExecServiceParams { type StrategyResponse (line 35) | interface StrategyResponse { type ExecConfig (line 43) | interface ExecConfig { type StrategyFunction (line 56) | type StrategyFunction = ( function execService (line 108) | async function execService( FILE: packages/fcl-core/src/current-user/exec-service/strategies/http-post.ts type ExecHttpPostParams (line 9) | interface ExecHttpPostParams { type ExecLocalFunction (line 19) | type ExecLocalFunction = ( FILE: packages/fcl-core/src/current-user/exec-service/strategies/utils/buildMessageHandler.ts type BuildMessageHandlerParams (line 1) | interface BuildMessageHandlerParams { constant CLOSE_EVENT (line 23) | const CLOSE_EVENT = "FCL:VIEW:CLOSE" constant READY_EVENT (line 24) | const READY_EVENT = "FCL:VIEW:READY" constant RESPONSE_EVENT (line 25) | const RESPONSE_EVENT = "FCL:VIEW:RESPONSE" constant CUSTOM_RPC (line 26) | const CUSTOM_RPC = "FCL:VIEW:CUSTOM_RPC" constant IGNORE (line 30) | const IGNORE = new Set([ FILE: packages/fcl-core/src/current-user/exec-service/strategies/utils/fetch-service.ts type FetchServiceOptions (line 4) | interface FetchServiceOptions { function fetchService (line 27) | function fetchService( FILE: packages/fcl-core/src/current-user/exec-service/strategies/utils/poll.ts type ServiceMethodOptions (line 6) | interface ServiceMethodOptions { constant OPTIONS (line 11) | const OPTIONS: ServiceMethodOptions = { function poll (line 46) | async function poll( FILE: packages/fcl-core/src/current-user/exec-service/strategies/utils/service-endpoint.ts function serviceEndpoint (line 25) | function serviceEndpoint(service: Service): URL { FILE: packages/fcl-core/src/current-user/exec-service/wc-check.ts constant FCL_WC_SERVICE_METHOD (line 4) | const FCL_WC_SERVICE_METHOD = "WC/RPC" function checkWalletConnectEnabled (line 28) | function checkWalletConnectEnabled() { FILE: packages/fcl-core/src/current-user/fetch-services.ts function fetchServices (line 20) | async function fetchServices( FILE: packages/fcl-core/src/current-user/index.ts type CurrentUserConfig (line 33) | interface CurrentUserConfig { type CurrentUserContext (line 41) | interface CurrentUserContext extends Pick { type CurrentUserServiceApi (line 50) | interface CurrentUserServiceApi { type CurrentUserService (line 60) | interface CurrentUserService extends CurrentUserServiceApi { type AccountProofData (line 64) | interface AccountProofData { type AuthenticationOptions (line 70) | interface AuthenticationOptions { type MakeConfigOptions (line 76) | interface MakeConfigOptions { constant NAME (line 99) | const NAME = "CURRENT_USER" constant UPDATED (line 100) | const UPDATED = "CURRENT_USER/UPDATED" constant SNAPSHOT (line 101) | const SNAPSHOT = "SNAPSHOT" constant SET_CURRENT_USER (line 102) | const SET_CURRENT_USER = "SET_CURRENT_USER" constant DEL_CURRENT_USER (line 103) | const DEL_CURRENT_USER = "DEL_CURRENT_USER" constant DATA (line 105) | const DATA = `{ function notExpired (line 190) | function notExpired(user: any): boolean { function getAccountProofData (line 198) | async function getAccountProofData( function createUnauthenticate (line 388) | function createUnauthenticate(context: CurrentUserContext) { method signingFunction (line 437) | signingFunction(signable: Signable) { method resolve (line 473) | async resolve(account: Account, preSignable: Signable) { function createSubscribe (line 525) | function createSubscribe(context: CurrentUserContext) { function createSnapshot (line 579) | function createSnapshot( FILE: packages/fcl-core/src/current-user/merge-services.ts function mergeServices (line 23) | function mergeServices( FILE: packages/fcl-core/src/current-user/service-of-type.ts function serviceOfType (line 22) | function serviceOfType( FILE: packages/fcl-core/src/current-user/url-from-service.ts function urlFromService (line 26) | function urlFromService( FILE: packages/fcl-core/src/default-config.ts function configLens (line 21) | async function configLens( FILE: packages/fcl-core/src/discovery/services.ts type GetServicesParams (line 10) | interface GetServicesParams { type DiscoveryRequestBody (line 15) | interface DiscoveryRequestBody { function getServices (line 42) | async function getServices({ FILE: packages/fcl-core/src/discovery/services/authn.ts constant SERVICE_ACTOR_KEYS (line 18) | const SERVICE_ACTOR_KEYS = { type ServiceData (line 26) | interface ServiceData { type SubscriptionCallback (line 30) | type SubscriptionCallback = ( type Authn (line 35) | interface Authn { function createHandlers (line 76) | function createHandlers(context: Pick) { function createAuthn (line 165) | function createAuthn(context: Pick): Authn { FILE: packages/fcl-core/src/discovery/utils.ts type DiscoveryService (line 7) | interface DiscoveryService extends Service { function getDiscoveryService (line 68) | async function getDiscoveryService( FILE: packages/fcl-core/src/document/document.ts type DocumentResolverParams (line 5) | interface DocumentResolverParams { type RetrieveParams (line 9) | interface RetrieveParams { function httpDocumentResolver (line 13) | async function httpDocumentResolver({ constant DOCUMENT_RESOLVERS (line 33) | const DOCUMENT_RESOLVERS: Map = new... function retrieve (line 55) | async function retrieve( FILE: packages/fcl-core/src/events/index.ts constant FLOW_EMULATOR (line 8) | const FLOW_EMULATOR = "local" function createEvents (line 10) | function createEvents(context: Pick) { FILE: packages/fcl-core/src/events/legacy-events.ts type SubscribeObject (line 14) | interface SubscribeObject { constant RATE (line 25) | const RATE: number = 10000 constant UPDATED (line 26) | const UPDATED: string = "UPDATED" constant TICK (line 27) | const TICK: string = "TICK" constant HIGH_WATER_MARK (line 28) | const HIGH_WATER_MARK: string = "hwm" function createHandlers (line 40) | function createHandlers( function createLegacyEvents (line 92) | function createLegacyEvents( FILE: packages/fcl-core/src/exec/args.ts type ArgFn (line 4) | type ArgFn = typeof arg type Types (line 5) | type Types = typeof t type ArgsFn (line 14) | type ArgsFn = (arg: ArgFn, t: Types) => any[] FILE: packages/fcl-core/src/exec/mutate.ts type MutateOptions (line 12) | interface MutateOptions { FILE: packages/fcl-core/src/exec/query-raw.ts type QueryOptions (line 9) | interface QueryOptions { function createQueryRaw (line 17) | function createQueryRaw(context: Pick) { FILE: packages/fcl-core/src/exec/query.ts function createQuery (line 5) | function createQuery(context: Pick) { FILE: packages/fcl-core/src/exec/utils/normalize-args.ts function normalizeArgs (line 23) | function normalizeArgs(ax: ArgsFn | any[] | undefined): any[] { FILE: packages/fcl-core/src/exec/utils/pre.ts type PreOptions (line 5) | interface PreOptions { function pre (line 10) | async function pre( function preMutate (line 57) | async function preMutate( function preQuery (line 88) | async function preQuery( FILE: packages/fcl-core/src/exec/utils/prep-template-opts.ts type TemplateOptions (line 7) | interface TemplateOptions { function prepTemplateOpts (line 43) | async function prepTemplateOpts( FILE: packages/fcl-core/src/interaction-template-utils/derive-cadence-by-network/derive-cadence-by-network-1.0.0.ts type DeriveCadenceByNetwork100Params (line 4) | interface DeriveCadenceByNetwork100Params { function deriveCadenceByNetwork100 (line 17) | async function deriveCadenceByNetwork100({ FILE: packages/fcl-core/src/interaction-template-utils/derive-cadence-by-network/derive-cadence-by-network-1.1.0.ts type DeriveCadenceByNetwork110Params (line 5) | interface DeriveCadenceByNetwork110Params { function deriveCadenceByNetwork110 (line 18) | async function deriveCadenceByNetwork110({ FILE: packages/fcl-core/src/interaction-template-utils/derive-cadence-by-network/derive-cadence-by-network.ts type DeriveCadenceByNetworkParams (line 6) | interface DeriveCadenceByNetworkParams { function deriveCadenceByNetwork (line 19) | async function deriveCadenceByNetwork({ FILE: packages/fcl-core/src/interaction-template-utils/generate-dependency-pin/generate-dependency-pin-1.0.0.ts type GenerateDependencyPin100Params (line 8) | interface GenerateDependencyPin100Params { function creategenerateDependencyPin100 (line 13) | function creategenerateDependencyPin100( FILE: packages/fcl-core/src/interaction-template-utils/generate-dependency-pin/generate-dependency-pin-1.1.0.ts type GenerateDependencyPin110Params (line 8) | interface GenerateDependencyPin110Params { function createGenerateDependencyPin110 (line 14) | function createGenerateDependencyPin110( FILE: packages/fcl-core/src/interaction-template-utils/generate-dependency-pin/generate-dependency-pin.ts type GenerateDependencyPinParams (line 5) | interface GenerateDependencyPinParams { function generateDependencyPin (line 39) | async function generateDependencyPin( function generateDependencyPinAtLatestSealedBlock (line 99) | async function generateDependencyPinAtLatestSealedBlock( FILE: packages/fcl-core/src/interaction-template-utils/generate-template-id/generate-template-id-1.0.0.ts type GenerateTemplateId100Params (line 6) | interface GenerateTemplateId100Params { function generateTemplateId (line 17) | async function generateTemplateId({ FILE: packages/fcl-core/src/interaction-template-utils/generate-template-id/generate-template-id-1.1.0.ts function generateContractNetworks (line 16) | async function generateContractNetworks( function generateContractDependencies (line 38) | async function generateContractDependencies( function createGenerateTemplateId (line 62) | function createGenerateTemplateId( FILE: packages/fcl-core/src/interaction-template-utils/generate-template-id/generate-template-id.ts function generateTemplateId (line 13) | async function generateTemplateId({ function verifyGeneratedTemplateId (line 48) | async function verifyGeneratedTemplateId({ FILE: packages/fcl-core/src/interaction-template-utils/get-interaction-template-audits.ts type GetInteractionTemplateAuditsParams (line 9) | interface GetInteractionTemplateAuditsParams { type GetInteractionTemplateAuditsOpts (line 14) | interface GetInteractionTemplateAuditsOpts { function getInteractionTemplateAudits (line 67) | async function getInteractionTemplateAudits( FILE: packages/fcl-core/src/interaction-template-utils/get-template-argument-message.ts type GetTemplateArgumentMessageParams (line 4) | interface GetTemplateArgumentMessageParams { function getTemplateArgumentMessage (line 21) | function getTemplateArgumentMessage({ FILE: packages/fcl-core/src/interaction-template-utils/get-template-message.ts type GetTemplateMessageParams (line 4) | interface GetTemplateMessageParams { function getTemplateMessage (line 19) | function getTemplateMessage({ FILE: packages/fcl-core/src/interaction-template-utils/interaction-template.ts type ImportItem (line 1) | interface ImportItem { type InteractionTemplateI18n (line 7) | interface InteractionTemplateI18n { type InteractionTemplateMessage (line 12) | interface InteractionTemplateMessage { type InteractionTemplateParameter (line 17) | interface InteractionTemplateParameter { type InteractionTemplateNetwork (line 25) | interface InteractionTemplateNetwork { type InteractionTemplateContract (line 32) | interface InteractionTemplateContract { type InteractionTemplateDependency (line 37) | interface InteractionTemplateDependency { type InteractionTemplateCadence (line 41) | interface InteractionTemplateCadence { type InteractionTemplateData100 (line 46) | interface InteractionTemplateData100 { type InteractionTemplateData110 (line 79) | interface InteractionTemplateData110 { type InteractionTemplate100 (line 88) | interface InteractionTemplate100 { type InteractionTemplate110 (line 95) | interface InteractionTemplate110 { type InteractionTemplate (line 102) | type InteractionTemplate = type GenerateTemplateIdParams (line 107) | interface GenerateTemplateIdParams { type GetInteractionTemplateAuditsParams (line 111) | interface GetInteractionTemplateAuditsParams { type GetInteractionTemplateAuditsOpts (line 116) | interface GetInteractionTemplateAuditsOpts { type DeriveCadenceByNetworkParams (line 120) | interface DeriveCadenceByNetworkParams { type GetTemplateMessageParams (line 125) | interface GetTemplateMessageParams { type GetTemplateArgumentMessageParams (line 131) | interface GetTemplateArgumentMessageParams { type GenerateDependencyPinParams (line 138) | interface GenerateDependencyPinParams { type VerifyDependencyPinsSameParams (line 144) | interface VerifyDependencyPinsSameParams { FILE: packages/fcl-core/src/interaction-template-utils/utils/find-imports.ts function findImports (line 31) | function findImports(cadence: string): ImportItem[] { FILE: packages/fcl-core/src/interaction-template-utils/utils/generate-import.ts type GenerateImportParams (line 3) | interface GenerateImportParams { function generateImport (line 27) | function generateImport({ FILE: packages/fcl-core/src/interaction-template-utils/utils/hash.ts function genHash (line 18) | function genHash(utf8String: string): string { FILE: packages/fcl-core/src/interaction-template-utils/utils/replace-string-imports.ts type ReplaceStringImportsParams (line 1) | interface ReplaceStringImportsParams { function replaceStringImports (line 14) | function replaceStringImports({ FILE: packages/fcl-core/src/interaction-template-utils/verify-dependency-pin-same-at-block.ts type VerifyDependencyPinsSameParams (line 6) | interface VerifyDependencyPinsSameParams { type VerifyDependencyPinsSameOpts (line 12) | interface VerifyDependencyPinsSameOpts { type VerifyDependencyPinsSameAtLatestSealedBlockParams (line 16) | interface VerifyDependencyPinsSameAtLatestSealedBlockParams { function verifyDependencyPinsSame (line 31) | async function verifyDependencyPinsSame( function verifyDependencyPinsSameAtLatestSealedBlock (line 170) | async function verifyDependencyPinsSameAtLatestSealedBlock( FILE: packages/fcl-core/src/normalizers/service/__vsn.ts constant SERVICE_PRAGMA (line 1) | const SERVICE_PRAGMA = { constant IDENTITY_PRAGMA (line 6) | const IDENTITY_PRAGMA = { constant PROVIDER_PRAGMA (line 11) | const PROVIDER_PRAGMA = { constant USER_PRAGMA (line 16) | const USER_PRAGMA = { constant POLLING_RESPONSE_PRAGMA (line 21) | const POLLING_RESPONSE_PRAGMA = { constant COMPOSITE_SIGNATURE_PRAGMA (line 26) | const COMPOSITE_SIGNATURE_PRAGMA = { constant OPEN_ID_PRAGMA (line 31) | const OPEN_ID_PRAGMA = { FILE: packages/fcl-core/src/normalizers/service/account-proof.ts function normalizeAccountProof (line 24) | function normalizeAccountProof(service: Service | null): Service | null { FILE: packages/fcl-core/src/normalizers/service/authn-refresh.ts type AuthnRefreshService (line 3) | interface AuthnRefreshService extends Service { function normalizeAuthnRefresh (line 31) | function normalizeAuthnRefresh( FILE: packages/fcl-core/src/normalizers/service/authn.ts type AuthnService (line 5) | interface AuthnService extends Service { function normalizeAuthn (line 39) | function normalizeAuthn( FILE: packages/fcl-core/src/normalizers/service/authz.ts type AuthzService (line 5) | interface AuthzService extends Service { function normalizeAuthz (line 34) | function normalizeAuthz( FILE: packages/fcl-core/src/normalizers/service/back-channel-rpc.ts function normalizeBackChannelRpc (line 21) | function normalizeBackChannelRpc( FILE: packages/fcl-core/src/normalizers/service/composite-signature.ts function normalizeCompositeSignature (line 20) | function normalizeCompositeSignature( FILE: packages/fcl-core/src/normalizers/service/frame.ts type FrameService (line 4) | interface FrameService extends Service { function normalizeFrame (line 24) | function normalizeFrame(service: Service | null): FrameService | null { FILE: packages/fcl-core/src/normalizers/service/local-view.ts function normalizeLocalView (line 21) | function normalizeLocalView(resp: Service | null): Service | null { FILE: packages/fcl-core/src/normalizers/service/open-id.ts function normalizeOpenId (line 50) | function normalizeOpenId(service: Service | null): Service | null { FILE: packages/fcl-core/src/normalizers/service/polling-response.ts type PollingResponse (line 6) | interface PollingResponse { function normalizePollingResponse (line 35) | function normalizePollingResponse( FILE: packages/fcl-core/src/normalizers/service/pre-authz.ts function normalizePreAuthz (line 25) | function normalizePreAuthz( FILE: packages/fcl-core/src/normalizers/service/service.ts function normalizeServices (line 33) | function normalizeServices(services: Service[], data?: any): Service[] { function normalizeService (line 76) | function normalizeService(service: Service, data?: any): Service { FILE: packages/fcl-core/src/normalizers/service/user-signature.ts function normalizeUserSignature (line 22) | function normalizeUserSignature( FILE: packages/fcl-core/src/serialize/index.ts type SerializeOptions (line 11) | interface SerializeOptions { function createSerialize (line 49) | function createSerialize(context: Pick) { FILE: packages/fcl-core/src/test-utils/mock-context.ts function createMockSdkClient (line 27) | function createMockSdkClient( function createMockStorage (line 71) | function createMockStorage(): StorageProvider { function createMockConfigService (line 88) | function createMockConfigService( function createMockCurrentUser (line 150) | function createMockCurrentUser( function createMockContext (line 188) | function createMockContext( FILE: packages/fcl-core/src/transaction/constants.ts constant TXID_REGEXP (line 1) | const TXID_REGEXP = /^[0-9a-fA-F]{64}$/ FILE: packages/fcl-core/src/transaction/legacy-polling.js constant POLL (line 28) | const POLL = "POLL" constant TIMEOUT (line 29) | const TIMEOUT = "TIMEOUT" function isScheduledTransactionId (line 44) | function isScheduledTransactionId(txId) { function transaction (line 126) | function transaction( FILE: packages/fcl-core/src/transaction/transaction-error.ts constant ERROR_CODE_REGEX (line 3) | const ERROR_CODE_REGEX = /\[Error Code: (\d+)\]/ class TransactionError (line 5) | class TransactionError extends Error { method constructor (line 9) | private constructor(message: string, code: FvmErrorCode) { method fromErrorMessage (line 15) | static fromErrorMessage(errorMessage: string): TransactionError { FILE: packages/fcl-core/src/transaction/transaction.ts constant FLOW_EMULATOR (line 24) | const FLOW_EMULATOR = "local" function isScheduledTransactionId (line 35) | function isScheduledTransactionId(txId: string): boolean { function createTransaction (line 39) | function createTransaction(context: Pick) { function createObservable (line 216) | function createObservable( FILE: packages/fcl-core/src/utils/chain-id/chain-id-watcher.ts function watchForChainIdChanges (line 21) | function watchForChainIdChanges( FILE: packages/fcl-core/src/utils/chain-id/fetch-chain-id.ts function fetchChainId (line 17) | async function fetchChainId( FILE: packages/fcl-core/src/utils/chain-id/get-chain-id.ts type GetChainIdOptions (line 13) | interface GetChainIdOptions { function createGetChainId (line 19) | function createGetChainId(context: { function clearChainIdCache (line 156) | function clearChainIdCache(): void { FILE: packages/fcl-core/src/utils/constants.ts constant FCL_REDIRECT_URL_PARAM_NAME (line 1) | const FCL_REDIRECT_URL_PARAM_NAME: string = "fcl_redirect_url" constant FCL_RESPONSE_PARAM_NAME (line 2) | const FCL_RESPONSE_PARAM_NAME: string = "fclResponseJson" constant CORE_STRATEGIES (line 4) | const CORE_STRATEGIES: Record = { FILE: packages/fcl-core/src/utils/index.ts function isAndroid (line 17) | function isAndroid(): boolean { function isSmallIOS (line 37) | function isSmallIOS(): boolean { function isLargeIOS (line 57) | function isLargeIOS(): boolean { function isIOS (line 75) | function isIOS(): boolean { function isMobile (line 96) | function isMobile(): boolean { FILE: packages/fcl-core/src/utils/is-react-native.ts function isReactNative (line 23) | function isReactNative(): boolean { function setIsReactNative (line 47) | function setIsReactNative(value: boolean): void { FILE: packages/fcl-core/src/utils/storage.ts type StorageProvider (line 1) | type StorageProvider = { FILE: packages/fcl-core/src/utils/url.ts class URL (line 15) | class URL extends _URL { method constructor (line 18) | constructor(url: string | URL, base?: string | URL, ...args: any[]) { FILE: packages/fcl-core/src/wallet-utils/CompositeSignature.ts class CompositeSignature (line 39) | class CompositeSignature { method constructor (line 46) | constructor(addr: string, keyId: number | string, signature: string) { FILE: packages/fcl-core/src/wallet-utils/encode-account-proof.ts type AccountProofData (line 5) | interface AccountProofData { FILE: packages/fcl-core/src/wallet-utils/inject-ext-service.ts function injectExtService (line 22) | function injectExtService(service: Service): void { FILE: packages/fcl-core/src/wallet-utils/send-msg-to-fcl.ts type PollingResponse (line 7) | interface PollingResponse { FILE: packages/fcl-ethereum-provider/src/__mocks__/fcl.ts function mockUser (line 4) | function mockUser(initialValue?: CurrentUser | null) { function mockConfig (line 45) | function mockConfig( FILE: packages/fcl-ethereum-provider/src/accounts/account-manager.ts class AccountManager (line 38) | class AccountManager { method constructor (line 45) | constructor( method initializeUserSubscription (line 57) | private initializeUserSubscription() { method authenticate (line 109) | public async authenticate(): Promise { method unauthenticate (line 121) | public async unauthenticate(): Promise { method waitForTxResult (line 126) | private async waitForTxResult( method fetchCOAFromFlowAddress (line 140) | private async fetchCOAFromFlowAddress(flowAddr: string): Promise { method getAccounts (line 164) | public async getAccounts(): Promise { method getAndCreateAccounts (line 172) | public async getAndCreateAccounts(chainId: number): Promise { method createCOA (line 187) | public async createCOA(chainId: number): Promise { method subscribe (line 234) | public subscribe(callback: (accounts: string[]) => void): Subscription { method getNonce (line 245) | private async getNonce(evmAddress: string): Promise { method sendTransaction (line 260) | async sendTransaction(params: { method signMessage (line 335) | public async signMessage( method validateChainId (line 381) | private async validateChainId(chainId: number): Promise { method getFlowNetworkOrThrow (line 393) | private getFlowNetworkOrThrow(chainId: number): FlowNetwork { FILE: packages/fcl-ethereum-provider/src/constants.ts type FlowNetwork (line 1) | enum FlowNetwork { constant FLOW_CHAINS (line 6) | const FLOW_CHAINS = { type ContractType (line 17) | enum ContractType { type EventType (line 21) | enum EventType { constant EVENT_IDENTIFIERS (line 26) | const EVENT_IDENTIFIERS = { constant FLOW_CONTRACTS (line 37) | const FLOW_CONTRACTS = { type TransactionExecutedEvent (line 44) | interface TransactionExecutedEvent { constant ACCESS_NODE_API_KEY (line 60) | const ACCESS_NODE_API_KEY = "accessNode.api" FILE: packages/fcl-ethereum-provider/src/create-provider.ts type FclProviderConfig (line 12) | type FclProviderConfig = { function createProvider (line 42) | function createProvider(config: FclProviderConfig): Eip1193Provider { FILE: packages/fcl-ethereum-provider/src/events/event-dispatcher.ts class EventDispatcher (line 18) | class EventDispatcher { method constructor (line 29) | constructor(accountManager: AccountManager, networkManager: NetworkMan... method on (line 74) | on( method off (line 83) | off( FILE: packages/fcl-ethereum-provider/src/gateway/gateway.ts class Gateway (line 5) | class Gateway { method constructor (line 8) | constructor(private rpcUrls: {[chainId: number]: string}) {} method request (line 10) | public async request({ method getProvider (line 24) | private async getProvider(eip155ChainId: number): Promise { method addChain (line 89) | public async addChain(_chainConfig: AddEthereumChainParams): Promise({ method disconnect (line 32) | async disconnect(): Promise { method on (line 37) | on( method removeListener (line 45) | removeListener( FILE: packages/fcl-ethereum-provider/src/rpc/handlers/eth-accounts.ts function ethAccounts (line 4) | async function ethAccounts( function ethRequestAccounts (line 11) | async function ethRequestAccounts( FILE: packages/fcl-ethereum-provider/src/rpc/handlers/eth-chain-id.ts function ethChainId (line 4) | async function ethChainId(networkManager: NetworkManager) { FILE: packages/fcl-ethereum-provider/src/rpc/handlers/eth-send-transaction.ts function ethSendTransaction (line 4) | async function ethSendTransaction( FILE: packages/fcl-ethereum-provider/src/rpc/handlers/eth-signtypeddata.ts function signTypedData (line 9) | async function signTypedData( FILE: packages/fcl-ethereum-provider/src/rpc/handlers/personal-sign.ts function personalSign (line 4) | async function personalSign( FILE: packages/fcl-ethereum-provider/src/rpc/rpc-processor.ts class RpcProcessor (line 19) | class RpcProcessor { method constructor (line 20) | constructor( method handleRequest (line 26) | async handleRequest({method, params}: ProviderRequest): Promise { FILE: packages/fcl-ethereum-provider/src/rpc/types.ts type RpcHandler (line 1) | type RpcHandler = (params: any) => Promise FILE: packages/fcl-ethereum-provider/src/types/account.ts type AddressStoreState (line 1) | interface AddressStoreState { FILE: packages/fcl-ethereum-provider/src/types/eth.ts type EthSignatureResponse (line 1) | type EthSignatureResponse = string type PersonalSignParams (line 3) | type PersonalSignParams = [string, string] type SignTypedDataParams (line 5) | interface SignTypedDataParams { type TypedDataField (line 10) | interface TypedDataField { type TypedDataDomain (line 15) | interface TypedDataDomain { type TypedData (line 23) | interface TypedData { type AddEthereumChainParams (line 30) | interface AddEthereumChainParams { type SwitchEthereumChainParams (line 43) | interface SwitchEthereumChainParams { FILE: packages/fcl-ethereum-provider/src/types/events.ts type TransactionExecutedEvent (line 1) | type TransactionExecutedEvent = { FILE: packages/fcl-ethereum-provider/src/types/provider.ts type ProviderRequest (line 4) | type ProviderRequest = { type ProviderResponse (line 9) | type ProviderResponse = T type ProviderEvents (line 12) | type ProviderEvents = { type EventCallback (line 20) | type EventCallback = (event: T) => void type Eip1193Provider (line 23) | interface Eip1193Provider { FILE: packages/fcl-ethereum-provider/src/util/chain.ts function getFlowNetwork (line 3) | function getFlowNetwork(chainId: number): FlowNetwork | undefined { FILE: packages/fcl-ethereum-provider/src/util/errors.ts type ProviderErrorCode (line 1) | enum ProviderErrorCode { class ProviderError (line 29) | class ProviderError extends Error { method constructor (line 33) | constructor({code, cause}: {code: ProviderErrorCode; cause?: any}) { FILE: packages/fcl-ethereum-provider/src/util/eth.ts function formatChainId (line 9) | function formatChainId(chainId: string | number): `0x${string}` { function getContractAddress (line 15) | function getContractAddress( FILE: packages/fcl-ethereum-provider/src/util/observable.ts class Observable (line 5) | class Observable { method constructor (line 8) | constructor(subscribe: (subscriber: Observer) => Subscription) { method subscribe (line 12) | subscribe(observerOrNext: ObserverOrNext): Subscription { method pipe (line 52) | pipe( method asObservable (line 61) | asObservable(): Observable { type Subscription (line 68) | type Subscription = () => void type Observer (line 70) | type Observer = { type ObserverOrNext (line 77) | type ObserverOrNext = Observer | ((value: T) => void) class Subject (line 83) | class Subject extends Observable { method constructor (line 86) | constructor() { method next (line 95) | next(value: T) { method error (line 99) | error(error: any) { method complete (line 103) | complete() { class BehaviorSubject (line 109) | class BehaviorSubject extends Subject { method constructor (line 112) | constructor(initialValue: T) { method next (line 117) | next(value: T) { method getValue (line 122) | getValue() { method subscribe (line 126) | subscribe(observerOrNext: ObserverOrNext): Subscription { function switchMap (line 139) | function switchMap( function map (line 175) | function map( function from (line 190) | function from(promise: Promise): Observable { function firstValueFrom (line 214) | async function firstValueFrom(source: Observable): Promise { function distinctUntilChanged (line 231) | function distinctUntilChanged(): ( function concat (line 252) | function concat(...sources: Observable[]): Observable { function filter (line 282) | function filter( function of (line 301) | function of(value: T): Observable { function skip (line 310) | function skip( function takeFirst (line 332) | function takeFirst(): (source: Observable) => Observable { function pairwise (line 347) | function pairwise(): (source: Observable) => Observable<[T, T]> { function normalizeObserver (line 369) | function normalizeObserver(observer: ObserverOrNext): Observer { FILE: packages/fcl-ethereum-provider/src/util/transaction.ts function numberToUint8Array (line 7) | function numberToUint8Array(value: number | bigint): Uint8Array { function precalculateTxHash (line 21) | function precalculateTxHash( FILE: packages/fcl-ethereum-provider/src/wc-provider.ts class WalletConnectEthereumProvider (line 47) | class WalletConnectEthereumProvider extends EthereumProvider { method init (line 48) | static async init( method connect (line 119) | async connect( function buildNamespaces (line 198) | function buildNamespaces(network: FlowNetwork): { FILE: packages/fcl-rainbowkit-adapter/src/create-connector.ts type FclConnectorOptions (line 15) | type FclConnectorOptions = { type DefaultWalletOptions (line 24) | type DefaultWalletOptions = { constant FALLBACK_ICON (line 28) | const FALLBACK_ICON = method getProvider (line 99) | async getProvider(params) { method connect (line 102) | async connect(params) { method disconnect (line 105) | async disconnect() { method getAccounts (line 108) | async getAccounts() { method getChainId (line 111) | async getChainId() { method isAuthorized (line 114) | async isAuthorized() { method switchChain (line 117) | async switchChain(params) { function updateConnectors (line 124) | function updateConnectors() { FILE: packages/fcl-rainbowkit-adapter/src/get-wc-connector.ts type RainbowKitDetails (line 40) | type RainbowKitDetails = any type CreateConnector (line 41) | type CreateConnector = (walletDetails: WalletDetailsParams) => CreateCon... type GetWalletConnectConnectorParams (line 43) | interface GetWalletConnectConnectorParams { type CreateWalletConnectConnectorParams (line 48) | interface CreateWalletConnectConnectorParams { type GetOrCreateWalletConnectInstanceParams (line 54) | interface GetOrCreateWalletConnectInstanceParams { function createWalletConnectConnector (line 108) | function createWalletConnectConnector({ function getWalletConnectConnector (line 127) | function getWalletConnectConnector({ FILE: packages/fcl-rainbowkit-adapter/src/use-is-cadence-wallet-connected.ts function useIsCadenceWalletConnected (line 6) | async function useIsCadenceWalletConnected(config: Config) { FILE: packages/fcl-rainbowkit-adapter/src/wallets/wc-wallet.ts constant WALLETCONNECT_ICON (line 36) | const WALLETCONNECT_ICON = `data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMj... type WalletConnectWalletOptions (line 38) | interface WalletConnectWalletOptions { FILE: packages/fcl-react-native/src/VERSION.ts constant VERSION (line 5) | const VERSION: string = FILE: packages/fcl-react-native/src/client.ts constant PLATFORM (line 11) | const PLATFORM = "react-native" type FlowClientConfig (line 17) | interface FlowClientConfig function createFlowClient (line 37) | function createFlowClient(params: FlowClientConfig) { FILE: packages/fcl-react-native/src/utils/react-native/ConnectModalProvider.js function showModal (line 7) | function showModal(ModalComponent, props) { function hideModal (line 14) | function hideModal() { function ConnectModalProvider (line 20) | function ConnectModalProvider({children}) { FILE: packages/fcl-react-native/src/utils/react-native/constants.js constant DISCOVERY_RN_METHOD (line 2) | const DISCOVERY_RN_METHOD = "DISCOVERY/RN" FILE: packages/fcl-react-native/src/utils/react-native/exec-local.js constant VIEWS (line 10) | const VIEWS = { function execLocal (line 19) | async function execLocal( FILE: packages/fcl-react-native/src/utils/react-native/render-browser.js function renderBrowser (line 11) | async function renderBrowser(src, opts = {}) { FILE: packages/fcl-react-native/src/utils/react-native/render-deeplink.js function renderDeeplink (line 13) | async function renderDeeplink(src, opts = {}) { FILE: packages/fcl-react-native/src/utils/react-native/strategies/deeplink-rpc.js function execDeeplinkRPC (line 4) | function execDeeplinkRPC({service, config, body}) { FILE: packages/fcl-react-native/src/utils/react-native/strategies/discovery-rn.js function execDiscoveryRN (line 30) | async function execDiscoveryRN({ FILE: packages/fcl-react-native/src/utils/react-native/strategies/utils/browser.js function browser (line 8) | async function browser(service, config, body, opts = {}) { FILE: packages/fcl-react-native/src/utils/react-native/strategies/utils/service-endpoint.js function serviceEndpoint (line 11) | function serviceEndpoint(service, config, body) { FILE: packages/fcl-react-native/src/walletconnect/client.ts function initializeWalletConnect (line 9) | async function initializeWalletConnect() { type FclWalletConnectConfig (line 41) | interface FclWalletConnectConfig { constant DEFAULT_RELAY_URL (line 49) | const DEFAULT_RELAY_URL = "wss://relay.walletconnect.com" constant DEFAULT_LOGGER (line 50) | const DEFAULT_LOGGER = "error" // Use "error" for production, "debug" fo... function getClient (line 147) | async function getClient() { function disconnectWalletConnect (line 157) | async function disconnectWalletConnect(): Promise { FILE: packages/fcl-react-native/src/walletconnect/constants.ts constant SERVICE_PLUGIN_NAME (line 1) | const SERVICE_PLUGIN_NAME = "fcl-wc-plugin-react-native" constant WC_SERVICE_METHOD (line 3) | const WC_SERVICE_METHOD = "WC/RPC" constant FLOW_METHODS (line 5) | const FLOW_METHODS = { constant REQUEST_TYPES (line 15) | const REQUEST_TYPES = { FILE: packages/fcl-react-native/src/walletconnect/loader.ts type WalletConnectConfig (line 5) | interface WalletConnectConfig { function getMetadata (line 15) | function getMetadata(wcConfig: WalletConnectConfig) { function loadFclWc (line 26) | function loadFclWc(wcConfig: WalletConnectConfig) { function initFclWcLoader (line 54) | function initFclWcLoader() { FILE: packages/fcl-react-native/src/walletconnect/service.ts function validateSession (line 13) | async function validateSession( function disconnectSession (line 34) | async function disconnectSession( function findValidSession (line 46) | async function findValidSession( function determineWalletAppLink (line 90) | function determineWalletAppLink( function injectSessionIntoPreAuthz (line 109) | function injectSessionIntoPreAuthz( function connectWc (line 323) | async function connectWc({ function openDeeplink (line 401) | async function openDeeplink(url: string) { FILE: packages/fcl-react-native/src/walletconnect/session.ts function createSessionProposal (line 6) | async function createSessionProposal({ function addSessionInfo (line 129) | function addSessionInfo(service: any) { function makeSessionData (line 184) | function makeSessionData( FILE: packages/fcl-wagmi-adapter/src/fcl-connector.ts type FclWagmiAdapterParams (line 16) | type FclWagmiAdapterParams = Parameters[0] & { function fclWagmiAdapter (line 20) | function fclWagmiAdapter(params: FclWagmiAdapterParams) { FILE: packages/fcl-wagmi-adapter/src/wc-connector.ts type WalletConnectConnector (line 54) | type WalletConnectConnector = Connector & { type EthereumProviderOptions (line 59) | type EthereumProviderOptions = Parameters<(typeof EthereumProvider)["ini... type WalletConnectParameters (line 61) | type WalletConnectParameters = Compute< function walletConnect (line 108) | function walletConnect(parameters: WalletConnectParameters) { FILE: packages/fcl-wc/src/constants.ts type FLOW_METHODS (line 1) | enum FLOW_METHODS { type REQUEST_TYPES (line 8) | enum REQUEST_TYPES { constant SERVICE_PLUGIN_NAME (line 13) | const SERVICE_PLUGIN_NAME = "fcl-plugin-service-walletconnect" constant WC_SERVICE_METHOD (line 14) | const WC_SERVICE_METHOD = "WC/RPC" FILE: packages/fcl-wc/src/fcl-wc.ts type FclWalletConnectConfig (line 12) | interface FclWalletConnectConfig { constant DEFAULT_RELAY_URL (line 22) | const DEFAULT_RELAY_URL = "wss://relay.walletconnect.com" constant DEFAULT_LOGGER (line 23) | const DEFAULT_LOGGER = "debug" function getProvider (line 123) | async function getProvider() { FILE: packages/fcl-wc/src/service.ts type WalletConnectModalType (line 19) | type WalletConnectModalType = import("@walletconnect/modal").WalletConne... type Constructor (line 21) | type Constructor = new (...args: any[]) => T function onClose (line 108) | function onClose() { function validateAppLink (line 167) | function validateAppLink({uid}: {uid: string}) { function connectWc (line 181) | function connectWc( function showWcRequestNotification (line 306) | function showWcRequestNotification({ function resolveProvider (line 328) | async function resolveProvider({ FILE: packages/fcl-wc/src/session.ts function createSessionProposal (line 8) | async function createSessionProposal({ function addSessionInfo (line 102) | function addSessionInfo(service: Service) { function makeSessionData (line 149) | function makeSessionData(session: SessionTypes.Struct) { FILE: packages/fcl-wc/src/store.ts function createStore (line 1) | function createStore(initialState: T) { FILE: packages/fcl-wc/src/types/types.ts type NotificationInfo (line 1) | type NotificationInfo = { FILE: packages/fcl-wc/src/ui/components/Notification.tsx function Notification (line 4) | function Notification({ FILE: packages/fcl-wc/src/ui/notifications.tsx function createRenderRoot (line 10) | function createRenderRoot() { function showNotification (line 36) | function showNotification({ FILE: packages/fcl-wc/src/utils.ts constant PRE_AUTHZ_SERVICE_TYPE (line 6) | const PRE_AUTHZ_SERVICE_TYPE = "pre-authz" function isAndroid (line 56) | function isAndroid() { function isSmallIOS (line 62) | function isSmallIOS() { function isLargeIOS (line 68) | function isLargeIOS() { function isIOS (line 72) | function isIOS() { function isMobile (line 76) | function isMobile() { function openDeeplink (line 80) | function openDeeplink(url: string) { function shouldDeepLink (line 101) | function shouldDeepLink({service, user}: {service: Service; user: any}) { function preloadImage (line 121) | function preloadImage(url?: string | null) { FILE: packages/fcl/src/VERSION.ts constant VERSION (line 3) | const VERSION: string = PACKAGE_CURRENT_VERSION || "TESTVERSION" FILE: packages/fcl/src/client.ts constant PLATFORM (line 10) | const PLATFORM = "web" type FlowClientConfig (line 20) | interface FlowClientConfig function createFlowClient (line 106) | function createFlowClient(params: FlowClientConfig) { FILE: packages/fcl/src/discovery/exec-discovery.ts function execDiscovery (line 3) | async function execDiscovery({ FILE: packages/fcl/src/discovery/exec-hook.ts constant AUTHN_SERVICE_TYPE (line 6) | const AUTHN_SERVICE_TYPE = "authn" function execStrategyHook (line 10) | async function execStrategyHook(...args: any) { FILE: packages/fcl/src/discovery/rpc/client.ts function createDiscoveryRpcClient (line 7) | function createDiscoveryRpcClient({ FILE: packages/fcl/src/discovery/rpc/handlers/exec-service.ts constant APPROVED (line 4) | const APPROVED = "APPROVED" FILE: packages/fcl/src/discovery/rpc/handlers/request-wc-qr.ts function watchQrFactory (line 52) | function watchQrFactory({ FILE: packages/fcl/src/discovery/rpc/requests.ts type DiscoveryRpc (line 3) | type DiscoveryRpc = RpcClient<{}, DiscoveryNotifications> type DiscoveryNotification (line 5) | enum DiscoveryNotification { type FclRequest (line 11) | enum FclRequest { type DiscoveryNotifications (line 16) | type DiscoveryNotifications = { FILE: packages/fcl/src/utils/async.ts function wrapAbortSignal (line 4) | function wrapAbortSignal(signal?: AbortSignal) { FILE: packages/fcl/src/utils/walletconnect/loader.ts function initFclWcLoader (line 34) | function initFclWcLoader() { function loadFclWc (line 49) | function loadFclWc(wcConfig: { FILE: packages/fcl/src/utils/web/exec-local.js constant VIEWS (line 9) | const VIEWS = { function execLocal (line 17) | async function execLocal(service, opts = {serviceEndpoint: () => {}}) { FILE: packages/fcl/src/utils/web/render-frame.js constant FRAME (line 3) | const FRAME = "FCL_IFRAME" constant FRAME_STYLES (line 5) | const FRAME_STYLES = ` function renderFrame (line 20) | function renderFrame(src) { FILE: packages/fcl/src/utils/web/render-pop.js constant POP (line 1) | const POP = "FCL_POP" function popupWindow (line 6) | function popupWindow(url, windowName, win, w, h) { function renderPop (line 19) | function renderPop(src) { FILE: packages/fcl/src/utils/web/render-tab.js constant TAB (line 1) | const TAB = "FCL_TAB" function renderTab (line 6) | function renderTab(src) { FILE: packages/fcl/src/utils/web/storage.ts constant SESSION_STORAGE (line 13) | const SESSION_STORAGE = { constant LOCAL_STORAGE (line 20) | const LOCAL_STORAGE = { FILE: packages/fcl/src/utils/web/strategies/ext-rpc.js function execExtRPC (line 5) | function execExtRPC({ FILE: packages/fcl/src/utils/web/strategies/iframe-rpc.js function execIframeRPC (line 6) | function execIframeRPC({ FILE: packages/fcl/src/utils/web/strategies/pop-rpc.js function execPopRPC (line 6) | function execPopRPC({ FILE: packages/fcl/src/utils/web/strategies/tab-rpc.js function execTabRPC (line 6) | function execTabRPC({ FILE: packages/fcl/src/utils/web/strategies/utils/extension.js function extension (line 5) | function extension(service, opts = {}) { FILE: packages/fcl/src/utils/web/strategies/utils/frame.js function frame (line 6) | function frame(service, opts = {}) { FILE: packages/fcl/src/utils/web/strategies/utils/pop.js function pop (line 6) | function pop(service, opts = {}) { FILE: packages/fcl/src/utils/web/strategies/utils/tab.js function tab (line 6) | function tab(service, opts = {}) { FILE: packages/protobuf/src/generated/flow/access/access_pb.d.ts class PingRequest (line 16) | class PingRequest extends jspb.Message { type AsObject (line 28) | type AsObject = { class PingResponse (line 32) | class PingResponse extends jspb.Message { type AsObject (line 44) | type AsObject = { class GetNodeVersionInfoRequest (line 48) | class GetNodeVersionInfoRequest extends jspb.Message { type AsObject (line 60) | type AsObject = { class GetNodeVersionInfoResponse (line 64) | class GetNodeVersionInfoResponse extends jspb.Message { type AsObject (line 81) | type AsObject = { class GetLatestBlockHeaderRequest (line 86) | class GetLatestBlockHeaderRequest extends jspb.Message { type AsObject (line 101) | type AsObject = { class GetBlockHeaderByIDRequest (line 106) | class GetBlockHeaderByIDRequest extends jspb.Message { type AsObject (line 123) | type AsObject = { class GetBlockHeaderByHeightRequest (line 128) | class GetBlockHeaderByHeightRequest extends jspb.Message { type AsObject (line 143) | type AsObject = { class BlockHeaderResponse (line 148) | class BlockHeaderResponse extends jspb.Message { type AsObject (line 173) | type AsObject = { class GetLatestBlockRequest (line 180) | class GetLatestBlockRequest extends jspb.Message { type AsObject (line 198) | type AsObject = { class GetBlockByIDRequest (line 204) | class GetBlockByIDRequest extends jspb.Message { type AsObject (line 224) | type AsObject = { class GetBlockByHeightRequest (line 230) | class GetBlockByHeightRequest extends jspb.Message { type AsObject (line 248) | type AsObject = { class BlockResponse (line 254) | class BlockResponse extends jspb.Message { type AsObject (line 279) | type AsObject = { class GetCollectionByIDRequest (line 286) | class GetCollectionByIDRequest extends jspb.Message { type AsObject (line 303) | type AsObject = { class CollectionResponse (line 308) | class CollectionResponse extends jspb.Message { type AsObject (line 330) | type AsObject = { class SendTransactionRequest (line 336) | class SendTransactionRequest extends jspb.Message { type AsObject (line 353) | type AsObject = { class SendTransactionResponse (line 358) | class SendTransactionResponse extends jspb.Message { type AsObject (line 380) | type AsObject = { class GetTransactionRequest (line 386) | class GetTransactionRequest extends jspb.Message { type AsObject (line 416) | type AsObject = { class GetSystemTransactionRequest (line 424) | class GetSystemTransactionRequest extends jspb.Message { type AsObject (line 441) | type AsObject = { class GetSystemTransactionResultRequest (line 446) | class GetSystemTransactionResultRequest extends jspb.Message { type AsObject (line 466) | type AsObject = { class GetTransactionByIndexRequest (line 472) | class GetTransactionByIndexRequest extends jspb.Message { type AsObject (line 495) | type AsObject = { class GetTransactionsByBlockIDRequest (line 502) | class GetTransactionsByBlockIDRequest extends jspb.Message { type AsObject (line 522) | type AsObject = { class TransactionResultsResponse (line 528) | class TransactionResultsResponse extends jspb.Message { type AsObject (line 550) | type AsObject = { class TransactionsResponse (line 556) | class TransactionsResponse extends jspb.Message { type AsObject (line 578) | type AsObject = { class TransactionResponse (line 584) | class TransactionResponse extends jspb.Message { type AsObject (line 606) | type AsObject = { class TransactionResultResponse (line 612) | class TransactionResultResponse extends jspb.Message { type AsObject (line 664) | type AsObject = { class GetAccountRequest (line 678) | class GetAccountRequest extends jspb.Message { type AsObject (line 695) | type AsObject = { class GetAccountResponse (line 700) | class GetAccountResponse extends jspb.Message { type AsObject (line 722) | type AsObject = { class GetAccountAtLatestBlockRequest (line 728) | class GetAccountAtLatestBlockRequest extends jspb.Message { type AsObject (line 745) | type AsObject = { class AccountResponse (line 750) | class AccountResponse extends jspb.Message { type AsObject (line 772) | type AsObject = { class GetAccountAtBlockHeightRequest (line 778) | class GetAccountAtBlockHeightRequest extends jspb.Message { type AsObject (line 798) | type AsObject = { class ExecuteScriptAtLatestBlockRequest (line 804) | class ExecuteScriptAtLatestBlockRequest extends jspb.Message { type AsObject (line 828) | type AsObject = { class ExecuteScriptAtBlockIDRequest (line 834) | class ExecuteScriptAtBlockIDRequest extends jspb.Message { type AsObject (line 863) | type AsObject = { class ExecuteScriptAtBlockHeightRequest (line 870) | class ExecuteScriptAtBlockHeightRequest extends jspb.Message { type AsObject (line 897) | type AsObject = { class ExecuteScriptResponse (line 904) | class ExecuteScriptResponse extends jspb.Message { type AsObject (line 929) | type AsObject = { class GetEventsForHeightRangeRequest (line 936) | class GetEventsForHeightRangeRequest extends jspb.Message { type AsObject (line 960) | type AsObject = { class GetEventsForBlockIDsRequest (line 968) | class GetEventsForBlockIDsRequest extends jspb.Message { type AsObject (line 993) | type AsObject = { class EventsResponse (line 1000) | class EventsResponse extends jspb.Message { type AsObject (line 1022) | type AsObject = { class Result (line 1027) | class Result extends jspb.Message { type AsObject (line 1057) | type AsObject = { class GetNetworkParametersRequest (line 1066) | class GetNetworkParametersRequest extends jspb.Message { type AsObject (line 1078) | type AsObject = { class GetNetworkParametersResponse (line 1082) | class GetNetworkParametersResponse extends jspb.Message { type AsObject (line 1097) | type AsObject = { class GetLatestProtocolStateSnapshotRequest (line 1102) | class GetLatestProtocolStateSnapshotRequest extends jspb.Message { type AsObject (line 1114) | type AsObject = { class GetProtocolStateSnapshotByBlockIDRequest (line 1118) | class GetProtocolStateSnapshotByBlockIDRequest extends jspb.Message { type AsObject (line 1135) | type AsObject = { class GetProtocolStateSnapshotByHeightRequest (line 1140) | class GetProtocolStateSnapshotByHeightRequest extends jspb.Message { type AsObject (line 1155) | type AsObject = { class ProtocolStateSnapshotResponse (line 1160) | class ProtocolStateSnapshotResponse extends jspb.Message { type AsObject (line 1182) | type AsObject = { class GetExecutionResultForBlockIDRequest (line 1188) | class GetExecutionResultForBlockIDRequest extends jspb.Message { type AsObject (line 1205) | type AsObject = { class ExecutionResultForBlockIDResponse (line 1210) | class ExecutionResultForBlockIDResponse extends jspb.Message { type AsObject (line 1232) | type AsObject = { class GetExecutionResultByIDRequest (line 1238) | class GetExecutionResultByIDRequest extends jspb.Message { type AsObject (line 1255) | type AsObject = { class ExecutionResultByIDResponse (line 1260) | class ExecutionResultByIDResponse extends jspb.Message { type AsObject (line 1282) | type AsObject = { class SubscribeBlocksFromStartBlockIDRequest (line 1288) | class SubscribeBlocksFromStartBlockIDRequest extends jspb.Message { type AsObject (line 1311) | type AsObject = { class SubscribeBlocksFromStartHeightRequest (line 1318) | class SubscribeBlocksFromStartHeightRequest extends jspb.Message { type AsObject (line 1339) | type AsObject = { class SubscribeBlocksFromLatestRequest (line 1346) | class SubscribeBlocksFromLatestRequest extends jspb.Message { type AsObject (line 1364) | type AsObject = { class SubscribeBlocksResponse (line 1370) | class SubscribeBlocksResponse extends jspb.Message { type AsObject (line 1387) | type AsObject = { class SubscribeBlockHeadersFromStartBlockIDRequest (line 1392) | class SubscribeBlockHeadersFromStartBlockIDRequest extends jspb.Message { type AsObject (line 1412) | type AsObject = { class SubscribeBlockHeadersFromStartHeightRequest (line 1418) | class SubscribeBlockHeadersFromStartHeightRequest extends jspb.Message { type AsObject (line 1436) | type AsObject = { class SubscribeBlockHeadersFromLatestRequest (line 1442) | class SubscribeBlockHeadersFromLatestRequest extends jspb.Message { type AsObject (line 1457) | type AsObject = { class SubscribeBlockHeadersResponse (line 1462) | class SubscribeBlockHeadersResponse extends jspb.Message { type AsObject (line 1479) | type AsObject = { class SubscribeBlockDigestsFromStartBlockIDRequest (line 1484) | class SubscribeBlockDigestsFromStartBlockIDRequest extends jspb.Message { type AsObject (line 1504) | type AsObject = { class SubscribeBlockDigestsFromStartHeightRequest (line 1510) | class SubscribeBlockDigestsFromStartHeightRequest extends jspb.Message { type AsObject (line 1528) | type AsObject = { class SubscribeBlockDigestsFromLatestRequest (line 1534) | class SubscribeBlockDigestsFromLatestRequest extends jspb.Message { type AsObject (line 1549) | type AsObject = { class SubscribeBlockDigestsResponse (line 1554) | class SubscribeBlockDigestsResponse extends jspb.Message { type AsObject (line 1579) | type AsObject = { class SendAndSubscribeTransactionStatusesRequest (line 1586) | class SendAndSubscribeTransactionStatusesRequest extends jspb.Message { type AsObject (line 1603) | type AsObject = { class SendAndSubscribeTransactionStatusesResponse (line 1608) | class SendAndSubscribeTransactionStatusesResponse extends jspb.Message { type AsObject (line 1631) | type AsObject = { FILE: packages/protobuf/src/generated/flow/access/access_pb_service.d.ts type AccessAPIPing (line 7) | type AccessAPIPing = { type AccessAPIGetNodeVersionInfo (line 16) | type AccessAPIGetNodeVersionInfo = { type AccessAPIGetLatestBlockHeader (line 25) | type AccessAPIGetLatestBlockHeader = { type AccessAPIGetBlockHeaderByID (line 34) | type AccessAPIGetBlockHeaderByID = { type AccessAPIGetBlockHeaderByHeight (line 43) | type AccessAPIGetBlockHeaderByHeight = { type AccessAPIGetLatestBlock (line 52) | type AccessAPIGetLatestBlock = { type AccessAPIGetBlockByID (line 61) | type AccessAPIGetBlockByID = { type AccessAPIGetBlockByHeight (line 70) | type AccessAPIGetBlockByHeight = { type AccessAPIGetCollectionByID (line 79) | type AccessAPIGetCollectionByID = { type AccessAPISendTransaction (line 88) | type AccessAPISendTransaction = { type AccessAPIGetTransaction (line 97) | type AccessAPIGetTransaction = { type AccessAPIGetTransactionResult (line 106) | type AccessAPIGetTransactionResult = { type AccessAPIGetTransactionResultByIndex (line 115) | type AccessAPIGetTransactionResultByIndex = { type AccessAPIGetTransactionResultsByBlockID (line 124) | type AccessAPIGetTransactionResultsByBlockID = { type AccessAPIGetTransactionsByBlockID (line 133) | type AccessAPIGetTransactionsByBlockID = { type AccessAPIGetSystemTransaction (line 142) | type AccessAPIGetSystemTransaction = { type AccessAPIGetSystemTransactionResult (line 151) | type AccessAPIGetSystemTransactionResult = { type AccessAPIGetAccount (line 160) | type AccessAPIGetAccount = { type AccessAPIGetAccountAtLatestBlock (line 169) | type AccessAPIGetAccountAtLatestBlock = { type AccessAPIGetAccountAtBlockHeight (line 178) | type AccessAPIGetAccountAtBlockHeight = { type AccessAPIExecuteScriptAtLatestBlock (line 187) | type AccessAPIExecuteScriptAtLatestBlock = { type AccessAPIExecuteScriptAtBlockID (line 196) | type AccessAPIExecuteScriptAtBlockID = { type AccessAPIExecuteScriptAtBlockHeight (line 205) | type AccessAPIExecuteScriptAtBlockHeight = { type AccessAPIGetEventsForHeightRange (line 214) | type AccessAPIGetEventsForHeightRange = { type AccessAPIGetEventsForBlockIDs (line 223) | type AccessAPIGetEventsForBlockIDs = { type AccessAPIGetNetworkParameters (line 232) | type AccessAPIGetNetworkParameters = { type AccessAPIGetLatestProtocolStateSnapshot (line 241) | type AccessAPIGetLatestProtocolStateSnapshot = { type AccessAPIGetProtocolStateSnapshotByBlockID (line 250) | type AccessAPIGetProtocolStateSnapshotByBlockID = { type AccessAPIGetProtocolStateSnapshotByHeight (line 259) | type AccessAPIGetProtocolStateSnapshotByHeight = { type AccessAPIGetExecutionResultForBlockID (line 268) | type AccessAPIGetExecutionResultForBlockID = { type AccessAPIGetExecutionResultByID (line 277) | type AccessAPIGetExecutionResultByID = { type AccessAPISubscribeBlocksFromStartBlockID (line 286) | type AccessAPISubscribeBlocksFromStartBlockID = { type AccessAPISubscribeBlocksFromStartHeight (line 295) | type AccessAPISubscribeBlocksFromStartHeight = { type AccessAPISubscribeBlocksFromLatest (line 304) | type AccessAPISubscribeBlocksFromLatest = { type AccessAPISubscribeBlockHeadersFromStartBlockID (line 313) | type AccessAPISubscribeBlockHeadersFromStartBlockID = { type AccessAPISubscribeBlockHeadersFromStartHeight (line 322) | type AccessAPISubscribeBlockHeadersFromStartHeight = { type AccessAPISubscribeBlockHeadersFromLatest (line 331) | type AccessAPISubscribeBlockHeadersFromLatest = { type AccessAPISubscribeBlockDigestsFromStartBlockID (line 340) | type AccessAPISubscribeBlockDigestsFromStartBlockID = { type AccessAPISubscribeBlockDigestsFromStartHeight (line 349) | type AccessAPISubscribeBlockDigestsFromStartHeight = { type AccessAPISubscribeBlockDigestsFromLatest (line 358) | type AccessAPISubscribeBlockDigestsFromLatest = { type AccessAPISendAndSubscribeTransactionStatuses (line 367) | type AccessAPISendAndSubscribeTransactionStatuses = { class AccessAPI (line 376) | class AccessAPI { type ServiceError (line 421) | type ServiceError = { message: string, code: number; metadata: grpc.Meta... type Status (line 422) | type Status = { details: string, code: number; metadata: grpc.Metadata } type UnaryResponse (line 424) | interface UnaryResponse { type ResponseStream (line 427) | interface ResponseStream { type RequestStream (line 433) | interface RequestStream { type BidirectionalStream (line 440) | interface BidirectionalStream { class AccessAPIClient (line 449) | class AccessAPIClient { FILE: packages/protobuf/src/generated/flow/access/access_pb_service.js function AccessAPI (line 8) | function AccessAPI() {} function AccessAPIClient (line 384) | function AccessAPIClient(serviceHost, options) { FILE: packages/protobuf/src/generated/flow/entities/account_pb.d.ts class Account (line 6) | class Account extends jspb.Message { type AsObject (line 38) | type AsObject = { class AccountKey (line 47) | class AccountKey extends jspb.Message { type AsObject (line 82) | type AsObject = { FILE: packages/protobuf/src/generated/flow/entities/block_execution_data_pb.d.ts class BlockExecutionData (line 8) | class BlockExecutionData extends jspb.Message { type AsObject (line 30) | type AsObject = { class ChunkExecutionData (line 36) | class ChunkExecutionData extends jspb.Message { type AsObject (line 68) | type AsObject = { class ExecutionDataCollection (line 76) | class ExecutionDataCollection extends jspb.Message { type AsObject (line 93) | type AsObject = { class TrieUpdate (line 98) | class TrieUpdate extends jspb.Message { type AsObject (line 127) | type AsObject = { class Payload (line 134) | class Payload extends jspb.Message { type AsObject (line 156) | type AsObject = { class KeyPart (line 162) | class KeyPart extends jspb.Message { type AsObject (line 182) | type AsObject = { class ExecutionDataTransactionResult (line 188) | class ExecutionDataTransactionResult extends jspb.Message { type AsObject (line 211) | type AsObject = { FILE: packages/protobuf/src/generated/flow/entities/block_header_pb.d.ts class BlockHeader (line 7) | class BlockHeader extends jspb.Message { type AsObject (line 83) | type AsObject = { class TimeoutCertificate (line 101) | class TimeoutCertificate extends jspb.Message { type AsObject (line 136) | type AsObject = { class QuorumCertificate (line 145) | class QuorumCertificate extends jspb.Message { type AsObject (line 175) | type AsObject = { FILE: packages/protobuf/src/generated/flow/entities/block_pb.d.ts class Block (line 11) | class Block extends jspb.Message { type AsObject (line 78) | type AsObject = { type BlockStatusMap (line 93) | interface BlockStatusMap { FILE: packages/protobuf/src/generated/flow/entities/block_seal_pb.d.ts class BlockSeal (line 6) | class BlockSeal extends jspb.Message { type AsObject (line 57) | type AsObject = { class AggregatedSignature (line 68) | class AggregatedSignature extends jspb.Message { type AsObject (line 94) | type AsObject = { FILE: packages/protobuf/src/generated/flow/entities/collection_pb.d.ts class Collection (line 6) | class Collection extends jspb.Message { type AsObject (line 30) | type AsObject = { class CollectionGuarantee (line 36) | class CollectionGuarantee extends jspb.Message { type AsObject (line 82) | type AsObject = { FILE: packages/protobuf/src/generated/flow/entities/event_pb.d.ts class Event (line 6) | class Event extends jspb.Message { type AsObject (line 37) | type AsObject = { type EventEncodingVersionMap (line 46) | interface EventEncodingVersionMap { FILE: packages/protobuf/src/generated/flow/entities/execution_result_pb.d.ts class ExecutionResult (line 6) | class ExecutionResult extends jspb.Message { type AsObject (line 43) | type AsObject = { class Chunk (line 52) | class Chunk extends jspb.Message { type AsObject (line 106) | type AsObject = { class ServiceEvent (line 120) | class ServiceEvent extends jspb.Message { type AsObject (line 140) | type AsObject = { class ExecutionReceiptMeta (line 146) | class ExecutionReceiptMeta extends jspb.Message { type AsObject (line 180) | type AsObject = { FILE: packages/protobuf/src/generated/flow/entities/metadata_pb.d.ts class Metadata (line 6) | class Metadata extends jspb.Message { type AsObject (line 31) | type AsObject = { FILE: packages/protobuf/src/generated/flow/entities/node_version_info_pb.d.ts class NodeVersionInfo (line 6) | class NodeVersionInfo extends jspb.Message { type AsObject (line 38) | type AsObject = { FILE: packages/protobuf/src/generated/flow/entities/register_pb.d.ts class RegisterID (line 6) | class RegisterID extends jspb.Message { type AsObject (line 28) | type AsObject = { FILE: packages/protobuf/src/generated/flow/entities/transaction_pb.d.ts class Transaction (line 7) | class Transaction extends jspb.Message { type AsObject (line 66) | type AsObject = { class ProposalKey (line 78) | class ProposalKey extends jspb.Message { type AsObject (line 101) | type AsObject = { class Signature (line 108) | class Signature extends jspb.Message { type AsObject (line 133) | type AsObject = { type TransactionStatusMap (line 141) | interface TransactionStatusMap { FILE: packages/protobuf/src/generated/flow/execution/execution_pb.d.ts class PingRequest (line 10) | class PingRequest extends jspb.Message { type AsObject (line 22) | type AsObject = { class PingResponse (line 26) | class PingResponse extends jspb.Message { type AsObject (line 38) | type AsObject = { class GetAccountAtBlockIDRequest (line 42) | class GetAccountAtBlockIDRequest extends jspb.Message { type AsObject (line 64) | type AsObject = { class GetAccountAtBlockIDResponse (line 70) | class GetAccountAtBlockIDResponse extends jspb.Message { type AsObject (line 87) | type AsObject = { class ExecuteScriptAtBlockIDRequest (line 92) | class ExecuteScriptAtBlockIDRequest extends jspb.Message { type AsObject (line 121) | type AsObject = { class ExecuteScriptAtBlockIDResponse (line 128) | class ExecuteScriptAtBlockIDResponse extends jspb.Message { type AsObject (line 148) | type AsObject = { class GetEventsForBlockIDsResponse (line 154) | class GetEventsForBlockIDsResponse extends jspb.Message { type AsObject (line 174) | type AsObject = { class Result (line 179) | class Result extends jspb.Message { type AsObject (line 204) | type AsObject = { class GetEventsForBlockIDsRequest (line 212) | class GetEventsForBlockIDsRequest extends jspb.Message { type AsObject (line 234) | type AsObject = { class GetTransactionResultRequest (line 240) | class GetTransactionResultRequest extends jspb.Message { type AsObject (line 262) | type AsObject = { class GetTransactionByIndexRequest (line 268) | class GetTransactionByIndexRequest extends jspb.Message { type AsObject (line 288) | type AsObject = { class GetTransactionResultResponse (line 294) | class GetTransactionResultResponse extends jspb.Message { type AsObject (line 323) | type AsObject = { class GetTransactionsByBlockIDRequest (line 332) | class GetTransactionsByBlockIDRequest extends jspb.Message { type AsObject (line 349) | type AsObject = { class GetTransactionResultsResponse (line 354) | class GetTransactionResultsResponse extends jspb.Message { type AsObject (line 374) | type AsObject = { class GetTransactionErrorMessageRequest (line 380) | class GetTransactionErrorMessageRequest extends jspb.Message { type AsObject (line 402) | type AsObject = { class GetTransactionErrorMessageByIndexRequest (line 408) | class GetTransactionErrorMessageByIndexRequest extends jspb.Message { type AsObject (line 428) | type AsObject = { class GetTransactionErrorMessageResponse (line 434) | class GetTransactionErrorMessageResponse extends jspb.Message { type AsObject (line 454) | type AsObject = { class GetTransactionErrorMessagesByBlockIDRequest (line 460) | class GetTransactionErrorMessagesByBlockIDRequest extends jspb.Message { type AsObject (line 477) | type AsObject = { class GetTransactionErrorMessagesResponse (line 482) | class GetTransactionErrorMessagesResponse extends jspb.Message { type AsObject (line 499) | type AsObject = { class Result (line 503) | class Result extends jspb.Message { type AsObject (line 526) | type AsObject = { class GetRegisterAtBlockIDRequest (line 534) | class GetRegisterAtBlockIDRequest extends jspb.Message { type AsObject (line 561) | type AsObject = { class GetRegisterAtBlockIDResponse (line 568) | class GetRegisterAtBlockIDResponse extends jspb.Message { type AsObject (line 585) | type AsObject = { class GetLatestBlockHeaderRequest (line 590) | class GetLatestBlockHeaderRequest extends jspb.Message { type AsObject (line 605) | type AsObject = { class GetBlockHeaderByIDRequest (line 610) | class GetBlockHeaderByIDRequest extends jspb.Message { type AsObject (line 627) | type AsObject = { class BlockHeaderResponse (line 632) | class BlockHeaderResponse extends jspb.Message { type AsObject (line 649) | type AsObject = { FILE: packages/protobuf/src/generated/flow/execution/execution_pb_service.d.ts type ExecutionAPIPing (line 7) | type ExecutionAPIPing = { type ExecutionAPIGetAccountAtBlockID (line 16) | type ExecutionAPIGetAccountAtBlockID = { type ExecutionAPIExecuteScriptAtBlockID (line 25) | type ExecutionAPIExecuteScriptAtBlockID = { type ExecutionAPIGetEventsForBlockIDs (line 34) | type ExecutionAPIGetEventsForBlockIDs = { type ExecutionAPIGetTransactionResult (line 43) | type ExecutionAPIGetTransactionResult = { type ExecutionAPIGetTransactionResultByIndex (line 52) | type ExecutionAPIGetTransactionResultByIndex = { type ExecutionAPIGetTransactionResultsByBlockID (line 61) | type ExecutionAPIGetTransactionResultsByBlockID = { type ExecutionAPIGetTransactionErrorMessage (line 70) | type ExecutionAPIGetTransactionErrorMessage = { type ExecutionAPIGetTransactionErrorMessageByIndex (line 79) | type ExecutionAPIGetTransactionErrorMessageByIndex = { type ExecutionAPIGetTransactionErrorMessagesByBlockID (line 88) | type ExecutionAPIGetTransactionErrorMessagesByBlockID = { type ExecutionAPIGetRegisterAtBlockID (line 97) | type ExecutionAPIGetRegisterAtBlockID = { type ExecutionAPIGetLatestBlockHeader (line 106) | type ExecutionAPIGetLatestBlockHeader = { type ExecutionAPIGetBlockHeaderByID (line 115) | type ExecutionAPIGetBlockHeaderByID = { class ExecutionAPI (line 124) | class ExecutionAPI { type ServiceError (line 141) | type ServiceError = { message: string, code: number; metadata: grpc.Meta... type Status (line 142) | type Status = { details: string, code: number; metadata: grpc.Metadata } type UnaryResponse (line 144) | interface UnaryResponse { type ResponseStream (line 147) | interface ResponseStream { type RequestStream (line 153) | interface RequestStream { type BidirectionalStream (line 160) | interface BidirectionalStream { class ExecutionAPIClient (line 169) | class ExecutionAPIClient { FILE: packages/protobuf/src/generated/flow/execution/execution_pb_service.js function ExecutionAPI (line 8) | function ExecutionAPI() {} function ExecutionAPIClient (line 132) | function ExecutionAPIClient(serviceHost, options) { FILE: packages/protobuf/src/generated/flow/executiondata/executiondata_pb.d.ts class GetExecutionDataByBlockIDRequest (line 10) | class GetExecutionDataByBlockIDRequest extends jspb.Message { type AsObject (line 30) | type AsObject = { class GetExecutionDataByBlockIDResponse (line 36) | class GetExecutionDataByBlockIDResponse extends jspb.Message { type AsObject (line 53) | type AsObject = { class SubscribeExecutionDataRequest (line 58) | class SubscribeExecutionDataRequest extends jspb.Message { type AsObject (line 81) | type AsObject = { class SubscribeExecutionDataResponse (line 88) | class SubscribeExecutionDataResponse extends jspb.Message { type AsObject (line 113) | type AsObject = { class SubscribeEventsRequest (line 120) | class SubscribeEventsRequest extends jspb.Message { type AsObject (line 151) | type AsObject = { class SubscribeEventsResponse (line 160) | class SubscribeEventsResponse extends jspb.Message { type AsObject (line 190) | type AsObject = { class EventFilter (line 198) | class EventFilter extends jspb.Message { type AsObject (line 225) | type AsObject = { class GetRegisterValuesRequest (line 232) | class GetRegisterValuesRequest extends jspb.Message { type AsObject (line 252) | type AsObject = { class GetRegisterValuesResponse (line 258) | class GetRegisterValuesResponse extends jspb.Message { type AsObject (line 277) | type AsObject = { FILE: packages/protobuf/src/generated/flow/executiondata/executiondata_pb_service.d.ts type ExecutionDataAPIGetExecutionDataByBlockID (line 7) | type ExecutionDataAPIGetExecutionDataByBlockID = { type ExecutionDataAPISubscribeExecutionData (line 16) | type ExecutionDataAPISubscribeExecutionData = { type ExecutionDataAPISubscribeEvents (line 25) | type ExecutionDataAPISubscribeEvents = { type ExecutionDataAPIGetRegisterValues (line 34) | type ExecutionDataAPIGetRegisterValues = { class ExecutionDataAPI (line 43) | class ExecutionDataAPI { type ServiceError (line 51) | type ServiceError = { message: string, code: number; metadata: grpc.Meta... type Status (line 52) | type Status = { details: string, code: number; metadata: grpc.Metadata } type UnaryResponse (line 54) | interface UnaryResponse { type ResponseStream (line 57) | interface ResponseStream { type RequestStream (line 63) | interface RequestStream { type BidirectionalStream (line 70) | interface BidirectionalStream { class ExecutionDataAPIClient (line 79) | class ExecutionDataAPIClient { FILE: packages/protobuf/src/generated/flow/executiondata/executiondata_pb_service.js function ExecutionDataAPI (line 8) | function ExecutionDataAPI() {} function ExecutionDataAPIClient (line 51) | function ExecutionDataAPIClient(serviceHost, options) { FILE: packages/react-core/src/__mocks__/TestProvider.tsx function setMockFlowClient (line 26) | function setMockFlowClient(mockInstance: any) { function getMockFlowClient (line 33) | function getMockFlowClient() { function TestProvider (line 41) | function TestProvider({children}: PropsWithChildren<{}>) { FILE: packages/react-core/src/__mocks__/flow-client.ts type MockFclInstance (line 105) | type MockFclInstance = ReturnType FILE: packages/react-core/src/constants.ts constant CONTRACT_ADDRESSES (line 1) | const CONTRACT_ADDRESSES = { constant CADENCE_UFIX64_PRECISION (line 49) | const CADENCE_UFIX64_PRECISION = 8 constant DEFAULT_EVM_GAS_LIMIT (line 51) | const DEFAULT_EVM_GAS_LIMIT = "15000000" FILE: packages/react-core/src/core/context.ts type FlowConfig (line 8) | type FlowConfig = { FILE: packages/react-core/src/core/types.ts type FlowNetwork (line 7) | type FlowNetwork = "emulator" | "testnet" | "mainnet" | (string & {}) FILE: packages/react-core/src/hooks/useCrossVmBatchTransaction.ts type UseCrossVmBatchTransactionMutateArgs (line 16) | interface UseCrossVmBatchTransactionMutateArgs { type UseCrossVmBatchTransactionArgs (line 21) | interface UseCrossVmBatchTransactionArgs { type UseCrossVmBatchTransactionResult (line 29) | interface UseCrossVmBatchTransactionResult type EvmBatchCall (line 46) | interface EvmBatchCall { function encodeCalls (line 61) | function encodeCalls( function useCrossVmBatchTransaction (line 136) | function useCrossVmBatchTransaction({ FILE: packages/react-core/src/hooks/useCrossVmBridgeNftFromEvm.ts type UseCrossVmBridgeNftFromEvmTxArgs (line 14) | interface UseCrossVmBridgeNftFromEvmTxArgs { type UseCrossVmBridgeNftFromEvmTxMutateArgs (line 22) | interface UseCrossVmBridgeNftFromEvmTxMutateArgs { type UseCrossVmBridgeNftFromEvmTxResult (line 28) | interface UseCrossVmBridgeNftFromEvmTxResult function useCrossVmBridgeNftFromEvm (line 176) | function useCrossVmBridgeNftFromEvm({ FILE: packages/react-core/src/hooks/useCrossVmBridgeNftToEvm.ts type UseCrossVmBridgeNftToEvmTxArgs (line 15) | interface UseCrossVmBridgeNftToEvmTxArgs { type UseCrossVmBridgeNftToEvmTxMutateArgs (line 23) | interface UseCrossVmBridgeNftToEvmTxMutateArgs { type UseCrossVmBridgeNftToEvmTxResult (line 29) | interface UseCrossVmBridgeNftToEvmTxResult function useCrossVmBridgeNftToEvm (line 226) | function useCrossVmBridgeNftToEvm({ FILE: packages/react-core/src/hooks/useCrossVmBridgeTokenFromEvm.ts type UseCrossVmBridgeTokenFromEvmArgs (line 14) | interface UseCrossVmBridgeTokenFromEvmArgs { type UseCrossVmBridgeTokenFromEvmMutateArgs (line 22) | interface UseCrossVmBridgeTokenFromEvmMutateArgs { type UseCrossVmBridgeTokenFromEvmResult (line 27) | interface UseCrossVmBridgeTokenFromEvmResult function useCrossVmBridgeTokenFromEvm (line 182) | function useCrossVmBridgeTokenFromEvm({ FILE: packages/react-core/src/hooks/useCrossVmBridgeTokenToEvm.ts type UseCrossVmBridgeTokenToEvmArgs (line 15) | interface UseCrossVmBridgeTokenToEvmArgs { type UseCrossVmBridgeTokenToEvmMutateArgs (line 23) | interface UseCrossVmBridgeTokenToEvmMutateArgs { type UseCrossVmBridgeTokenToEvmResult (line 29) | interface UseCrossVmBridgeTokenToEvmResult function useCrossVmBridgeTokenToEvm (line 217) | function useCrossVmBridgeTokenToEvm({ FILE: packages/react-core/src/hooks/useCrossVmSpendNft.ts type UseCrossVmSpendNftTxArgs (line 15) | interface UseCrossVmSpendNftTxArgs { type UseCrossVmSpendNftTxMutateArgs (line 23) | interface UseCrossVmSpendNftTxMutateArgs { type UseCrossVmSpendNftTxResult (line 29) | interface UseCrossVmSpendNftTxResult function useCrossVmSpendNft (line 225) | function useCrossVmSpendNft({ FILE: packages/react-core/src/hooks/useCrossVmSpendToken.ts type UseCrossVmSpendTokenArgs (line 15) | interface UseCrossVmSpendTokenArgs { type UseCrossVmSpendTokenMutateArgs (line 23) | interface UseCrossVmSpendTokenMutateArgs { type UseCrossVmSpendTokenResult (line 29) | interface UseCrossVmSpendTokenResult function useCrossVmSpendToken (line 216) | function useCrossVmSpendToken({ FILE: packages/react-core/src/hooks/useCrossVmTokenBalance.ts type UseCrossVmTokenBalanceArgs (line 8) | interface UseCrossVmTokenBalanceArgs { type TokenBalance (line 16) | interface TokenBalance { type UseCrossVmTokenBalanceData (line 22) | interface UseCrossVmTokenBalanceData { function useCrossVmTokenBalance (line 153) | function useCrossVmTokenBalance(params: UseCrossVmTokenBalanceArgs) { FILE: packages/react-core/src/hooks/useCrossVmTransactionStatus.ts type UseCrossVmTransactionStatusArgs (line 8) | interface UseCrossVmTransactionStatusArgs { type UseCrossVmTransactionStatusResult (line 14) | interface UseCrossVmTransactionStatusResult { type CallOutcome (line 23) | interface CallOutcome { type EvmTransactionExecutedData (line 29) | interface EvmTransactionExecutedData { function useCrossVmTransactionStatus (line 51) | function useCrossVmTransactionStatus({ FILE: packages/react-core/src/hooks/useFlowAccount.ts type UseFlowAccountArgs (line 8) | interface UseFlowAccountArgs { function useFlowAccount (line 22) | function useFlowAccount({ FILE: packages/react-core/src/hooks/useFlowAuthz.ts type AuthorizationFunction (line 5) | type AuthorizationFunction = ( type UseFlowAuthzArgs (line 9) | interface UseFlowAuthzArgs { function useFlowAuthz (line 65) | function useFlowAuthz({ FILE: packages/react-core/src/hooks/useFlowBlock.ts type BlockByLatest (line 8) | interface BlockByLatest { type BlockByLatestSealed (line 14) | interface BlockByLatestSealed { type BlockById (line 20) | interface BlockById { type BlockByHeight (line 26) | interface BlockByHeight { type UseBlockParams (line 32) | type UseBlockParams = type UseFlowBlockArgs (line 38) | interface UseFlowBlockArgs { function useFlowBlock (line 55) | function useFlowBlock( FILE: packages/react-core/src/hooks/useFlowChainId.ts type UseFlowChainIdArgs (line 8) | interface UseFlowChainIdArgs { function useFlowChainId (line 16) | function useFlowChainId({ FILE: packages/react-core/src/hooks/useFlowClient.ts function useFlowClient (line 5) | function useFlowClient({ FILE: packages/react-core/src/hooks/useFlowConfig.ts function useFlowConfig (line 4) | function useFlowConfig(): FlowConfig { FILE: packages/react-core/src/hooks/useFlowCurrentUser.ts type UseFlowCurrentUserArgs (line 6) | interface UseFlowCurrentUserArgs { type UseFlowCurrentUserResult (line 10) | interface UseFlowCurrentUserResult { function useFlowCurrentUser (line 16) | function useFlowCurrentUser({ FILE: packages/react-core/src/hooks/useFlowEvents.ts type EventFilter (line 6) | interface EventFilter { type UseFlowEventsArgs (line 17) | interface UseFlowEventsArgs extends EventFilter { function useFlowEvents (line 30) | function useFlowEvents({ FILE: packages/react-core/src/hooks/useFlowMutate.ts type UseFlowMutateArgs (line 17) | interface UseFlowMutateArgs { function useFlowMutate (line 29) | function useFlowMutate({ FILE: packages/react-core/src/hooks/useFlowNftMetadata.ts type NftViewResult (line 7) | interface NftViewResult { type UseFlowNftMetadataArgs (line 20) | interface UseFlowNftMetadataArgs { function useFlowNftMetadata (line 167) | function useFlowNftMetadata(params: UseFlowNftMetadataArgs) { FILE: packages/react-core/src/hooks/useFlowQuery.ts function encodeQueryArgs (line 8) | function encodeQueryArgs( type UseFlowQueryArgs (line 16) | interface UseFlowQueryArgs { function useFlowQuery (line 34) | function useFlowQuery({ FILE: packages/react-core/src/hooks/useFlowQueryRaw.ts type UseFlowQueryRawArgs (line 9) | interface UseFlowQueryRawArgs { function useFlowQueryRaw (line 27) | function useFlowQueryRaw({ FILE: packages/react-core/src/hooks/useFlowRevertibleRandom.ts type RevertibleRandomResult (line 8) | interface RevertibleRandomResult { type UseFlowRevertibleRandomArgs (line 23) | interface UseFlowRevertibleRandomArgs { function useFlowRevertibleRandom (line 48) | function useFlowRevertibleRandom({ FILE: packages/react-core/src/hooks/useFlowScheduledTransaction.ts type UseFlowScheduledTransactionArgs (line 13) | interface UseFlowScheduledTransactionArgs { type UseFlowScheduledTransactionResult (line 23) | type UseFlowScheduledTransactionResult = UseQueryResult< function useFlowScheduledTransaction (line 181) | function useFlowScheduledTransaction({ FILE: packages/react-core/src/hooks/useFlowScheduledTransactionCancel.ts type UseFlowScheduledTransactionCancelArgs (line 14) | interface UseFlowScheduledTransactionCancelArgs { type UseFlowScheduledTransactionCancelResult (line 19) | interface UseFlowScheduledTransactionCancelResult function useFlowScheduledTransactionCancel (line 83) | function useFlowScheduledTransactionCancel({ FILE: packages/react-core/src/hooks/useFlowScheduledTransactionList.ts type ScheduledTransactionPriority (line 8) | enum ScheduledTransactionPriority { type ScheduledTransactionStatus (line 14) | enum ScheduledTransactionStatus { type ScheduledTransaction (line 22) | interface ScheduledTransaction { type UseFlowScheduledTransactionListArgs (line 38) | interface UseFlowScheduledTransactionListArgs { type UseFlowScheduledTransactionListResult (line 48) | type UseFlowScheduledTransactionListResult = UseQueryResult< function useFlowScheduledTransactionList (line 215) | function useFlowScheduledTransactionList({ FILE: packages/react-core/src/hooks/useFlowScheduledTransactionSetup.ts type UseFlowScheduledTransactionSetupArgs (line 14) | interface UseFlowScheduledTransactionSetupArgs { type UseFlowScheduledTransactionSetupResult (line 19) | interface UseFlowScheduledTransactionSetupResult function useFlowScheduledTransactionSetup (line 80) | function useFlowScheduledTransactionSetup({ FILE: packages/react-core/src/hooks/useFlowTransaction.ts type UseFlowTransactionArgs (line 9) | interface UseFlowTransactionArgs { function useFlowTransaction (line 28) | function useFlowTransaction({ FILE: packages/react-core/src/hooks/useFlowTransactionStatus.ts type UseFlowTransactionStatusArgs (line 7) | interface UseFlowTransactionStatusArgs { type UseFlowTransactionStatusResult (line 13) | interface UseFlowTransactionStatusResult { function useFlowTransactionStatus (line 29) | function useFlowTransactionStatus({ FILE: packages/react-core/src/provider/FlowQueryClient.tsx function useFlowQueryClient (line 8) | function useFlowQueryClient() { function FlowQueryClientProvider (line 18) | function FlowQueryClientProvider({ FILE: packages/react-core/src/provider/GlobalTransactionProvider.tsx type GlobalTransactionContextValue (line 5) | interface GlobalTransactionContextValue { function useGlobalTransaction (line 33) | function useGlobalTransaction(): GlobalTransactionContextValue { type GlobalTransactionProviderProps (line 41) | interface GlobalTransactionProviderProps { function GlobalTransactionProvider (line 49) | function GlobalTransactionProvider({ FILE: packages/react-core/src/utils/deepEqual.ts function deepEqual (line 1) | function deepEqual(a: any, b: any): boolean { FILE: packages/react-core/src/utils/flowscan.ts type ExplorerNetwork (line 3) | type ExplorerNetwork = Extract constant BLOCK_EXPLORER_URL (line 5) | const BLOCK_EXPLORER_URL: Record = { FILE: packages/react-native-sdk/src/components/Connect.tsx type BalanceType (line 22) | type BalanceType = keyof UseCrossVmTokenBalanceData type TokenConfig (line 24) | type TokenConfig = { type ConnectProps (line 32) | interface ConnectProps { function Connect (line 70) | function Connect({ FILE: packages/react-native-sdk/src/components/Profile.tsx type BalanceType (line 32) | type BalanceType = keyof UseCrossVmTokenBalanceData type ProfileProps (line 34) | interface ProfileProps { FILE: packages/react-native-sdk/src/icons/CheckIcon.tsx type IconProps (line 4) | interface IconProps { FILE: packages/react-native-sdk/src/icons/CopyIcon.tsx type IconProps (line 4) | interface IconProps { FILE: packages/react-native-sdk/src/icons/ExternalLinkIcon.tsx type IconProps (line 4) | interface IconProps { FILE: packages/react-native-sdk/src/icons/LogOutIcon.tsx type IconProps (line 4) | interface IconProps { FILE: packages/react-native-sdk/src/icons/UserIcon.tsx type IconProps (line 4) | interface IconProps { FILE: packages/react-native-sdk/src/provider/FlowProvider.tsx type FlowProviderProps (line 16) | interface FlowProviderProps { function getConfigKey (line 38) | function getConfigKey( function FlowProvider (line 50) | function FlowProvider({ FILE: packages/react-sdk/src/__mocks__/flow-client.ts type MockFclInstance (line 95) | type MockFclInstance = ReturnType FILE: packages/react-sdk/src/components/Connect.tsx type BalanceType (line 9) | type BalanceType = keyof UseCrossVmTokenBalanceData type TokenConfig (line 11) | type TokenConfig = { type ConnectModalConfig (line 19) | interface ConnectModalConfig { type ConnectProps (line 26) | interface ConnectProps { FILE: packages/react-sdk/src/components/NftCard.tsx type NftCardAction (line 14) | interface NftCardAction { type NftCardProps (line 19) | interface NftCardProps { FILE: packages/react-sdk/src/components/Profile.tsx type BalanceType (line 32) | type BalanceType = keyof UseCrossVmTokenBalanceData type ProfileConfig (line 34) | interface ProfileConfig extends ConnectModalConfig {} type ProfileProps (line 36) | interface ProfileProps { FILE: packages/react-sdk/src/components/ScheduledTransactionList.tsx type ScheduledTransactionCardProps (line 95) | interface ScheduledTransactionCardProps { type ScheduledTransactionListProps (line 321) | interface ScheduledTransactionListProps { FILE: packages/react-sdk/src/components/TransactionButton.tsx type TransactionButtonProps (line 9) | interface TransactionButtonProps FILE: packages/react-sdk/src/components/TransactionDialog.tsx type TransactionDialogProps (line 11) | interface TransactionDialogProps { FILE: packages/react-sdk/src/components/TransactionLink.tsx type TransactionLinkProps (line 8) | interface TransactionLinkProps { FILE: packages/react-sdk/src/components/internal/Button.tsx type ButtonProps (line 6) | interface ButtonProps FILE: packages/react-sdk/src/components/internal/Dialog.tsx type DialogProps (line 9) | interface DialogProps { FILE: packages/react-sdk/src/components/internal/StyleWrapper.tsx type StyleWrapperProps (line 4) | interface StyleWrapperProps { FILE: packages/react-sdk/src/core/theme.tsx type ThemeColors (line 3) | type ThemeColors = { type Theme (line 32) | type Theme = { type ButtonVariant (line 36) | type ButtonVariant = "primary" | "secondary" | "outline" | "link" type ButtonStyles (line 38) | type ButtonStyles = { type DeepPartial (line 106) | type DeepPartial = { type ThemeProviderProps (line 110) | type ThemeProviderProps = React.PropsWithChildren<{ FILE: packages/react-sdk/src/provider/DarkModeProvider.tsx type DarkModeContextType (line 3) | type DarkModeContextType = { function DarkModeProvider (line 11) | function DarkModeProvider({ function useDarkMode (line 22) | function useDarkMode() { FILE: packages/react-sdk/src/provider/FlowProvider.tsx type ColorMode (line 15) | type ColorMode = "light" | "dark" | "system" type FlowProviderProps (line 17) | interface FlowProviderProps { function FlowProvider (line 36) | function FlowProvider({ FILE: packages/rlp/src/index.ts type EncodeInput (line 5) | type EncodeInput = function encode (line 28) | function encode(input: EncodeInput): Buffer { function safeParseInt (line 49) | function safeParseInt(v: string, base: number): number { function encodeLength (line 55) | function encodeLength(len: number, offset: number): Buffer { function decode (line 81) | function decode(input: Buffer | Uint8Array, stream?: boolean): Buffer { function getLength (line 104) | function getLength( function _decode (line 134) | function _decode(input: Buffer | Uint8Array): any { function isHexPrefixed (line 209) | function isHexPrefixed(str: string) { function stripHexPrefix (line 213) | function stripHexPrefix(str: string) { function intToHex (line 220) | function intToHex(integer: number) { function padToEven (line 228) | function padToEven(a: string) { function intToBuffer (line 232) | function intToBuffer(integer: number) { function toBuffer (line 238) | function toBuffer( FILE: packages/sdk/src/VERSION.ts constant VERSION (line 4) | const VERSION: string = FILE: packages/sdk/src/account/account.ts type AccountQueryOptions (line 12) | interface AccountQueryOptions { function createAccount (line 18) | function createAccount(context: SdkContext) { FILE: packages/sdk/src/block/block.ts type BlockQueryOptions (line 11) | interface BlockQueryOptions { function createBlock (line 17) | function createBlock(context: SdkContext) { FILE: packages/sdk/src/build/build-arguments.ts function args (line 30) | function args(ax: CadenceArgument[]) { function arg (line 61) | function arg>( FILE: packages/sdk/src/build/build-at-block-height.ts function atBlockHeight (line 37) | function atBlockHeight(height: number): InteractionBuilderFn { FILE: packages/sdk/src/build/build-at-block-id.ts function atBlockId (line 43) | function atBlockId(id: string): InteractionBuilderFn { FILE: packages/sdk/src/build/build-at-latest-block.ts function atLatestBlock (line 42) | function atLatestBlock(isSealed = false): InteractionBuilderFn { FILE: packages/sdk/src/build/build-authorizations.ts type SignableMessage (line 13) | interface SignableMessage { type SigningResult (line 52) | interface SigningResult { type SigningFn (line 72) | type SigningFn = ( function authorizations (line 129) | function authorizations(ax: Array = []) { function authorization (line 182) | function authorization( FILE: packages/sdk/src/build/build-get-account.test.ts constant ADDRESS (line 5) | const ADDRESS = "0xf117a8efa34ffd58" FILE: packages/sdk/src/build/build-get-account.ts function getAccount (line 29) | function getAccount(addr: string): InteractionBuilderFn { FILE: packages/sdk/src/build/build-get-block-header.ts function getBlockHeader (line 43) | function getBlockHeader( FILE: packages/sdk/src/build/build-get-block.ts function getBlock (line 29) | function getBlock( FILE: packages/sdk/src/build/build-get-collection.ts function getCollection (line 39) | function getCollection(id: string | null = null): InteractionBuilderFn { FILE: packages/sdk/src/build/build-get-events-at-block-height-range.ts function getEventsAtBlockHeightRange (line 40) | function getEventsAtBlockHeightRange( FILE: packages/sdk/src/build/build-get-events-at-block-ids.ts function getEventsAtBlockIds (line 31) | function getEventsAtBlockIds( FILE: packages/sdk/src/build/build-get-events.ts function getEvents (line 33) | function getEvents( FILE: packages/sdk/src/build/build-get-latest-block.ts function getLatestBlock (line 37) | function getLatestBlock( FILE: packages/sdk/src/build/build-get-network-parameters.ts function getNetworkParameters (line 35) | function getNetworkParameters(): InteractionBuilderFn { FILE: packages/sdk/src/build/build-get-node-version-info.ts function getNodeVersionInfo (line 36) | function getNodeVersionInfo(): InteractionBuilderFn { FILE: packages/sdk/src/build/build-get-transaction-status.ts function getTransactionStatus (line 25) | function getTransactionStatus( FILE: packages/sdk/src/build/build-get-transaction.ts function getTransaction (line 28) | function getTransaction(id: string): InteractionBuilderFn { FILE: packages/sdk/src/build/build-invariant.js function invariant (line 3) | function invariant(...args) { FILE: packages/sdk/src/build/build-limit.ts function limit (line 40) | function limit(limit: number): InteractionBuilderFn { FILE: packages/sdk/src/build/build-payer.ts function payer (line 62) | function payer(ax: AccountAuthorization[] = []) { FILE: packages/sdk/src/build/build-ping.ts function ping (line 34) | function ping(): InteractionBuilderFn { FILE: packages/sdk/src/build/build-proposer.ts function proposer (line 47) | function proposer(authz: AccountAuthorization) { FILE: packages/sdk/src/build/build-ref.ts function ref (line 34) | function ref(refBlock: string): InteractionBuilderFn { FILE: packages/sdk/src/build/build-script.ts function script (line 42) | function script( FILE: packages/sdk/src/build/build-subscribe-events.ts function subscribeEvents (line 53) | function subscribeEvents({ FILE: packages/sdk/src/build/build-transaction.ts constant DEFAULT_SCRIPT_ACCOUNTS (line 10) | const DEFAULT_SCRIPT_ACCOUNTS: string[] = [] constant DEFAULT_REF (line 11) | const DEFAULT_REF: any = null function transaction (line 66) | function transaction( FILE: packages/sdk/src/build/build-validator.ts function validator (line 36) | function validator(cb: Function): InteractionBuilderFn { FILE: packages/sdk/src/build/build-voucher-intercept.ts type VoucherInterceptFn (line 4) | type VoucherInterceptFn = (voucher: Voucher) => any | Promise function voucherIntercept (line 41) | function voucherIntercept(fn: VoucherInterceptFn): InteractionBuilderFn { FILE: packages/sdk/src/build/build.ts function build (line 50) | function build( FILE: packages/sdk/src/context/context.ts type SdkClientOptions (line 6) | interface SdkClientOptions { type SdkContext (line 35) | interface SdkContext { function createContext (line 56) | function createContext({ FILE: packages/sdk/src/context/get-global-transport.ts function getGlobalTransport (line 38) | function getGlobalTransport(cfg: Record): SdkTransport { function isTransportObject (line 56) | function isTransportObject(transport: any): transport is SdkTransport { FILE: packages/sdk/src/context/global.ts constant DEFAULT_COMPUTE_LIMIT (line 7) | const DEFAULT_COMPUTE_LIMIT = 10 function createGlobalContext (line 11) | async function createGlobalContext(): Promise { function getGlobalContext (line 73) | async function getGlobalContext(): Promise { function withGlobalContext (line 86) | function withGlobalContext< FILE: packages/sdk/src/decode/decode-stream.ts type DecodeResponseFn (line 4) | type DecodeResponseFn = ( function relayEvent (line 100) | function relayEvent(event: any) { method on (line 111) | on(channel: string, callback: any) { method off (line 115) | off(channel: string, callback: any) { function taskQueue (line 125) | function taskQueue() { FILE: packages/sdk/src/decode/decode.ts type DecoderFunction (line 4) | type DecoderFunction = ( type DecoderMap (line 10) | interface DecoderMap { type DecodeInstructions (line 14) | interface DecodeInstructions { type CompositeField (line 19) | interface CompositeField { type CompositeInstruction (line 24) | interface CompositeInstruction { type KeyValuePair (line 29) | interface KeyValuePair { type InclusiveRangeValue (line 34) | interface InclusiveRangeValue { type FlowEvent (line 41) | interface FlowEvent { type FlowBlockEvent (line 49) | interface FlowBlockEvent extends FlowEvent { type FlowTransactionStatus (line 55) | interface FlowTransactionStatus { type FlowResponse (line 63) | interface FlowResponse { FILE: packages/sdk/src/decode/sdk-decode.ts function createDecode (line 5) | function createDecode(context: SdkContext) { FILE: packages/sdk/src/encode/encode.ts constant TRANSACTION_DOMAIN_TAG (line 132) | const TRANSACTION_DOMAIN_TAG = rightPaddedHexBuffer( type VoucherArgument (line 325) | interface VoucherArgument { type VoucherProposalKey (line 330) | interface VoucherProposalKey { type Sig (line 336) | interface Sig { type TransactionProposalKey (line 346) | interface TransactionProposalKey { type Transaction (line 351) | interface Transaction { type Voucher (line 363) | interface Voucher { type PayloadField (line 375) | interface PayloadField { FILE: packages/sdk/src/interaction/interaction.ts type AuthorizationFn (line 15) | type AuthorizationFn = (acct: InteractionAccount) => InteractionAccount type AccountAuthorization (line 16) | type AccountAuthorization = type CadenceArgument (line 20) | type CadenceArgument> = { type InteractionBuilderFn (line 27) | type InteractionBuilderFn = ( constant ACCT (line 31) | const ACCT = `{ constant ARG (line 48) | const ARG = `{ constant KEYS (line 109) | const KEYS = new Set(Object.keys(JSON.parse(IX) as Interaction)) type IPrepAccountOpts (line 302) | interface IPrepAccountOpts { type MaybePromise (line 611) | type MaybePromise = T | Promise function pipe (line 678) | function pipe( FILE: packages/sdk/src/node-version-info/node-version-info.ts function nodeVersionInfo (line 35) | async function nodeVersionInfo( FILE: packages/sdk/src/resolve/resolve-accounts.ts constant MAX_DEPTH_LIMIT (line 9) | const MAX_DEPTH_LIMIT = 5 type ROLES (line 21) | enum ROLES { function debug (line 27) | function debug() { function recurseFlatMap (line 45) | function recurseFlatMap(el: T, depthLimit = 3) { function buildPreSignable (line 61) | function buildPreSignable( function removeUnusedIxAccounts (line 82) | async function removeUnusedIxAccounts( function addAccountToIx (line 109) | function addAccountToIx(ix: Interaction, newAccount: InteractionAccount) { function uniqueAccountsFlatMap (line 136) | function uniqueAccountsFlatMap(accounts: InteractionAccount[]) { function resolveSingleAccount (line 159) | async function resolveSingleAccount( function replaceRoles (line 237) | async function replaceRoles( function resolveAccountsByIds (line 275) | async function resolveAccountsByIds( function resolveAccounts (line 334) | async function resolveAccounts( FILE: packages/sdk/src/resolve/resolve-arguments.ts type Argument (line 5) | interface Argument { function cast (line 15) | function cast(arg: Argument): any { function handleArgResolution (line 26) | async function handleArgResolution( function resolveArguments (line 75) | async function resolveArguments(ix: Interaction): Promise { FILE: packages/sdk/src/resolve/resolve-cadence.ts function isOldIdentifierSyntax (line 13) | function isOldIdentifierSyntax( function isNewIdentifierSyntax (line 29) | function isNewIdentifierSyntax(cadence: string): boolean { function getContractIdentifierSyntaxMatches (line 33) | function getContractIdentifierSyntaxMatches( function createResolveCadence (line 39) | function createResolveCadence(context: SdkContext) { FILE: packages/sdk/src/resolve/resolve-compute-limit.ts function createResolveComputeLimit (line 6) | function createResolveComputeLimit(context: SdkContext) { FILE: packages/sdk/src/resolve/resolve-final-normalization.ts function resolveFinalNormalization (line 10) | async function resolveFinalNormalization( FILE: packages/sdk/src/resolve/resolve-proposer-sequence-number.ts type NodeConfig (line 13) | interface NodeConfig { FILE: packages/sdk/src/resolve/resolve-ref-block-id.ts function getRefId (line 16) | async function getRefId(opts?: {[key: string]: any}): Promise { function resolveRefBlockId (line 41) | function resolveRefBlockId(opts?: {[key: string]: any}) { FILE: packages/sdk/src/resolve/resolve-signatures.test.ts constant TRANSACTION (line 20) | const TRANSACTION = { FILE: packages/sdk/src/resolve/resolve-signatures.ts function resolveSignatures (line 22) | async function resolveSignatures(ix: Interaction) { function fetchSignature (line 67) | function fetchSignature(ix: Interaction, payload: string) { function buildSignable (line 89) | function buildSignable( function prepForEncoding (line 114) | function prepForEncoding(ix: Interaction): Transaction { FILE: packages/sdk/src/resolve/resolve-validators.ts function resolveValidators (line 10) | async function resolveValidators(ix: Interaction): Promise { FILE: packages/sdk/src/resolve/resolve-voucher-intercept.ts function resolveVoucherIntercept (line 11) | async function resolveVoucherIntercept( FILE: packages/sdk/src/resolve/resolve.ts type DebugCallback (line 24) | type DebugCallback = (ix: Interaction, log: any, accts?: any) => any function createResolve (line 55) | function createResolve(context: SdkContext) { function createExecFetchRef (line 114) | function createExecFetchRef(context: SdkContext) { function createExecFetchSequenceNumber (line 135) | function createExecFetchSequenceNumber(context: SdkContext) { FILE: packages/sdk/src/resolve/voucher.ts function findInsideSigners (line 27) | function findInsideSigners(ix: Interaction) { function findOutsideSigners (line 67) | function findOutsideSigners(ix: Interaction) { FILE: packages/sdk/src/response/response.ts constant DEFAULT_RESPONSE (line 1) | const DEFAULT_RESPONSE = { FILE: packages/sdk/src/sdk-client.ts function createSdkClient (line 24) | function createSdkClient(options: SdkClientOptions) { FILE: packages/sdk/src/test-utils/authz-fn.ts function sig (line 19) | function sig(opts: Partial) { type IAuthzOpts (line 23) | interface IAuthzOpts { function authzFn (line 33) | function authzFn(opts: IAuthzOpts = {}) { type IAuthzResolveOpts (line 57) | interface IAuthzResolveOpts { function authzResolve (line 67) | function authzResolve(opts: IAuthzResolveOpts = {}) { constant ROLE (line 78) | const ROLE = {proposer: false, authorizer: false, payer: false} type IAuthzResolveMany (line 81) | interface IAuthzResolveMany { function authzResolveMany (line 94) | function authzResolveMany( function authzDeepResolveMany (line 122) | function authzDeepResolveMany( FILE: packages/sdk/src/test-utils/mock-send.js function mockAccountResponse (line 4) | function mockAccountResponse(ix, numberOfKeys = 5) { function mockGetBlockResponse (line 23) | function mockGetBlockResponse(ix) { function mockSend (line 34) | function mockSend(fallback = identity) { FILE: packages/sdk/src/transport/send/send.ts function createSend (line 11) | function createSend(context: SdkContext) { FILE: packages/sdk/src/transport/subscribe/errors.ts class SubscriptionsNotSupportedError (line 1) | class SubscriptionsNotSupportedError extends Error { method constructor (line 2) | constructor() { FILE: packages/sdk/src/transport/subscribe/subscribe-raw.ts function createSubscribeRawAsync (line 7) | function createSubscribeRawAsync( function createSubscribeRaw (line 64) | function createSubscribeRaw(context: SdkContext) { function subscribeRaw (line 123) | function subscribeRaw( FILE: packages/sdk/src/transport/subscribe/subscribe.ts function createSubscribeAsync (line 8) | function createSubscribeAsync( function createSubscribe (line 47) | function createSubscribe(context: SdkContext) { function subscribe (line 104) | function subscribe( FILE: packages/sdk/src/transport/subscribe/types.ts type SubscribeParams (line 8) | type SubscribeParams = { type SubscribeRawParams (line 27) | type SubscribeRawParams = { FILE: packages/sdk/src/wallet-utils/encode-signable.test.ts constant MESSAGE (line 10) | const MESSAGE = { constant VOUCHER (line 24) | const VOUCHER = { constant PAYER_SIGNABLE (line 35) | const PAYER_SIGNABLE = { constant NON_PAYER_SIGNABLE (line 45) | const NON_PAYER_SIGNABLE = { FILE: packages/sdk/src/wallet-utils/encode-signable.ts type PayloadSig (line 7) | interface PayloadSig { type Voucher (line 14) | interface Voucher { type Signable (line 30) | interface Signable { class UnableToDetermineMessageEncodingTypeForSignerAddress (line 54) | class UnableToDetermineMessageEncodingTypeForSignerAddress extends Error { method constructor (line 55) | constructor(signerAddress: string) { FILE: packages/sdk/src/wallet-utils/validate-tx.test.ts constant MESSAGE (line 7) | const MESSAGE = { constant VOUCHER (line 25) | const VOUCHER = { constant PAYER_SIGNABLE (line 39) | const PAYER_SIGNABLE = { constant NON_PAYER_SIGNABLE (line 49) | const NON_PAYER_SIGNABLE = { FILE: packages/transport-grpc/src/send-execute-script.js function sendExecuteScriptAtBlockIDRequest (line 14) | async function sendExecuteScriptAtBlockIDRequest(ix, context, opts) { function sendExecuteScriptAtBlockHeightRequest (line 37) | async function sendExecuteScriptAtBlockHeightRequest(ix, context, opts) { function sendExecuteScriptAtLatestBlockRequest (line 60) | async function sendExecuteScriptAtLatestBlockRequest(ix, context, opts) { function constructResponse (line 81) | function constructResponse(ix, context, res) { function sendExecuteScript (line 91) | async function sendExecuteScript(ix, context = {}, opts = {}) { FILE: packages/transport-grpc/src/send-get-account.js function sendGetAccountAtBlockHeightRequest (line 30) | async function sendGetAccountAtBlockHeightRequest(ix, context, opts) { function sendGetAccountAtLatestBlockRequest (line 47) | async function sendGetAccountAtLatestBlockRequest(ix, context, opts) { function constructResponse (line 63) | function constructResponse(ix, context, res) { function sendGetAccount (line 105) | async function sendGetAccount(ix, context = {}, opts = {}) { FILE: packages/transport-grpc/src/send-get-block-header.js function sendGetBlockHeaderByIDRequest (line 13) | async function sendGetBlockHeaderByIDRequest(ix, context, opts) { function sendGetBlockHeaderByHeightRequest (line 24) | async function sendGetBlockHeaderByHeightRequest(ix, context, opts) { function sendGetLatestBlockHeaderRequest (line 40) | async function sendGetLatestBlockHeaderRequest(ix, context, opts) { function constructResponse (line 59) | function constructResponse(ix, context, res) { function sendGetBlockHeader (line 74) | async function sendGetBlockHeader(ix, context = {}, opts = {}) { FILE: packages/transport-grpc/src/send-get-block.js function sendGetBlockByIDRequest (line 13) | async function sendGetBlockByIDRequest(ix, context, opts) { function sendGetBlockByHeightRequest (line 24) | async function sendGetBlockByHeightRequest(ix, context, opts) { function sendGetBlockRequest (line 35) | async function sendGetBlockRequest(ix, context, opts) { function constructResponse (line 49) | function constructResponse(ix, context, res) { function sendGetBlock (line 83) | async function sendGetBlock(ix, context = {}, opts = {}) { FILE: packages/transport-grpc/src/send-get-collection.js function sendGetCollection (line 8) | async function sendGetCollection(ix, context = {}, opts = {}) { FILE: packages/transport-grpc/src/send-get-events.js function sendGetEventsForHeightRangeRequest (line 12) | async function sendGetEventsForHeightRangeRequest(ix, context, opts) { function sendGetEventsForBlockIDsRequest (line 31) | async function sendGetEventsForBlockIDsRequest(ix, context, opts) { function constructResponse (line 49) | function constructResponse(ix, context, res) { function sendGetEvents (line 79) | async function sendGetEvents(ix, context = {}, opts = {}) { FILE: packages/transport-grpc/src/send-get-network-parameters.js function sendGetNetworkParameters (line 5) | async function sendGetNetworkParameters(ix, context = {}, opts = {}) { FILE: packages/transport-grpc/src/send-get-node-version-info.js function sendGetNodeVersionInfo (line 7) | async function sendGetNodeVersionInfo(ix, context = {}, opts = {}) { FILE: packages/transport-grpc/src/send-get-transaction-status.js constant STATUS_MAP (line 5) | const STATUS_MAP = { function sendGetTransactionStatus (line 19) | async function sendGetTransactionStatus(ix, context = {}, opts = {}) { FILE: packages/transport-grpc/src/send-get-transaction.js function sendGetTransaction (line 8) | async function sendGetTransaction(ix, context = {}, opts = {}) { FILE: packages/transport-grpc/src/send-ping.js function sendPing (line 5) | async function sendPing(ix, context = {}, opts = {}) { FILE: packages/transport-grpc/src/send-transaction.js function sendTransaction (line 15) | async function sendTransaction(ix, context = {}, opts = {}) { FILE: packages/transport-grpc/src/unary.js function unary (line 7) | async function unary(host, method, request, context) { FILE: packages/transport-http/src/send/connect-subscribe-events.ts type RawSubscribeEventsStream (line 6) | type RawSubscribeEventsStream = StreamConnection<{ function constructData (line 13) | function constructData(ix: Interaction, context: any, data: any) { function constructResponse (line 41) | function constructResponse(ix: Interaction, context: any, stream: any) { function connectSubscribeEvents (line 50) | async function connectSubscribeEvents( FILE: packages/transport-http/src/send/connect-ws.test.ts method close (line 68) | close() { method get (line 86) | get(target, name) { FILE: packages/transport-http/src/send/connect-ws.ts class WebsocketError (line 6) | class WebsocketError extends Error { method constructor (line 11) | constructor({ type WebSocketConnection (line 36) | type WebSocketConnection = StreamConnection<{ function connectWs (line 40) | function connectWs({ function buildConnectionUrl (line 145) | function buildConnectionUrl( FILE: packages/transport-http/src/send/http-request.js class HTTPRequestError (line 9) | class HTTPRequestError extends Error { method constructor (line 10) | constructor({ function httpRequest (line 55) | async function httpRequest({ FILE: packages/transport-http/src/send/http-request.test.js method json (line 29) | async json() { method text (line 32) | async text() { method json (line 49) | async json() { method json (line 82) | async json() { FILE: packages/transport-http/src/send/send-execute-script.js function sendExecuteScriptAtBlockIDRequest (line 5) | async function sendExecuteScriptAtBlockIDRequest(ix, context, opts) { function sendExecuteScriptAtBlockHeightRequest (line 25) | async function sendExecuteScriptAtBlockHeightRequest(ix, context, opts) { function sendExecuteScriptAtLatestBlockRequest (line 45) | async function sendExecuteScriptAtLatestBlockRequest(ix, context, opts) { function constructResponse (line 65) | function constructResponse(ix, context, res) { function sendExecuteScript (line 74) | async function sendExecuteScript(ix, context = {}, opts = {}) { FILE: packages/transport-http/src/send/send-get-account.js function sendGetAccountAtBlockHeightRequest (line 18) | async function sendGetAccountAtBlockHeightRequest(ix, context, opts) { function sendGetAccountAtLatestBlockRequest (line 31) | async function sendGetAccountAtLatestBlockRequest(ix, context, opts) { function constructResponse (line 44) | function constructResponse(ix, context, res) { function sendGetAccount (line 79) | async function sendGetAccount(ix, context = {}, opts = {}) { FILE: packages/transport-http/src/send/send-get-block-header.js function sendGetBlockHeaderByIDRequest (line 4) | async function sendGetBlockHeaderByIDRequest(ix, context, opts) { function sendGetBlockHeaderByHeightRequest (line 17) | async function sendGetBlockHeaderByHeightRequest(ix, context, opts) { function sendGetLatestBlockHeaderRequest (line 30) | async function sendGetLatestBlockHeaderRequest(ix, context, opts) { function constructResponse (line 45) | function constructResponse(ix, context, res) { function sendGetBlockHeader (line 60) | async function sendGetBlockHeader(ix, context = {}, opts = {}) { FILE: packages/transport-http/src/send/send-get-block.js function sendGetBlockByIDRequest (line 4) | async function sendGetBlockByIDRequest(ix, context, opts) { function sendGetBlockByHeightRequest (line 17) | async function sendGetBlockByHeightRequest(ix, context, opts) { function sendGetBlockRequest (line 30) | async function sendGetBlockRequest(ix, context, opts) { function constructResponse (line 45) | function constructResponse(ix, context, res) { function sendGetBlock (line 71) | async function sendGetBlock(ix, context = {}, opts = {}) { FILE: packages/transport-http/src/send/send-get-collection.js function sendGetCollection (line 4) | async function sendGetCollection(ix, context = {}, opts = {}) { FILE: packages/transport-http/src/send/send-get-events.js function sendGetEventsForHeightRangeRequest (line 4) | async function sendGetEventsForHeightRangeRequest(ix, context, opts) { function sendGetEventsForBlockIDsRequest (line 17) | async function sendGetEventsForBlockIDsRequest(ix, context, opts) { function constructResponse (line 32) | function constructResponse(ix, context, res) { function sendGetEvents (line 59) | async function sendGetEvents(ix, context = {}, opts = {}) { FILE: packages/transport-http/src/send/send-get-network-parameters.js function sendGetNetworkParameters (line 4) | async function sendGetNetworkParameters(ix, context = {}, opts = {}) { FILE: packages/transport-http/src/send/send-get-node-version-info.ts function sendGetNodeVersionInfo (line 5) | async function sendGetNodeVersionInfo( FILE: packages/transport-http/src/send/send-get-transaction-status.js constant STATUS_MAP (line 4) | const STATUS_MAP = { function sendGetTransactionStatus (line 13) | async function sendGetTransactionStatus(ix, context = {}, opts = {}) { FILE: packages/transport-http/src/send/send-get-transaction.js function sendGetTransaction (line 4) | async function sendGetTransaction(ix, context = {}, opts = {}) { FILE: packages/transport-http/src/send/send-http.ts type InteractionModule (line 17) | interface InteractionModule { type IContext (line 32) | interface IContext extends ISendPingContext { type IOptsCommon (line 36) | interface IOptsCommon { type IOpts (line 40) | interface IOpts extends IOptsCommon { FILE: packages/transport-http/src/send/send-ping.ts type ISendPingContext (line 5) | interface ISendPingContext { type ISendPingOpts (line 9) | interface ISendPingOpts { function sendPing (line 14) | async function sendPing( FILE: packages/transport-http/src/send/send-transaction.js function sendTransaction (line 7) | async function sendTransaction(ix, context = {}, opts = {}) { FILE: packages/transport-http/src/send/utils.js function safeParseJSON (line 1) | function safeParseJSON(data) { FILE: packages/transport-http/src/subscribe/handlers/account-statuses.ts type AccountStatusesArgs (line 8) | type AccountStatusesArgs = SubscriptionArgs type BlockDigestsData (line 10) | type BlockDigestsData = RawSubscriptionData type BlockHeadersData (line 10) | type BlockHeadersData = RawSubscriptionData type BlocksData (line 10) | type BlocksData = RawSubscriptionData type BlocksDataDto (line 12) | type BlocksDataDto = { method onData (line 46) | onData(data: BlocksDataDto) { method onError (line 76) | onError(error: Error) { method getConnectionArgs (line 79) | getConnectionArgs() { FILE: packages/transport-http/src/subscribe/handlers/events.ts type EventsArgs (line 8) | type EventsArgs = SubscriptionArgs type EventsData (line 10) | type EventsData = RawSubscriptionData type EventsArgsDto (line 12) | type EventsArgsDto = ( type EventsDataDto (line 26) | type EventsDataDto = { method onData (line 61) | onData(rawData: EventsDataDto) { method onError (line 93) | onError(error: Error) { method getConnectionArgs (line 96) | getConnectionArgs() { FILE: packages/transport-http/src/subscribe/handlers/transaction-statuses.ts constant STATUS_MAP (line 9) | const STATUS_MAP = { type TransactionStatusesArgs (line 18) | type TransactionStatusesArgs = type TransactionStatusesData (line 21) | type TransactionStatusesData = type TransactionStatusesArgsDto (line 24) | type TransactionStatusesArgsDto = { type TransactionStatusesDataDto (line 28) | type TransactionStatusesDataDto = { method onData (line 61) | onData(data: TransactionStatusesDataDto) { method onError (line 87) | onError(error: Error) { method getConnectionArgs (line 90) | getConnectionArgs() { FILE: packages/transport-http/src/subscribe/handlers/types.ts type SubscriptionHandler (line 1) | interface SubscriptionHandler< type DataSubscriber (line 18) | interface DataSubscriber { function createSubscriptionHandler (line 35) | function createSubscriptionHandler< type BlockArgsDto (line 47) | type BlockArgsDto = FILE: packages/transport-http/src/subscribe/models.ts type Action (line 1) | enum Action { type BaseMessageRequest (line 6) | interface BaseMessageRequest { type BaseMessageResponse (line 11) | interface BaseMessageResponse { type ListSubscriptionsMessageRequest (line 20) | interface ListSubscriptionsMessageRequest extends BaseMessageRequest { type ListSubscriptionsMessageResponse (line 24) | interface ListSubscriptionsMessageResponse extends BaseMessageResponse { type SubscribeMessageRequest (line 29) | interface SubscribeMessageRequest extends BaseMessageRequest { type SubscribeMessageResponse (line 35) | interface SubscribeMessageResponse extends BaseMessageResponse { type UnsubscribeMessageRequest (line 40) | interface UnsubscribeMessageRequest extends BaseMessageRequest { type UnsubscribeMessageResponse (line 44) | type UnsubscribeMessageResponse = BaseMessageResponse & { type SubscriptionEntry (line 49) | type SubscriptionEntry = { type MessageRequest (line 55) | type MessageRequest = type MessageResponse (line 60) | type MessageResponse = type SubscriptionDataMessage (line 65) | type SubscriptionDataMessage = { class SocketError (line 69) | class SocketError extends Error { method constructor (line 72) | private constructor(code: number, message: string) { method fromMessage (line 78) | static fromMessage(error: {code: number; message: string}) { FILE: packages/transport-http/src/subscribe/subscribe.ts constant SUBSCRIPTION_HANDLERS (line 16) | const SUBSCRIPTION_HANDLERS = [ function subscribe (line 31) | function subscribe( function getWsUrl (line 60) | function getWsUrl(node: string) { FILE: packages/transport-http/src/subscribe/subscription-manager.ts constant WS_OPEN (line 14) | const WS_OPEN = 1 type DeepRequired (line 16) | type DeepRequired = Required<{ type InferHandler (line 20) | type InferHandler = T extends SubscriptionHandler ? H : never type SubscriptionInfo (line 22) | interface SubscriptionInfo { type SubscriptionManagerConfig (line 31) | interface SubscriptionManagerConfig { class SubscriptionManager (line 58) | class SubscriptionManager[]> { method constructor (line 68) | constructor(handlers: Handlers, config: SubscriptionManagerConfig) { method subscribe (line 81) | subscribe(opts: { method _subscribe (line 97) | private async _subscribe(opts: { method unsubscribe (line 141) | private unsubscribe(id: string): void { method connect (line 162) | private async connect() { method handleSocketError (line 239) | private async handleSocketError(error: any) { method sendSubscribe (line 294) | private async sendSubscribe(sub: SubscriptionInfo) { method sendUnsubscribe (line 312) | private async sendUnsubscribe(sub: SubscriptionInfo) { method request (line 332) | private async request(request: MessageRequest): Promise { type Key (line 267) | interface Key { type Service (line 281) | interface Service { type Signature (line 323) | interface Signature { type Transaction (line 337) | interface Transaction { type TransactionStatus (line 391) | interface TransactionStatus { type TransactionExecutionStatus (line 420) | enum TransactionExecutionStatus { type Provider (line 431) | interface Provider { type NodeVersionInfo (line 473) | interface NodeVersionInfo { type StreamConnection (line 500) | interface StreamConnection { type EventFilter (line 516) | interface EventFilter { type BlockHeartbeat (line 543) | interface BlockHeartbeat { type EventStream (line 558) | type EventStream = StreamConnection<{ FILE: packages/typedefs/src/interaction.ts type InteractionTag (line 4) | enum InteractionTag { type InteractionStatus (line 24) | enum InteractionStatus { type TransactionRole (line 32) | enum TransactionRole { type InteractionResolverKind (line 41) | enum InteractionResolverKind { type InteractionAccount (line 46) | interface InteractionAccount { type Interaction (line 110) | interface Interaction { FILE: packages/typedefs/src/subscriptions.ts type SubscriptionTopic (line 15) | enum SubscriptionTopic { type SubscriptionData (line 27) | type SubscriptionData = type RawSubscriptionData (line 33) | type RawSubscriptionData = type SubscriptionArgs (line 39) | type SubscriptionArgs = type Subscription (line 45) | type Subscription = { type SubscriptionArgsMap (line 52) | type SubscriptionArgsMap = { type SubscriptionDataMap (line 61) | type SubscriptionDataMap = { type RawSubscriptionDataMap (line 70) | type RawSubscriptionDataMap = { type BlockSubscriptionArgs (line 118) | type BlockSubscriptionArgs = type AccountStatusSubscriptionArgs (line 128) | type AccountStatusSubscriptionArgs = { type TransactionStatusSubscriptionArgs (line 136) | type TransactionStatusSubscriptionArgs = { type EventSubscriptionArgs (line 140) | type EventSubscriptionArgs = { FILE: packages/typedefs/src/transport.ts type InteractionModule (line 9) | interface InteractionModule { type IContext (line 24) | interface IContext { type IOptsCommon (line 27) | interface IOptsCommon { type IOpts (line 31) | interface IOpts extends IOptsCommon { type SubscribeFn (line 91) | type SubscribeFn = ( type SendFn (line 101) | type SendFn = ( type SdkTransport (line 110) | type SdkTransport = { FILE: packages/types/src/types.test.ts function registerTest (line 279) | function registerTest([ FILE: packages/types/src/types.ts type JsonCdc (line 3) | type JsonCdc = { type JsonCdcLabel (line 8) | type JsonCdcLabel> = type TypeDescriptor (line 11) | interface TypeDescriptor> { type TypeDescriptorInput (line 17) | type TypeDescriptorInput< type PathValue (line 21) | interface PathValue { type ReferenceValue (line 29) | interface ReferenceValue { FILE: packages/util-actor/src/index.test.ts constant COUNT (line 3) | const COUNT = "COUNT" constant DUMP (line 4) | const DUMP = "DUMP" constant INC (line 5) | const INC = "INC" constant KEYS (line 6) | const KEYS = "KEYS" constant UPDATED (line 7) | const UPDATED = "UPDATED" constant SUBSCRIBE (line 8) | const SUBSCRIBE = "SUBSCRIBE" constant UNSUBSCRIBE (line 9) | const UNSUBSCRIBE = "UNSUBSCRIBE" FILE: packages/util-actor/src/index.ts constant INIT (line 11) | const INIT = "INIT" constant SUBSCRIBE (line 12) | const SUBSCRIBE = "SUBSCRIBE" constant UNSUBSCRIBE (line 13) | const UNSUBSCRIBE = "UNSUBSCRIBE" constant UPDATED (line 14) | const UPDATED = "UPDATED" constant SNAPSHOT (line 15) | const SNAPSHOT = "SNAPSHOT" constant EXIT (line 16) | const EXIT = "EXIT" constant TERMINATE (line 17) | const TERMINATE = "TERMINATE" constant DUMP (line 18) | const DUMP = "DUMP" constant INC (line 19) | const INC = "INC" constant KEYS (line 20) | const KEYS = "KEYS" type IRegistryRecord (line 22) | interface IRegistryRecord { type IRoot (line 29) | interface IRoot { type ActorContext (line 33) | type ActorContext = ReturnType type Letter (line 35) | type Letter = { type HandlerFn (line 44) | type HandlerFn = ( type SpawnFn (line 49) | type SpawnFn = (address?: string) => void type ActorHandlers (line 50) | interface ActorHandlers { constant FCL_REGISTRY (line 76) | const FCL_REGISTRY = root.FCL_REGISTRY constant DEFAULT_TIMEOUT (line 79) | const DEFAULT_TIMEOUT = 5000 function send (line 93) | function send( function subscriber (line 278) | function subscriber( function snapshoter (line 312) | function snapshoter(address: string, spawnFn: SpawnFn) { FILE: packages/util-actor/src/mailbox/index.ts type IMailbox (line 1) | interface IMailbox { method deliver (line 10) | async deliver(msg: T) { method receive (line 18) | receive(): Promise { FILE: packages/util-address/src/index.ts function sansPrefix (line 14) | function sansPrefix(address: string | null): string | null { function withPrefix (line 32) | function withPrefix(address: string | null): string | null { function display (line 42) | function display(address: string | null): string | null { FILE: packages/util-encode-key/src/index.test.ts constant PUBLIC_KEYS (line 3) | const PUBLIC_KEYS = [ constant CURVES (line 9) | const CURVES = [ECDSA_P256, ECDSA_secp256k1] constant HASHINGS (line 11) | const HASHINGS = [SHA2_256, SHA3_256] constant WEIGHTS (line 13) | const WEIGHTS = [0, 32, 512, 1000] FILE: packages/util-encode-key/src/index.ts constant ECDSA_P256 (line 6) | const ECDSA_P256 = 2 constant VALID_CURVES (line 8) | const VALID_CURVES = new Set([ECDSA_P256, ECDSA_secp256k1]) constant SHA2_256 (line 12) | const SHA2_256 = 1 constant SHA3_256 (line 13) | const SHA3_256 = 3 constant VALID_HASHINGS (line 14) | const VALID_HASHINGS = new Set([SHA2_256, SHA3_256]) function encodeKey (line 34) | function encodeKey( FILE: packages/util-invariant/src/index.ts function invariant (line 7) | function invariant( FILE: packages/util-logger/src/util-logger.ts type IConfig (line 1) | interface IConfig { type Config (line 5) | type Config = (IConfig & (() => IConfig)) | null type LEVELS (line 16) | enum LEVELS { FILE: packages/util-rpc/src/messages.ts type RpcRequestMessage (line 1) | type RpcRequestMessage = { type RpcNotificationMessage (line 8) | type RpcNotificationMessage = { type RpcResponseMessage (line 14) | type RpcResponseMessage = { type RpcErrorMessage (line 20) | type RpcErrorMessage = { type RpcMessage (line 30) | type RpcMessage = FILE: packages/util-rpc/src/rpc-client.ts type RpcRequest (line 4) | type RpcRequest = { type RpcNotification (line 10) | type RpcNotification

= { type ReservedRpcMethods (line 15) | enum ReservedRpcMethods { type RequestHandler (line 19) | type RequestHandler = (params: T) => any type NotificationHandler (line 20) | type NotificationHandler = (params: T) => void type PeerInfo (line 22) | type PeerInfo = { class RpcClient (line 27) | class RpcClient< method constructor (line 50) | constructor({notifications}: {notifications?: string[]}) { method connect (line 58) | connect({send}: {send: (msg: RpcMessage) => void}) { method ownInfo (line 67) | private ownInfo(): PeerInfo { method send (line 74) | private async send(msg: RpcMessage) { method receive (line 78) | receive(msg: RpcMessage) { method handleRequest (line 94) | private async handleRequest(msg: RpcRequestMessage) { method handleNotification (line 138) | private handleNotification(msg: RpcNotificationMessage) { method onMessage (line 144) | private onMessage(listener: (msg: any) => void) { method notify (line 151) | async notify( method request (line 164) | async request( method requestWithoutConnection (line 172) | private async requestWithoutConnection(method: R, handler: RequestHandler) { method unsubscribe (line 214) | unsubscribe(method: R, handler: RequestHandler) { method onceConnected (line 218) | async onceConnected() { method getAvailableRequests (line 222) | async getAvailableRequests() { method getAvailableNotifications (line 226) | async getAvailableNotifications() { FILE: packages/util-rpc/src/rpc-error.ts type RpcErrorCode (line 1) | enum RpcErrorCode { class RpcError (line 9) | class RpcError extends Error { method constructor (line 10) | constructor( FILE: packages/util-semver/src/compare.js constant VERSION_REGEX (line 4) | const VERSION_REGEX = FILE: packages/util-template/src/template.ts function interleave (line 10) | function interleave( function recApply (line 36) | function recApply(d: T): (x: U) => string { function template (line 89) | function template( FILE: packages/util-uid/src/util-uid.ts constant HEX (line 1) | const HEX = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456... function uid (line 8) | function uid(): string {