@firmachain/firma-js 0.2.12 → 0.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/sdk/FirmaConfig.js
CHANGED
|
@@ -28,8 +28,8 @@ var FirmaConfig = /** @class */ (function () {
|
|
|
28
28
|
};
|
|
29
29
|
FirmaConfig.TestNetConfig = {
|
|
30
30
|
chainID: "colosseum-1",
|
|
31
|
-
rpcAddress: "https://
|
|
32
|
-
restApiAddress: "https://
|
|
31
|
+
rpcAddress: "https://colosseum-lcd.firmachain.dev:26657",
|
|
32
|
+
restApiAddress: "https://colosseum-lcd.firmachain.dev:1317",
|
|
33
33
|
ipfsNodeAddress: "ipfs-api-firma-devnet.firmachain.org",
|
|
34
34
|
ipfsNodePort: 5001,
|
|
35
35
|
ipfsWebApiAddress: "https://ipfs-firma-devnet.firmachain.org",
|
|
@@ -7,7 +7,7 @@ function getSignAndBroadcastOption(denom, txMisc) {
|
|
|
7
7
|
if (txMisc.memo == null)
|
|
8
8
|
txMisc.memo = "";
|
|
9
9
|
if (txMisc.fee == null)
|
|
10
|
-
txMisc.fee =
|
|
10
|
+
txMisc.fee = 200000;
|
|
11
11
|
if (txMisc.gas == null)
|
|
12
12
|
txMisc.gas = 200000;
|
|
13
13
|
if (txMisc.feeGranter == null)
|
|
@@ -17,7 +17,7 @@ function getSignAndBroadcastOption(denom, txMisc) {
|
|
|
17
17
|
return { fee: defaultFee, memo: txMisc.memo };
|
|
18
18
|
}
|
|
19
19
|
exports.getSignAndBroadcastOption = getSignAndBroadcastOption;
|
|
20
|
-
exports.DefaultTxMisc = { memo: "", fee:
|
|
20
|
+
exports.DefaultTxMisc = { memo: "", fee: 200000, gas: 200000, feeGranter: "" };
|
|
21
21
|
var VotingOption;
|
|
22
22
|
(function (VotingOption) {
|
|
23
23
|
/** VOTE_OPTION_UNSPECIFIED - VOTE_OPTION_UNSPECIFIED defines a no-op vote option. */
|