resolveCadence
Import
You can import the entire package and access the function:
_10import * as sdk from "@onflow/sdk"_10_10sdk.resolveCadence(context)
Or import directly the specific function:
_10import { resolveCadence } from "@onflow/sdk"_10_10resolveCadence(context)
Parameters
context
- Type:
_12export interface SdkContext {_12  get accessNodeUrl(): string_12  get transport(): SdkTransport_12  get computeLimit(): number_12  get customResolver(): ((args: any) => Promise<any>) | undefined_12  get customDecoders(): {[key: string]: (data: any) => any}_12  get contracts(): {_12    [contractName: string]: string_12  }_12  get debug(): {[key: string]: any} _12  get legacyContractIdentifiers(): Record<string, string>_12}