Skip to content

Commit

Permalink
Merge pull request #409 from pendulum-chain/polygon-prototype-staging
Browse files Browse the repository at this point in the history
Create production release
  • Loading branch information
gianfra-t authored Jan 24, 2025
2 parents 19b7ec1 + 93faddf commit 796f52a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion signer-service/src/api/services/pendulum.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ exports.fundEphemeralAccount = async (ephemeralAddress) => {
const apiData = await createPolkadotApi();
const { fundingAccountKeypair, fundingAmountRaw } = getFundingData(apiData.ss58Format, apiData.decimals);

await apiData.api.tx.balances.transfer(ephemeralAddress, fundingAmountRaw).signAndSend(fundingAccountKeypair);
await apiData.api.tx.balances
.transferKeepAlive(ephemeralAddress, fundingAmountRaw)
.signAndSend(fundingAccountKeypair);

return true;
} catch (error) {
Expand Down

0 comments on commit 796f52a

Please sign in to comment.