Skip to content

Commit b1f8240

Browse files
authored
atom to use mainnet atom from fireblocks on testnet (#68)
1 parent 7097a96 commit b1f8240

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kilnfi/sdk",
3-
"version": "2.4.0",
3+
"version": "2.4.1",
44
"autor": "Kiln <[email protected]> (https://kiln.fi)",
55
"license": "BUSL-1.1",
66
"description": "JavaScript sdk for Kiln API",

src/services/atom.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ export class AtomService extends Service {
119119
};
120120
const fbNote = note ? note : 'ATOM tx from @kilnfi/sdk';
121121
const signer = this.getFbSigner(integration);
122-
const signedTx = await signer.signWithFB(payload, this.testnet ? 'ATOM_COS_TEST' : 'ATOM_COS', fbNote);
122+
const signedTx = await signer.signWithFB(payload, 'ATOM_COS', fbNote);
123123
const signature: string = signedTx.signedMessages![0].signature.fullSig;
124124
const { data } = await api.post<AtomSignedTx>(
125125
`/v1/atom/transaction/prepare`,

0 commit comments

Comments
 (0)