hermes-v2-sdk
Version:
⚒️ An SDK for building applications on top of Hermes V2
13 lines (12 loc) • 443 B
TypeScript
/**
* Computes a vault address
* @param factoryAddress The Vault factory address
* @param underlying The underlying token of the vault
* @param initCodeHash The init code hash used to compute the vault address
* @returns The vault address
*/
export declare function computeVaultAddress({ factoryAddress, underlying, initCodeHash, }: {
factoryAddress: string;
underlying: string;
initCodeHash: string;
}): string;