Compare commits

..
8 Commits
Author SHA1 Message Date
IshaVenikar 5fe6c432de Fix authority expiry timeout 2024-08-05 09:57:11 +05:30
IshaVenikar 37c2f5897f Check for properties in returned authorities list 2024-08-02 16:06:37 +05:30
IshaVenikar 225aa2a6aa Check name and owner address for authorities 2024-08-02 15:15:05 +05:30
IshaVenikar 81dbf57fc2 Update check for list authorities by owner 2024-08-02 11:52:49 +05:30
IshaVenikar a3b78fd363 Check owner address for returned authorities 2024-08-02 10:04:14 +05:30
IshaVenikar 52cab23c70 Add method for get authorities 2024-08-01 16:44:21 +05:30
prathameshandIshaVenikar 147348cf1d Change token denom from photon to alnt (#17)
Part of [laconicd testnet validator enrollment](https://www.notion.so/laconicd-testnet-validator-enrollment-6fc1d3cafcc64fef8c5ed3affa27c675)

Co-authored-by: IshaVenikar <ishavenikar7@gmail.com>
Reviewed-on: cerc-io/registry-sdk#17
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
2024-07-30 11:55:33 +00:00
prathameshandIshaVenikar 5fc42e897a Add queries to get participant by laconic or nitro address (#16)
Part of [laconicd testnet validator enrollment](https://www.notion.so/laconicd-testnet-validator-enrollment-6fc1d3cafcc64fef8c5ed3affa27c675)

Co-authored-by: IshaVenikar <ishavenikar7@gmail.com>
Reviewed-on: cerc-io/registry-sdk#16
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
2024-07-29 11:19:23 +00:00
10 changed files with 588 additions and 28 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@cerc-io/registry-sdk",
"version": "0.2.3",
"version": "0.2.6",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:cerc-io/registry-sdk.git",
+42 -1
View File
@@ -16,6 +16,19 @@ service Query {
returns (QueryParticipantsResponse) {
option (google.api.http).get = "/cerc/onboarding/v1/participants";
}
// GetParticipantByAddress queries a participant by cosmos (laconic) address
rpc GetParticipantByAddress(QueryGetParticipantByAddressRequest)
returns (QueryGetParticipantByAddressResponse) {
option (google.api.http).get = "/cerc/onboarding/v1/participants/{address}";
}
// GetParticipantByNitroAddress queries a participant by nitro address
rpc GetParticipantByNitroAddress(QueryGetParticipantByNitroAddressRequest)
returns (QueryGetParticipantByNitroAddressResponse) {
option (google.api.http).get =
"/cerc/onboarding/v1/participants/{nitro_address}";
}
}
// QueryParticipantsRequest queries participants
@@ -24,7 +37,7 @@ message QueryParticipantsRequest {
cosmos.base.query.v1beta1.PageRequest pagination = 1;
}
// QueryParticipantsResponse is response type for get the participants
// QueryParticipantsResponse is response type for querying the participants
message QueryParticipantsResponse {
repeated Participant participants = 1
[ (gogoproto.moretags) = "json:\"participants\" yaml:\"participants\"" ];
@@ -32,3 +45,31 @@ message QueryParticipantsResponse {
// pagination defines the pagination in the response.
cosmos.base.query.v1beta1.PageResponse pagination = 2;
}
// QueryGetParticipantByAddressRequest queries participant by the laconic
// address
message QueryGetParticipantByAddressRequest {
// Laconic address
string address = 1;
}
// QueryGetParticipantByAddressResponse is response type for querying
// participant by the laconic address
message QueryGetParticipantByAddressResponse {
// Participant details
Participant participant = 1;
}
// QueryGetParticipantByNitroAddressRequest queries participant by the nitro
// address
message QueryGetParticipantByNitroAddressRequest {
// Nitro address
string nitro_address = 1;
}
// QueryGetParticipantByNitroAddressResponse is response type for querying
// participant by the nitro address
message QueryGetParticipantByNitroAddressResponse {
// Participant details
Participant participant = 1;
}
+1 -1
View File
@@ -1 +1 @@
export const DENOM = 'photon';
export const DENOM = 'alnt';
+21
View File
@@ -389,6 +389,13 @@ export class Registry {
return this._client.getAuctionsByIds(ids);
}
/**
* List authorities by owner.
*/
async getAuthorities (owner?: string, auction = false) {
return this._client.getAuthorities(owner, auction);
}
/**
* Lookup authorities by names.
*/
@@ -461,6 +468,20 @@ export class Registry {
async getParticipants () {
return this._client.getParticipants();
}
/**
* Get participant by cosmos (laconic) address.
*/
async getParticipantByAddress (address: string) {
return this._client.getParticipantByAddress(address);
}
/**
* Get participant by nitro address.
*/
async getParticipantByNitroAddress (nitroAddress: string) {
return this._client.getParticipantByNitroAddress(nitroAddress);
}
}
export { Account };
+10 -2
View File
@@ -60,7 +60,11 @@ const nameserviceExpiryTests = () => {
});
test('Wait for expiry duration', (done) => {
setTimeout(done, 60 * 1000);
const expiryTime = 60 * 1000;
// Wait some more time for block to be executed
const waitTime = expiryTime + (3 * 1000);
setTimeout(done, waitTime);
});
test('Check record expiry time', async () => {
@@ -84,7 +88,11 @@ const nameserviceExpiryTests = () => {
});
test('Wait for expiry duration', (done) => {
setTimeout(done, 60 * 1000);
const expiryTime = 60 * 1000;
// Wait some more time for block to be executed
const waitTime = expiryTime + (3 * 1000);
setTimeout(done, waitTime);
});
test('Check record deleted without bond balance', async () => {
+86 -5
View File
@@ -1,6 +1,8 @@
import assert from 'assert';
import path from 'path';
import { DirectSecp256k1Wallet, AccountData as CosmosAccount } from '@cosmjs/proto-signing';
import { Account } from './account';
import { Registry } from './index';
import { ensureUpdatedConfig, getConfig } from './testing/helper';
@@ -19,6 +21,18 @@ const namingTests = () => {
let watcher: any;
let watcherId: string;
let otherAccount1: Account;
let reservedAuthorities: {
name: string;
entry: {
ownerAddress: string;
status: string;
};
}[] = [];
let account: CosmosAccount;
beforeAll(async () => {
registry = new Registry(gqlEndpoint, rpcEndpoint, chainId);
@@ -39,12 +53,26 @@ const namingTests = () => {
);
watcherId = result.id;
const accountWallet = await DirectSecp256k1Wallet.fromKey(Buffer.from(privateKey, 'hex'), 'laconic');
[account] = await accountWallet.getAccounts();
const mnenonic1 = Account.generateMnemonic();
otherAccount1 = await Account.generateFromMnemonic(mnenonic1);
await otherAccount1.init();
});
describe('Authority tests', () => {
test('Reserve authority.', async () => {
const authorityName = `laconic-${Date.now()}`;
await registry.reserveAuthority({ name: authorityName }, privateKey, fee);
reservedAuthorities.push({
name: authorityName,
entry: {
ownerAddress: account.address,
status: 'active'
}
});
});
describe('With authority reserved', () => {
@@ -56,6 +84,13 @@ const namingTests = () => {
lrn = `lrn://${authorityName}/app/test`;
await registry.reserveAuthority({ name: authorityName }, privateKey, fee);
reservedAuthorities.push({
name: authorityName,
entry: {
ownerAddress: account.address,
status: 'active'
}
});
});
test('Lookup authority.', async () => {
@@ -80,6 +115,13 @@ const namingTests = () => {
test('Reserve sub-authority.', async () => {
const subAuthority = `echo.${authorityName}`;
await registry.reserveAuthority({ name: subAuthority }, privateKey, fee);
reservedAuthorities.push({
name: subAuthority,
entry: {
ownerAddress: account.address,
status: 'active'
}
});
const [record] = await registry.lookupAuthorities([subAuthority]);
expect(record).toBeDefined();
@@ -90,18 +132,22 @@ const namingTests = () => {
test('Reserve sub-authority with different owner.', async () => {
// Create another account, send tx to set public key on the account.
const mnenonic1 = Account.generateMnemonic();
const otherAccount1 = await Account.generateFromMnemonic(mnenonic1);
await otherAccount1.init();
await registry.sendCoins({ denom: DENOM, amount: '10000', destinationAddress: otherAccount1.address }, privateKey, fee);
const mnenonic2 = Account.generateMnemonic();
const otherAccount2 = await Account.generateFromMnemonic(mnenonic2);
await otherAccount2.init();
await registry.sendCoins({ denom: DENOM, amount: '1000000000', destinationAddress: otherAccount1.address }, privateKey, fee);
await registry.sendCoins({ denom: DENOM, amount: '1000', destinationAddress: otherAccount2.address }, otherAccount1.getPrivateKey(), fee);
const subAuthority = `halo.${authorityName}`;
await registry.reserveAuthority({ name: subAuthority, owner: otherAccount1.address }, privateKey, fee);
reservedAuthorities.push({
name: subAuthority,
entry: {
ownerAddress: otherAccount1.address,
status: 'active'
}
});
const [record] = await registry.lookupAuthorities([subAuthority]);
expect(record).toBeDefined();
@@ -120,6 +166,41 @@ const namingTests = () => {
test('Set authority bond', async () => {
await registry.setAuthorityBond({ name: authorityName, bondId }, privateKey, fee);
});
test('List authorities.', async () => {
const authorities = await registry.getAuthorities(undefined, true);
reservedAuthorities.sort((a, b) => a.name.localeCompare(b.name));
const expectedEntryKeys = [
'ownerAddress',
'ownerPublicKey',
'height',
'status',
'bondId',
'expiryTime',
'auction'
];
expect(authorities.length).toEqual(4);
expectedEntryKeys.forEach(key => {
authorities.forEach((authority: any) => {
expect(authority.entry).toHaveProperty(key);
});
});
authorities.forEach((authority: any, index: number) => {
expect(authority).toHaveProperty('name');
expect(authority.entry).toHaveProperty('ownerAddress');
expect(authority.entry).toHaveProperty('status');
expect(authority).toMatchObject(reservedAuthorities[index]);
});
});
test('List authorities by owner.', async () => {
const authorities = await registry.getAuthorities(otherAccount1.address);
expect(authorities.length).toEqual(1);
expect(authorities[0].entry.ownerAddress).toBe(otherAccount1.address);
expect(authorities[0].entry.ownerPublicKey).toBe(otherAccount1.encodedPubkey);
});
});
});
+27 -15
View File
@@ -1,6 +1,6 @@
import { Wallet } from 'ethers';
import { DirectSecp256k1Wallet } from '@cosmjs/proto-signing';
import { DirectSecp256k1Wallet, AccountData as CosmosAccount } from '@cosmjs/proto-signing';
import { Registry, Account } from './index';
import { getConfig } from './testing/helper';
@@ -16,15 +16,29 @@ const DUMMY_KYC_ID = 'dummyKycId';
const onboardingEnabledTests = () => {
let registry: Registry;
let ethWallet: Wallet;
let cosmosWallet: CosmosAccount;
let expectedParticipants: Participant[] = [];
beforeAll(async () => {
registry = new Registry(gqlEndpoint, rpcEndpoint, chainId);
});
test('Onboard participant.', async () => {
const mnemonic = Account.generateMnemonic();
ethWallet = Wallet.fromMnemonic(mnemonic);
const accountWallet = await DirectSecp256k1Wallet.fromKey(Buffer.from(privateKey, 'hex'), 'laconic');
[cosmosWallet] = await accountWallet.getAccounts();
expectedParticipants = [
{
cosmosAddress: cosmosWallet.address,
nitroAddress: ethWallet.address,
role: DUMMY_ROLE,
kycId: DUMMY_KYC_ID
}
];
});
test('Onboard participant.', async () => {
const ethPayload = {
address: ethWallet.address,
msg: 'Message signed by ethereum private key'
@@ -42,21 +56,19 @@ const onboardingEnabledTests = () => {
});
test('Query participants.', async () => {
const account = new Account(Buffer.from(privateKey, 'hex'));
const cosmosAccount = await DirectSecp256k1Wallet.fromKey(account._privateKey, 'laconic');
const [cosmosWallet] = await cosmosAccount.getAccounts();
const expectedParticipants: Participant[] = [
{
cosmosAddress: cosmosWallet.address,
nitroAddress: ethWallet.address,
role: DUMMY_ROLE,
kycId: DUMMY_KYC_ID
}
];
const participants = await registry.getParticipants();
expect(participants).toEqual(expectedParticipants);
});
test('Query participant by address.', async () => {
const participant = await registry.getParticipantByAddress(cosmosWallet.address);
expect(participant).toEqual(expectedParticipants[0]);
});
test('Query participant by Nitro address.', async () => {
const participant = await registry.getParticipantByNitroAddress(ethWallet.address);
expect(participant).toEqual(expectedParticipants[0]);
});
};
const onboardingDisabledTests = () => {
+331 -2
View File
@@ -3,8 +3,8 @@ import {
PageRequest,
PageResponse,
} from "../../../cosmos/base/query/v1beta1/pagination";
import Long from "long";
import { Participant } from "./onboarding";
import Long from "long";
import _m0 from "protobufjs/minimal";
export const protobufPackage = "cerc.onboarding.v1";
@@ -15,13 +15,49 @@ export interface QueryParticipantsRequest {
pagination?: PageRequest;
}
/** QueryParticipantsResponse is response type for get the participants */
/** QueryParticipantsResponse is response type for querying the participants */
export interface QueryParticipantsResponse {
participants: Participant[];
/** pagination defines the pagination in the response. */
pagination?: PageResponse;
}
/**
* QueryGetParticipantByAddressRequest queries participant by the laconic
* address
*/
export interface QueryGetParticipantByAddressRequest {
/** Laconic address */
address: string;
}
/**
* QueryGetParticipantByAddressResponse is response type for querying
* participant by the laconic address
*/
export interface QueryGetParticipantByAddressResponse {
/** Participant details */
participant?: Participant;
}
/**
* QueryGetParticipantByNitroAddressRequest queries participant by the nitro
* address
*/
export interface QueryGetParticipantByNitroAddressRequest {
/** Nitro address */
nitroAddress: string;
}
/**
* QueryGetParticipantByNitroAddressResponse is response type for querying
* participant by the nitro address
*/
export interface QueryGetParticipantByNitroAddressResponse {
/** Participant details */
participant?: Participant;
}
function createBaseQueryParticipantsRequest(): QueryParticipantsRequest {
return { pagination: undefined };
}
@@ -175,12 +211,273 @@ export const QueryParticipantsResponse = {
},
};
function createBaseQueryGetParticipantByAddressRequest(): QueryGetParticipantByAddressRequest {
return { address: "" };
}
export const QueryGetParticipantByAddressRequest = {
encode(
message: QueryGetParticipantByAddressRequest,
writer: _m0.Writer = _m0.Writer.create()
): _m0.Writer {
if (message.address !== "") {
writer.uint32(10).string(message.address);
}
return writer;
},
decode(
input: _m0.Reader | Uint8Array,
length?: number
): QueryGetParticipantByAddressRequest {
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
let end = length === undefined ? reader.len : reader.pos + length;
const message = createBaseQueryGetParticipantByAddressRequest();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.address = reader.string();
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromJSON(object: any): QueryGetParticipantByAddressRequest {
return {
address: isSet(object.address) ? String(object.address) : "",
};
},
toJSON(message: QueryGetParticipantByAddressRequest): unknown {
const obj: any = {};
message.address !== undefined && (obj.address = message.address);
return obj;
},
fromPartial<
I extends Exact<DeepPartial<QueryGetParticipantByAddressRequest>, I>
>(object: I): QueryGetParticipantByAddressRequest {
const message = createBaseQueryGetParticipantByAddressRequest();
message.address = object.address ?? "";
return message;
},
};
function createBaseQueryGetParticipantByAddressResponse(): QueryGetParticipantByAddressResponse {
return { participant: undefined };
}
export const QueryGetParticipantByAddressResponse = {
encode(
message: QueryGetParticipantByAddressResponse,
writer: _m0.Writer = _m0.Writer.create()
): _m0.Writer {
if (message.participant !== undefined) {
Participant.encode(
message.participant,
writer.uint32(10).fork()
).ldelim();
}
return writer;
},
decode(
input: _m0.Reader | Uint8Array,
length?: number
): QueryGetParticipantByAddressResponse {
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
let end = length === undefined ? reader.len : reader.pos + length;
const message = createBaseQueryGetParticipantByAddressResponse();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.participant = Participant.decode(reader, reader.uint32());
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromJSON(object: any): QueryGetParticipantByAddressResponse {
return {
participant: isSet(object.participant)
? Participant.fromJSON(object.participant)
: undefined,
};
},
toJSON(message: QueryGetParticipantByAddressResponse): unknown {
const obj: any = {};
message.participant !== undefined &&
(obj.participant = message.participant
? Participant.toJSON(message.participant)
: undefined);
return obj;
},
fromPartial<
I extends Exact<DeepPartial<QueryGetParticipantByAddressResponse>, I>
>(object: I): QueryGetParticipantByAddressResponse {
const message = createBaseQueryGetParticipantByAddressResponse();
message.participant =
object.participant !== undefined && object.participant !== null
? Participant.fromPartial(object.participant)
: undefined;
return message;
},
};
function createBaseQueryGetParticipantByNitroAddressRequest(): QueryGetParticipantByNitroAddressRequest {
return { nitroAddress: "" };
}
export const QueryGetParticipantByNitroAddressRequest = {
encode(
message: QueryGetParticipantByNitroAddressRequest,
writer: _m0.Writer = _m0.Writer.create()
): _m0.Writer {
if (message.nitroAddress !== "") {
writer.uint32(10).string(message.nitroAddress);
}
return writer;
},
decode(
input: _m0.Reader | Uint8Array,
length?: number
): QueryGetParticipantByNitroAddressRequest {
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
let end = length === undefined ? reader.len : reader.pos + length;
const message = createBaseQueryGetParticipantByNitroAddressRequest();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.nitroAddress = reader.string();
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromJSON(object: any): QueryGetParticipantByNitroAddressRequest {
return {
nitroAddress: isSet(object.nitroAddress)
? String(object.nitroAddress)
: "",
};
},
toJSON(message: QueryGetParticipantByNitroAddressRequest): unknown {
const obj: any = {};
message.nitroAddress !== undefined &&
(obj.nitroAddress = message.nitroAddress);
return obj;
},
fromPartial<
I extends Exact<DeepPartial<QueryGetParticipantByNitroAddressRequest>, I>
>(object: I): QueryGetParticipantByNitroAddressRequest {
const message = createBaseQueryGetParticipantByNitroAddressRequest();
message.nitroAddress = object.nitroAddress ?? "";
return message;
},
};
function createBaseQueryGetParticipantByNitroAddressResponse(): QueryGetParticipantByNitroAddressResponse {
return { participant: undefined };
}
export const QueryGetParticipantByNitroAddressResponse = {
encode(
message: QueryGetParticipantByNitroAddressResponse,
writer: _m0.Writer = _m0.Writer.create()
): _m0.Writer {
if (message.participant !== undefined) {
Participant.encode(
message.participant,
writer.uint32(10).fork()
).ldelim();
}
return writer;
},
decode(
input: _m0.Reader | Uint8Array,
length?: number
): QueryGetParticipantByNitroAddressResponse {
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
let end = length === undefined ? reader.len : reader.pos + length;
const message = createBaseQueryGetParticipantByNitroAddressResponse();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.participant = Participant.decode(reader, reader.uint32());
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromJSON(object: any): QueryGetParticipantByNitroAddressResponse {
return {
participant: isSet(object.participant)
? Participant.fromJSON(object.participant)
: undefined,
};
},
toJSON(message: QueryGetParticipantByNitroAddressResponse): unknown {
const obj: any = {};
message.participant !== undefined &&
(obj.participant = message.participant
? Participant.toJSON(message.participant)
: undefined);
return obj;
},
fromPartial<
I extends Exact<DeepPartial<QueryGetParticipantByNitroAddressResponse>, I>
>(object: I): QueryGetParticipantByNitroAddressResponse {
const message = createBaseQueryGetParticipantByNitroAddressResponse();
message.participant =
object.participant !== undefined && object.participant !== null
? Participant.fromPartial(object.participant)
: undefined;
return message;
},
};
/** Query defines the gRPC querier service for onboarding module */
export interface Query {
/** Participants queries Participants list */
Participants(
request: QueryParticipantsRequest
): Promise<QueryParticipantsResponse>;
/** GetParticipantByAddress queries a participant by cosmos (laconic) address */
GetParticipantByAddress(
request: QueryGetParticipantByAddressRequest
): Promise<QueryGetParticipantByAddressResponse>;
/** GetParticipantByNitroAddress queries a participant by nitro address */
GetParticipantByNitroAddress(
request: QueryGetParticipantByNitroAddressRequest
): Promise<QueryGetParticipantByNitroAddressResponse>;
}
export class QueryClientImpl implements Query {
@@ -188,6 +485,9 @@ export class QueryClientImpl implements Query {
constructor(rpc: Rpc) {
this.rpc = rpc;
this.Participants = this.Participants.bind(this);
this.GetParticipantByAddress = this.GetParticipantByAddress.bind(this);
this.GetParticipantByNitroAddress =
this.GetParticipantByNitroAddress.bind(this);
}
Participants(
request: QueryParticipantsRequest
@@ -202,6 +502,35 @@ export class QueryClientImpl implements Query {
QueryParticipantsResponse.decode(new _m0.Reader(data))
);
}
GetParticipantByAddress(
request: QueryGetParticipantByAddressRequest
): Promise<QueryGetParticipantByAddressResponse> {
const data = QueryGetParticipantByAddressRequest.encode(request).finish();
const promise = this.rpc.request(
"cerc.onboarding.v1.Query",
"GetParticipantByAddress",
data
);
return promise.then((data) =>
QueryGetParticipantByAddressResponse.decode(new _m0.Reader(data))
);
}
GetParticipantByNitroAddress(
request: QueryGetParticipantByNitroAddressRequest
): Promise<QueryGetParticipantByNitroAddressResponse> {
const data =
QueryGetParticipantByNitroAddressRequest.encode(request).finish();
const promise = this.rpc.request(
"cerc.onboarding.v1.Query",
"GetParticipantByNitroAddress",
data
);
return promise.then((data) =>
QueryGetParticipantByNitroAddressResponse.decode(new _m0.Reader(data))
);
}
}
interface Rpc {
+68
View File
@@ -270,6 +270,34 @@ export class RegistryClient {
return result;
}
/**
* List authorities by owner.
*/
async getAuthorities (owner?: string, auction = false) {
const query = `query ($owner: String) {
getAuthorities(owner: $owner) {
name
entry {
ownerAddress
ownerPublicKey
height
status
bondId
expiryTime
${auction ? ('auction { ' + auctionFields + ' }') : ''}
}
}
}`;
const variables = {
owner
};
const result = await this._graph(query)(variables);
return result.getAuthorities;
}
/**
* Lookup authorities by names.
*/
@@ -435,4 +463,44 @@ export class RegistryClient {
return RegistryClient.getResult(this._graph(query)(variables), 'getParticipants');
}
/**
* Get participant by cosmos address.
*/
async getParticipantByAddress (address: string) {
const query = `query ($address: String!) {
getParticipantByAddress (address: $address) {
cosmosAddress
nitroAddress
role
kycId
}
}`;
const variables = {
address
};
return RegistryClient.getResult(this._graph(query)(variables), 'getParticipantByAddress');
}
/**
* Get participant by nitro address.
*/
async getParticipantByNitroAddress (nitroAddress: string) {
const query = `query ($nitroAddress: String!) {
getParticipantByNitroAddress (nitroAddress: $nitroAddress) {
cosmosAddress
nitroAddress
role
kycId
}
}`;
const variables = {
nitroAddress
};
return RegistryClient.getResult(this._graph(query)(variables), 'getParticipantByNitroAddress');
}
}
+1 -1
View File
@@ -28,7 +28,7 @@ export const getConfig = () => {
rpcEndpoint: process.env.LACONICD_RPC_ENDPOINT || 'http://localhost:26657',
gqlEndpoint: process.env.LACONICD_GQL_ENDPOINT || 'http://localhost:9473/api',
fee: {
amount: [{ denom: 'photon', amount: '40' }],
amount: [{ denom: 'alnt', amount: '400000' }],
gas: '400000'
}
};