Skip to content

Commit 5eec788

Browse files
authored
update ADA to use mainnet fireblocks asset in raw signing (#117)
1 parent d5a5804 commit 5eec788

File tree

3 files changed

+20
-24
lines changed

3 files changed

+20
-24
lines changed

README.md

Lines changed: 18 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,26 @@ Check out the [full documentation](https://docs.kiln.fi/v1/connect/overview).
88

99
## Supported protocols
1010

11-
- ADA
12-
- ATOM
13-
- DOT
14-
- DYDX
15-
- ETH
16-
- FET
17-
- INJ
18-
- KAVA
19-
- KSM
20-
- MATIC
21-
- NEAR
22-
- NOBLE
23-
- OSMO
24-
- SOL
25-
- TIA
26-
- TON
27-
- XTZ
28-
- ZETA
11+
- ADA (mainnet)
12+
- ATOM (mainnet and testnet)
13+
- DOT (mainnet)
14+
- DYDX (mainnet)
15+
- ETH (mainnet and holesky)
16+
- FET (mainnet)
17+
- INJ (mainnet)
18+
- KAVA (mainnet)
19+
- KSM (mainnet)
20+
- MATIC (mainnet and sepolia)
21+
- NEAR (mainnet and testnet)
22+
- NOBLE (mainnet)
23+
- OSMO (mainnet)
24+
- SOL (mainnet and testnet)
25+
- TIA (mainnet)
26+
- TON (mainnet and testnet)
27+
- XTZ (mainnet and ghostnet)
28+
- ZETA (mainnet)
2929
- More protocol to come, don't hesitate to contact us ([email protected])
3030

31-
### ⚠️️WARNING:
32-
33-
The transaction crafting and reporting are done on mainnet networks on OSMO / TIA / DYDX even in testnet mode.
34-
3531
## Installation
3632

3733
You can install the JS SDK with npm:

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.21.1",
3+
"version": "2.21.2",
44
"autor": "Kiln <[email protected]> (https://kiln.fi)",
55
"license": "BUSL-1.1",
66
"description": "JavaScript sdk for Kiln API",

src/services/ada.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export class AdaService extends Service {
9393
};
9494

9595
const fbNote = note ? note : "ADA tx from @kilnfi/sdk";
96-
const fbTx = await fbSigner.sign(payload, this.testnet ? "ADA_TEST" : "ADA", fbNote);
96+
const fbTx = await fbSigner.sign(payload, "ADA", fbNote);
9797

9898
if (!fbTx.signedMessages) {
9999
throw new Error(`Could not sign the transaction.`);

0 commit comments

Comments
 (0)