UNPKG

@wormhole-foundation/sdk-cosmwasm

Version:

SDK for EVM chains, used in conjunction with @wormhole-foundation/sdk

16 lines 607 B
import type { PlatformToChains, UniversalOrNative } from "@wormhole-foundation/sdk-connect"; /** * Runtime value for the Cosmwasm Platform */ export declare const _platform: "Cosmwasm"; /** * Compile time type for Cosmwasm Platform */ export type CosmwasmPlatformType = typeof _platform; export type CosmwasmChains = PlatformToChains<CosmwasmPlatformType>; export type UniversalOrCosmwasm = UniversalOrNative<CosmwasmChains>; export type AnyCosmwasmAddress = UniversalOrCosmwasm | string | Uint8Array; export interface WrappedRegistryResponse { address: string; } //# sourceMappingURL=types.d.ts.map