Skip to content

Commit

Permalink
chore: fix commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholaswma committed Sep 10, 2024
1 parent 6bd68df commit 61b28b3
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/tokens/aoTokens/ao.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import {
} from "~utils/ao_import";
import type { Alarms } from "webextension-polyfill";
import type { KeystoneSigner } from "~wallets/hardware/keystone";
import browser from "webextension-polyfill";

export type AoInstance = ReturnType<typeof connect>;

Expand Down Expand Up @@ -422,7 +423,9 @@ export const sendAoTransfer = async (
name: "Recipient",
value: recipient
},
{ name: "Quantity", value: amount }
{ name: "Quantity", value: amount },
{ name: "Client", value: "ArConnect" },
{ name: "Client-Version", value: browser.runtime.getManifest().version }
]
});
freeDecryptedWallet(decryptedWallet.keyfile);
Expand Down Expand Up @@ -524,7 +527,9 @@ export const sendAoTransferKeystone = async (
name: "Recipient",
value: recipient
},
{ name: "Quantity", value: amount }
{ name: "Quantity", value: amount },
{ name: "Client", value: "ArConnect" },
{ name: "Client-Version", value: browser.runtime.getManifest().version }
]
});
return transferID;
Expand Down

0 comments on commit 61b28b3

Please sign in to comment.