@talismn/on-chain-id 0.0.0-pr1672-20241023050142 → 0.0.0-pr1672-20241023070444

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,10 @@
1
+ import { ProviderInterface } from "@polkadot/rpc-provider/types";
2
+ import { TypeRegistry } from "@polkadot/types";
3
+ type ProviderOptions = {
4
+ chainId: string;
5
+ provider: ProviderInterface;
6
+ registry: TypeRegistry;
7
+ };
8
+ export declare const resolveDomainToAddress: (domain: string, { provider, registry, chainId }: ProviderOptions) => Promise<string>;
9
+ export declare const resolveAddressToDomain: (address: string, { provider, registry, chainId }: ProviderOptions) => Promise<string>;
10
+ export {};