diff --git a/src/plugins/stake-plugins/generic/policyAdapters/EthereumKilnAdaptor.ts b/src/plugins/stake-plugins/generic/policyAdapters/EthereumKilnAdaptor.ts index f7b789be889..de0fdac5916 100644 --- a/src/plugins/stake-plugins/generic/policyAdapters/EthereumKilnAdaptor.ts +++ b/src/plugins/stake-plugins/generic/policyAdapters/EthereumKilnAdaptor.ts @@ -33,6 +33,11 @@ export const makeEthereumKilnAdapter = (policyConfig: StakePolicyConfig new ethers.providers.JsonRpcProvider(url))) const integrationContract = KilnLiquid20A__factory.connect(contractAddress, provider) + // Metadata constants: + const metadataName = 'Kiln Pooled Staking' + const stakeAsset = policyConfig.stakeAssets[0] + const metadataPoolAssetName = `${stakeAsset.currencyCode}` + async function prepareChangeQuote(walletSigner: EdgeWalletSigner, tx: ethers.PopulatedTransaction, allocations: QuoteAllocation[]): Promise { if (tx.gasLimit == null) { const estimatedGasLimit = await walletSigner.estimateGas(tx) @@ -108,7 +113,14 @@ export const makeEthereumKilnAdapter = (policyConfig: StakePolicyConfig