@firmachain/firma-js 0.2.11 → 0.2.15

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.
@@ -0,0 +1,106 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ var __generator = (this && this.__generator) || function (thisArg, body) {
12
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14
+ function verb(n) { return function (v) { return step([n, v]); }; }
15
+ function step(op) {
16
+ if (f) throw new TypeError("Generator is already executing.");
17
+ while (_) try {
18
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
19
+ if (y = 0, t) op = [op[0] & 2, t.value];
20
+ switch (op[0]) {
21
+ case 0: case 1: t = op; break;
22
+ case 4: _.label++; return { value: op[1], done: false };
23
+ case 5: _.label++; y = op[1]; op = [0]; continue;
24
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
25
+ default:
26
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30
+ if (t[2]) _.ops.pop();
31
+ _.trys.pop(); continue;
32
+ }
33
+ op = body.call(thisArg, _);
34
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36
+ }
37
+ };
38
+ var __importDefault = (this && this.__importDefault) || function (mod) {
39
+ return (mod && mod.__esModule) ? mod : { "default": mod };
40
+ };
41
+ Object.defineProperty(exports, "__esModule", { value: true });
42
+ exports.TokenQueryClient = void 0;
43
+ var axios_1 = __importDefault(require("axios"));
44
+ var TokenQueryClient = /** @class */ (function () {
45
+ function TokenQueryClient(baseUrl) {
46
+ this.axios = axios_1.default.create({
47
+ baseURL: baseUrl,
48
+ headers: {
49
+ Accept: "application/json",
50
+ },
51
+ timeout: 15000,
52
+ });
53
+ }
54
+ TokenQueryClient.prototype.queryTokenDataFromOwner = function (ownerAddress) {
55
+ return __awaiter(this, void 0, void 0, function () {
56
+ var path, result;
57
+ return __generator(this, function (_a) {
58
+ switch (_a.label) {
59
+ case 0:
60
+ path = "/firmachain/firmachain/token/getTokenList";
61
+ return [4 /*yield*/, this.axios.get(path, { params: { "ownerAddress": ownerAddress } })];
62
+ case 1:
63
+ result = _a.sent();
64
+ return [2 /*return*/, result.data.tokenID];
65
+ }
66
+ });
67
+ });
68
+ };
69
+ TokenQueryClient.prototype.queryTokenData = function (tokenID) {
70
+ return __awaiter(this, void 0, void 0, function () {
71
+ var path, result;
72
+ return __generator(this, function (_a) {
73
+ switch (_a.label) {
74
+ case 0:
75
+ path = "/firmachain/firmachain/token/tokenData/" + tokenID;
76
+ return [4 /*yield*/, this.axios.get(path)];
77
+ case 1:
78
+ result = _a.sent();
79
+ return [2 /*return*/, result.data.tokenData];
80
+ }
81
+ });
82
+ });
83
+ };
84
+ TokenQueryClient.prototype.queryTokenDataAll = function (paginationKey) {
85
+ if (paginationKey === void 0) { paginationKey = ""; }
86
+ return __awaiter(this, void 0, void 0, function () {
87
+ var path, result, convertPagination;
88
+ return __generator(this, function (_a) {
89
+ switch (_a.label) {
90
+ case 0:
91
+ path = "/firmachain/firmachain/token/tokenData";
92
+ return [4 /*yield*/, this.axios.get(path, { params: { "pagination.key": paginationKey } })];
93
+ case 1:
94
+ result = _a.sent();
95
+ convertPagination = {
96
+ next_key: result.data.pagination.next_key,
97
+ total: Number.parseInt(result.data.pagination.total)
98
+ };
99
+ return [2 /*return*/, { dataList: result.data.tokenData, pagination: convertPagination }];
100
+ }
101
+ });
102
+ });
103
+ };
104
+ return TokenQueryClient;
105
+ }());
106
+ exports.TokenQueryClient = TokenQueryClient;
@@ -0,0 +1,26 @@
1
+ import { OfflineDirectSigner, EncodeObject } from "@cosmjs/proto-signing";
2
+ import { MsgUpdateTokenURI, MsgMint, MsgBurn, MsgCreateToken } from "./TokenTxTypes";
3
+ import { ITxClient } from "../common/ITxClient";
4
+ export interface MsgCreateTokenEncodeObject extends EncodeObject {
5
+ readonly typeUrl: "/firmachain.firmachain.token.MsgCreateToken";
6
+ readonly value: Partial<MsgCreateToken>;
7
+ }
8
+ export interface MsgUpdateTokenURIEncodeObject extends EncodeObject {
9
+ readonly typeUrl: "/firmachain.firmachain.token.MsgUpdateTokenURI";
10
+ readonly value: Partial<MsgUpdateTokenURI>;
11
+ }
12
+ export interface MsgMintEncodeObject extends EncodeObject {
13
+ readonly typeUrl: "/firmachain.firmachain.token.MsgMint";
14
+ readonly value: Partial<MsgMint>;
15
+ }
16
+ export interface MsgBurnEncodeObject extends EncodeObject {
17
+ readonly typeUrl: "/firmachain.firmachain.token.MsgBurn";
18
+ readonly value: Partial<MsgBurn>;
19
+ }
20
+ export declare class TokenTxClient extends ITxClient {
21
+ constructor(wallet: OfflineDirectSigner, serverUrl: string);
22
+ msgCreateToken(data: MsgCreateToken): MsgCreateTokenEncodeObject;
23
+ msgUpdateTokenURI(data: MsgUpdateTokenURI): MsgUpdateTokenURIEncodeObject;
24
+ msgMint(data: MsgMint): MsgMintEncodeObject;
25
+ msgBurn(data: MsgBurn): MsgBurnEncodeObject;
26
+ }
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.TokenTxClient = void 0;
19
+ var proto_signing_1 = require("@cosmjs/proto-signing");
20
+ var TokenTxTypes_1 = require("./TokenTxTypes");
21
+ var ITxClient_1 = require("../common/ITxClient");
22
+ var types = [
23
+ ["/firmachain.firmachain.token.MsgCreateToken", TokenTxTypes_1.MsgCreateToken],
24
+ ["/firmachain.firmachain.token.MsgUpdateTokenURI", TokenTxTypes_1.MsgUpdateTokenURI],
25
+ ["/firmachain.firmachain.token.MsgMint", TokenTxTypes_1.MsgMint],
26
+ ["/firmachain.firmachain.token.MsgBurn", TokenTxTypes_1.MsgBurn]
27
+ ];
28
+ var registry = new proto_signing_1.Registry(types);
29
+ var TokenTxClient = /** @class */ (function (_super) {
30
+ __extends(TokenTxClient, _super);
31
+ function TokenTxClient(wallet, serverUrl) {
32
+ return _super.call(this, wallet, serverUrl, registry) || this;
33
+ }
34
+ TokenTxClient.prototype.msgCreateToken = function (data) {
35
+ return { typeUrl: "/firmachain.firmachain.token.MsgCreateToken", value: data };
36
+ };
37
+ TokenTxClient.prototype.msgUpdateTokenURI = function (data) {
38
+ return { typeUrl: "/firmachain.firmachain.token.MsgUpdateTokenURI", value: data };
39
+ };
40
+ TokenTxClient.prototype.msgMint = function (data) {
41
+ return { typeUrl: "/firmachain.firmachain.token.MsgMint", value: data };
42
+ };
43
+ TokenTxClient.prototype.msgBurn = function (data) {
44
+ return { typeUrl: "/firmachain.firmachain.token.MsgBurn", value: data };
45
+ };
46
+ return TokenTxClient;
47
+ }(ITxClient_1.ITxClient));
48
+ exports.TokenTxClient = TokenTxClient;
@@ -0,0 +1,116 @@
1
+ import { Reader, Writer } from "protobufjs/minimal";
2
+ export declare const protobufPackage = "firmachain.firmachain.token";
3
+ export interface MsgCreateToken {
4
+ owner: string;
5
+ name: string;
6
+ symbol: string;
7
+ tokenURI: string;
8
+ totalSupply: number;
9
+ decimal: number;
10
+ mintable: boolean;
11
+ burnable: boolean;
12
+ }
13
+ export interface MsgCreateTokenResponse {
14
+ }
15
+ export interface MsgMint {
16
+ owner: string;
17
+ tokenID: string;
18
+ amount: number;
19
+ toAddress: string;
20
+ }
21
+ export interface MsgMintResponse {
22
+ }
23
+ export interface MsgBurn {
24
+ owner: string;
25
+ tokenID: string;
26
+ amount: number;
27
+ }
28
+ export interface MsgBurnResponse {
29
+ }
30
+ export interface MsgUpdateTokenURI {
31
+ owner: string;
32
+ tokenID: string;
33
+ tokenURI: string;
34
+ }
35
+ export interface MsgUpdateTokenURIResponse {
36
+ }
37
+ export declare const MsgCreateToken: {
38
+ encode(message: MsgCreateToken, writer?: Writer): Writer;
39
+ decode(input: Reader | Uint8Array, length?: number | undefined): MsgCreateToken;
40
+ fromJSON(object: any): MsgCreateToken;
41
+ toJSON(message: MsgCreateToken): unknown;
42
+ fromPartial(object: DeepPartial<MsgCreateToken>): MsgCreateToken;
43
+ };
44
+ export declare const MsgCreateTokenResponse: {
45
+ encode(_: MsgCreateTokenResponse, writer?: Writer): Writer;
46
+ decode(input: Reader | Uint8Array, length?: number | undefined): MsgCreateTokenResponse;
47
+ fromJSON(_: any): MsgCreateTokenResponse;
48
+ toJSON(_: MsgCreateTokenResponse): unknown;
49
+ fromPartial(_: DeepPartial<MsgCreateTokenResponse>): MsgCreateTokenResponse;
50
+ };
51
+ export declare const MsgMint: {
52
+ encode(message: MsgMint, writer?: Writer): Writer;
53
+ decode(input: Reader | Uint8Array, length?: number | undefined): MsgMint;
54
+ fromJSON(object: any): MsgMint;
55
+ toJSON(message: MsgMint): unknown;
56
+ fromPartial(object: DeepPartial<MsgMint>): MsgMint;
57
+ };
58
+ export declare const MsgMintResponse: {
59
+ encode(_: MsgMintResponse, writer?: Writer): Writer;
60
+ decode(input: Reader | Uint8Array, length?: number | undefined): MsgMintResponse;
61
+ fromJSON(_: any): MsgMintResponse;
62
+ toJSON(_: MsgMintResponse): unknown;
63
+ fromPartial(_: DeepPartial<MsgMintResponse>): MsgMintResponse;
64
+ };
65
+ export declare const MsgBurn: {
66
+ encode(message: MsgBurn, writer?: Writer): Writer;
67
+ decode(input: Reader | Uint8Array, length?: number | undefined): MsgBurn;
68
+ fromJSON(object: any): MsgBurn;
69
+ toJSON(message: MsgBurn): unknown;
70
+ fromPartial(object: DeepPartial<MsgBurn>): MsgBurn;
71
+ };
72
+ export declare const MsgBurnResponse: {
73
+ encode(_: MsgBurnResponse, writer?: Writer): Writer;
74
+ decode(input: Reader | Uint8Array, length?: number | undefined): MsgBurnResponse;
75
+ fromJSON(_: any): MsgBurnResponse;
76
+ toJSON(_: MsgBurnResponse): unknown;
77
+ fromPartial(_: DeepPartial<MsgBurnResponse>): MsgBurnResponse;
78
+ };
79
+ export declare const MsgUpdateTokenURI: {
80
+ encode(message: MsgUpdateTokenURI, writer?: Writer): Writer;
81
+ decode(input: Reader | Uint8Array, length?: number | undefined): MsgUpdateTokenURI;
82
+ fromJSON(object: any): MsgUpdateTokenURI;
83
+ toJSON(message: MsgUpdateTokenURI): unknown;
84
+ fromPartial(object: DeepPartial<MsgUpdateTokenURI>): MsgUpdateTokenURI;
85
+ };
86
+ export declare const MsgUpdateTokenURIResponse: {
87
+ encode(_: MsgUpdateTokenURIResponse, writer?: Writer): Writer;
88
+ decode(input: Reader | Uint8Array, length?: number | undefined): MsgUpdateTokenURIResponse;
89
+ fromJSON(_: any): MsgUpdateTokenURIResponse;
90
+ toJSON(_: MsgUpdateTokenURIResponse): unknown;
91
+ fromPartial(_: DeepPartial<MsgUpdateTokenURIResponse>): MsgUpdateTokenURIResponse;
92
+ };
93
+ /** Msg defines the Msg service. */
94
+ export interface Msg {
95
+ CreateToken(request: MsgCreateToken): Promise<MsgCreateTokenResponse>;
96
+ Mint(request: MsgMint): Promise<MsgMintResponse>;
97
+ Burn(request: MsgBurn): Promise<MsgBurnResponse>;
98
+ /** this line is used by starport scaffolding # proto/tx/rpc */
99
+ UpdateTokenURI(request: MsgUpdateTokenURI): Promise<MsgUpdateTokenURIResponse>;
100
+ }
101
+ export declare class MsgClientImpl implements Msg {
102
+ private readonly rpc;
103
+ constructor(rpc: Rpc);
104
+ CreateToken(request: MsgCreateToken): Promise<MsgCreateTokenResponse>;
105
+ Mint(request: MsgMint): Promise<MsgMintResponse>;
106
+ Burn(request: MsgBurn): Promise<MsgBurnResponse>;
107
+ UpdateTokenURI(request: MsgUpdateTokenURI): Promise<MsgUpdateTokenURIResponse>;
108
+ }
109
+ interface Rpc {
110
+ request(service: string, method: string, data: Uint8Array): Promise<Uint8Array>;
111
+ }
112
+ declare type Builtin = Date | Function | Uint8Array | string | number | undefined;
113
+ export declare type DeepPartial<T> = T extends Builtin ? T : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
114
+ [K in keyof T]?: DeepPartial<T[K]>;
115
+ } : Partial<T>;
116
+ export {};