ThirdwebSDK.getMultiwrap() method
Warning: This API is now obsolete.
This method is deprecated and will be removed in a future major version. You should use instead.
- const multiWrap = await sdk.getMultiwrap("0x1234...");
+ const multiWrap = await sdk.getContract("0x1234...", "multiwrap");
Get an instance of a Pack contract
Signature:
getMultiwrap(contractAddress: string): Promise<import("..").Multiwrap>;
Parameters
Parameter | Type | Description |
---|---|---|
contractAddress | string | the address of the deployed contract |
Returns:
Promise<import("..").Multiwrap>