UNPKG

@baking-bad/tezos-etherlink-bridge-sdk

Version:

SDK designed for building token bridge applications between Tezos (L1) and Etherlink (L2)

5 lines (4 loc) 335 B
import type { Contract } from 'web3'; import { nativeTokenBridgePrecompile, nonNativeTokenBridgePrecompile } from '../etherlinkBridgeBlockchainService'; export type NativeTokenBridgePrecompile = Contract<typeof nativeTokenBridgePrecompile>; export type NonNativeTokenBridgePrecompile = Contract<typeof nonNativeTokenBridgePrecompile>;