@firmachain/firma-js 0.2.52 → 0.2.54

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/index.d.ts CHANGED
@@ -14,3 +14,22 @@ export * from './sdk/firmachain/staking';
14
14
  export * from './sdk/firmachain/token';
15
15
  export * from './sdk/firmachain/nft';
16
16
  export * from './sdk/firmachain/feegrant';
17
+ export * from './sdk/FirmaWalletService';
18
+ export * from './sdk/FirmaBankService';
19
+ export * from './sdk/FirmaFeeGrantService';
20
+ export * from './sdk/FirmaStakingService';
21
+ export * from './sdk/FirmaDistributionService';
22
+ export * from './sdk/FirmaGovService';
23
+ export * from './sdk/FirmaNftService';
24
+ export * from './sdk/FirmaTokenService';
25
+ export * from './sdk/FirmaContractService';
26
+ export * from './sdk/FirmaIpfsService';
27
+ export * from './sdk/FirmaChainService';
28
+ export * from './sdk/FirmaSlashingService';
29
+ export * from './sdk/FirmaAuthzService';
30
+ export * from './sdk/FirmaCosmWasmService';
31
+ export * from './sdk/FirmaIbcService';
32
+ export * from './sdk/FirmaMintService';
33
+ export * from './sdk/FirmaCosmWasmCw20';
34
+ export * from './sdk/FirmaCosmWasmCw721';
35
+ export * from './sdk/FirmaCosmWasmCwBridge';
package/dist/index.js CHANGED
@@ -26,3 +26,22 @@ __exportStar(require("./sdk/firmachain/staking"), exports);
26
26
  __exportStar(require("./sdk/firmachain/token"), exports);
27
27
  __exportStar(require("./sdk/firmachain/nft"), exports);
28
28
  __exportStar(require("./sdk/firmachain/feegrant"), exports);
29
+ __exportStar(require("./sdk/FirmaWalletService"), exports);
30
+ __exportStar(require("./sdk/FirmaBankService"), exports);
31
+ __exportStar(require("./sdk/FirmaFeeGrantService"), exports);
32
+ __exportStar(require("./sdk/FirmaStakingService"), exports);
33
+ __exportStar(require("./sdk/FirmaDistributionService"), exports);
34
+ __exportStar(require("./sdk/FirmaGovService"), exports);
35
+ __exportStar(require("./sdk/FirmaNftService"), exports);
36
+ __exportStar(require("./sdk/FirmaTokenService"), exports);
37
+ __exportStar(require("./sdk/FirmaContractService"), exports);
38
+ __exportStar(require("./sdk/FirmaIpfsService"), exports);
39
+ __exportStar(require("./sdk/FirmaChainService"), exports);
40
+ __exportStar(require("./sdk/FirmaSlashingService"), exports);
41
+ __exportStar(require("./sdk/FirmaAuthzService"), exports);
42
+ __exportStar(require("./sdk/FirmaCosmWasmService"), exports);
43
+ __exportStar(require("./sdk/FirmaIbcService"), exports);
44
+ __exportStar(require("./sdk/FirmaMintService"), exports);
45
+ __exportStar(require("./sdk/FirmaCosmWasmCw20"), exports);
46
+ __exportStar(require("./sdk/FirmaCosmWasmCw721"), exports);
47
+ __exportStar(require("./sdk/FirmaCosmWasmCwBridge"), exports);
@@ -2,6 +2,8 @@ import { FirmaConfig } from "./FirmaConfig";
2
2
  import { FirmaCosmWasmService } from "./FirmaCosmWasmService";
3
3
  import { FirmaWalletService } from "./FirmaWalletService";
4
4
  import { TxMisc } from "./firmachain/common";
5
+ import { EncodeObject } from "@cosmjs/proto-signing";
6
+ import { BroadcastTxResponse } from "./firmachain/common/stargateclient";
5
7
  export interface Cw20Minter {
6
8
  minter: string;
7
9
  cap: string;
@@ -31,22 +33,51 @@ export interface Cw20SpenderAllowance {
31
33
  expires: Expires;
32
34
  spender: string;
33
35
  }
36
+ export declare class Cw20MsgData {
37
+ static getMsgDataTransfer(recipient: string, amount: string): string;
38
+ static getMsgDataTransferFrom(owner: string, recipient: string, amount: string): string;
39
+ static getMsgDataMint(recipient: string, amount: string): string;
40
+ static getMsgDataBurn(amount: string): string;
41
+ static getMsgDataBurnFrom(owner: string, amount: string): string;
42
+ static getMsgDataIncreaseAllowance(spender: string, amount: string, expires: Expires): string;
43
+ static getMsgDataDecreaseAllowance(spender: string, amount: string, expires: Expires): string;
44
+ static getMsgDataUpdateMinter(new_minter: string): string;
45
+ static getMsgDataUpdateMarketing(description: string, marketing: string, project: string): string;
46
+ static getMsgDataUploadLogo(url: string): string;
47
+ static getMsgDataSend(contract: string, amount: string, msg: any): string;
48
+ static getMsgDataSendFrom(contract: string, owner: string, amount: string, msg: any): string;
49
+ }
34
50
  export declare class FirmaCosmWasmCw20Service {
35
51
  private readonly config;
36
52
  private readonly cosmwasmService;
37
53
  constructor(config: FirmaConfig, cosmwasmService: FirmaCosmWasmService);
38
- transfer(wallet: FirmaWalletService, contractAddress: string, recipient: string, amount: string, txMisc?: TxMisc): Promise<import("./firmachain/common/stargateclient").BroadcastTxResponse>;
39
- transferFrom(wallet: FirmaWalletService, contractAddress: string, owner: string, recipient: string, amount: string, txMisc?: TxMisc): Promise<import("./firmachain/common/stargateclient").BroadcastTxResponse>;
40
- mint(wallet: FirmaWalletService, contractAddress: string, recipient: string, amount: string, txMisc?: TxMisc): Promise<import("./firmachain/common/stargateclient").BroadcastTxResponse>;
41
- burn(wallet: FirmaWalletService, contractAddress: string, amount: string, txMisc?: TxMisc): Promise<import("./firmachain/common/stargateclient").BroadcastTxResponse>;
42
- burnFrom(wallet: FirmaWalletService, contractAddress: string, owner: string, amount: string, txMisc?: TxMisc): Promise<import("./firmachain/common/stargateclient").BroadcastTxResponse>;
43
- increaseAllowance(wallet: FirmaWalletService, contractAddress: string, spender: string, amount: string, expires: Expires, txMisc?: TxMisc): Promise<import("./firmachain/common/stargateclient").BroadcastTxResponse>;
44
- decreaseAllowance(wallet: FirmaWalletService, contractAddress: string, spender: string, amount: string, expires: Expires, txMisc?: TxMisc): Promise<import("./firmachain/common/stargateclient").BroadcastTxResponse>;
45
- updateMinter(wallet: FirmaWalletService, contractAddress: string, new_minter: string, txMisc?: TxMisc): Promise<import("./firmachain/common/stargateclient").BroadcastTxResponse>;
46
- updateMarketing(wallet: FirmaWalletService, contractAddress: string, description: string, marketing: string, project: string, txMisc?: TxMisc): Promise<import("./firmachain/common/stargateclient").BroadcastTxResponse>;
47
- uploadLogo(wallet: FirmaWalletService, contractAddress: string, url: string, txMisc?: TxMisc): Promise<import("./firmachain/common/stargateclient").BroadcastTxResponse>;
48
- send(wallet: FirmaWalletService, contractAddress: string, targetContractAddress: string, amount: string, msg: any, txMisc?: TxMisc): Promise<import("./firmachain/common/stargateclient").BroadcastTxResponse>;
49
- sendFrom(wallet: FirmaWalletService, contractAddress: string, targetContractAddress: string, owner: string, amount: string, msg: any, txMisc?: TxMisc): Promise<import("./firmachain/common/stargateclient").BroadcastTxResponse>;
54
+ getCw721MsgData(): typeof Cw20MsgData;
55
+ transfer(wallet: FirmaWalletService, contractAddress: string, recipient: string, amount: string, txMisc?: TxMisc): Promise<BroadcastTxResponse>;
56
+ getUnsignedTxTransfer(wallet: FirmaWalletService, contractAddress: string, recipient: string, amount: string): Promise<EncodeObject>;
57
+ transferFrom(wallet: FirmaWalletService, contractAddress: string, owner: string, recipient: string, amount: string, txMisc?: TxMisc): Promise<BroadcastTxResponse>;
58
+ getUnsignedTxTransferFrom(wallet: FirmaWalletService, contractAddress: string, owner: string, recipient: string, amount: string): Promise<EncodeObject>;
59
+ mint(wallet: FirmaWalletService, contractAddress: string, recipient: string, amount: string, txMisc?: TxMisc): Promise<BroadcastTxResponse>;
60
+ getUnsignedTxMint(wallet: FirmaWalletService, contractAddress: string, recipient: string, amount: string): Promise<EncodeObject>;
61
+ burn(wallet: FirmaWalletService, contractAddress: string, amount: string, txMisc?: TxMisc): Promise<BroadcastTxResponse>;
62
+ getUnsignedTxBurn(wallet: FirmaWalletService, contractAddress: string, amount: string): Promise<EncodeObject>;
63
+ burnFrom(wallet: FirmaWalletService, contractAddress: string, owner: string, amount: string, txMisc?: TxMisc): Promise<BroadcastTxResponse>;
64
+ getUnsignedTxBurnFrom(wallet: FirmaWalletService, contractAddress: string, owner: string, amount: string): Promise<EncodeObject>;
65
+ increaseAllowance(wallet: FirmaWalletService, contractAddress: string, spender: string, amount: string, expires: Expires, txMisc?: TxMisc): Promise<BroadcastTxResponse>;
66
+ getUnsignedTxIncreaseAllowance(wallet: FirmaWalletService, contractAddress: string, spender: string, amount: string, expires: Expires): Promise<EncodeObject>;
67
+ decreaseAllowance(wallet: FirmaWalletService, contractAddress: string, spender: string, amount: string, expires: Expires, txMisc?: TxMisc): Promise<BroadcastTxResponse>;
68
+ getUnsignedTxDecreaseAllowance(wallet: FirmaWalletService, contractAddress: string, spender: string, amount: string, expires: Expires): Promise<EncodeObject>;
69
+ updateMinter(wallet: FirmaWalletService, contractAddress: string, new_minter: string, txMisc?: TxMisc): Promise<BroadcastTxResponse>;
70
+ getUnsignedTxUpdateMinter(wallet: FirmaWalletService, contractAddress: string, new_minter: string): Promise<EncodeObject>;
71
+ updateMarketing(wallet: FirmaWalletService, contractAddress: string, description: string, marketing: string, project: string, txMisc?: TxMisc): Promise<BroadcastTxResponse>;
72
+ getUnsignedTxUpdateMarketing(wallet: FirmaWalletService, contractAddress: string, description: string, marketing: string, project: string): Promise<EncodeObject>;
73
+ uploadLogo(wallet: FirmaWalletService, contractAddress: string, url: string, txMisc?: TxMisc): Promise<BroadcastTxResponse>;
74
+ getUnsignedTxUploadLogo(wallet: FirmaWalletService, contractAddress: string, url: string): Promise<EncodeObject>;
75
+ send(wallet: FirmaWalletService, contractAddress: string, targetContractAddress: string, amount: string, msg: any, txMisc?: TxMisc): Promise<BroadcastTxResponse>;
76
+ getUnsignedTxSend(wallet: FirmaWalletService, contractAddress: string, targetContractAddress: string, amount: string, msg: any): Promise<EncodeObject>;
77
+ sendFrom(wallet: FirmaWalletService, contractAddress: string, targetContractAddress: string, owner: string, amount: string, msg: any, txMisc?: TxMisc): Promise<BroadcastTxResponse>;
78
+ getUnsignedTxSendFrom(wallet: FirmaWalletService, contractAddress: string, targetContractAddress: string, owner: string, amount: string, msg: any): Promise<EncodeObject>;
79
+ signAndBroadcast(wallet: FirmaWalletService, msgList: EncodeObject[], txMisc?: TxMisc): Promise<BroadcastTxResponse>;
80
+ getGasEstimationSignAndBroadcast(wallet: FirmaWalletService, msgList: EncodeObject[], txMisc?: TxMisc): Promise<number>;
50
81
  getGasEstimationTransfer(wallet: FirmaWalletService, contractAddress: string, recipient: string, amount: string): Promise<number>;
51
82
  getGasEstimationTransferFrom(wallet: FirmaWalletService, contractAddress: string, owner: string, recipient: string, amount: string): Promise<number>;
52
83
  getGasEstimationMint(wallet: FirmaWalletService, contractAddress: string, recipient: string, amount: string): Promise<number>;
@@ -64,9 +95,9 @@ export declare class FirmaCosmWasmCw20Service {
64
95
  getTokenInfo(contractAddress: string): Promise<string>;
65
96
  getMinter(contractAddress: string): Promise<Cw20Minter>;
66
97
  getAllowance(contractAddress: string, owner: string, spender: string): Promise<Cw20Allowance>;
67
- getAllAllowances(contractAddress: string, owner: string): Promise<Cw20SpenderAllowance[]>;
68
- getAllSpenderAllowances(contractAddress: string, spender: string): Promise<Cw20SpenderAllowance>;
69
- getAllAccounts(contractAddress: string): Promise<string>;
98
+ getAllAllowances(contractAddress: string, owner: string, limit?: number, start_after?: string): Promise<Cw20SpenderAllowance[]>;
99
+ getAllSpenderAllowances(contractAddress: string, spender: string, limit?: number, start_after?: string): Promise<Cw20SpenderAllowance>;
100
+ getAllAccounts(contractAddress: string, limit?: number, start_after?: string): Promise<string>;
70
101
  getMarketingInfo(contractAddress: string): Promise<Cw20MarketingInfo>;
71
102
  getDownloadLogo(contractAddress: string): Promise<string>;
72
103
  }