Skip to content

Commit

Permalink
remove ATOM testnet token as it's no longer supported (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeTamanoir authored Dec 5, 2024
1 parent 980344e commit 4eb9fb8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/integrations/fb_signer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export type AssetId =
| "ETH_TEST5"
| "ETH_TEST6"
| "ETH"
| "ATOM_COS_TEST"
| "ATOM_COS"
| "OSMO_TEST"
| "OSMO"
Expand Down
2 changes: 1 addition & 1 deletion src/services/atom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export class AtomService extends Service {
};
const fbNote = note ? note : "ATOM tx from @kilnfi/sdk";
const signer = this.getFbSigner(integration);
const fbTx = await signer.sign(payload, this.testnet ? "ATOM_COS_TEST" : "ATOM_COS", fbNote);
const fbTx = await signer.sign(payload, "ATOM_COS", fbNote);
const signature: string = fbTx.signedMessages![0].signature.fullSig;
const { data } = await api.post<CosmosSignedTx>(`/v1/atom/transaction/prepare`, {
pubkey: tx.data.pubkey,
Expand Down

0 comments on commit 4eb9fb8

Please sign in to comment.