Skip to content

Commit

Permalink
Merge pull request #468 from arconnectio/staging
Browse files Browse the repository at this point in the history
ArConnect 1.18.2
  • Loading branch information
nicholaswma authored Sep 12, 2024
2 parents 75e8659 + 61b28b3 commit a5c640a
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 a5c640a

Please sign in to comment.