prathamesh0
f2401e6953
Update registry SDK bond methods to use cosmjs ( #2 )
...
* Update method to create bond using cosmjs
* Fix method get next bond id
* Update method to refill bond
* Update methods to withdraw and cancel bond
* Add wallet and address fields to Account class
* Rename bond amount constant
---------
Co-authored-by: neeraj <neeraj.rtly@gmail.com>
2024-03-06 19:48:45 +05:30
prathamesh0
ce3cfbd457
Update proto files and regenerate ts bindings ( #1 )
...
* Update proto files
* Update script to generate typescript definitions
* Generate typescript definitions from protobuf files
* Cleanup unnecessary proto files
---------
Co-authored-by: neeraj <neeraj.rtly@gmail.com>
2024-03-06 12:01:09 +05:30
65001568c8
Remove hard-coded record types ( #52 )
...
Refactors the `Record.Attributes` from Any into a byte string.
Companion to cerc-io/laconicd#132 .
Resolves https://github.com/cerc-io/laconicd/issues/107
Co-authored-by: Roy Crihfield <roy@manteia.ltd>
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Reviewed-on: cerc-io/laconic-sdk#52
Reviewed-by: Thomas E Lackey <telackey@noreply.git.vdb.to>
Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
2024-01-15 04:58:55 +00:00
b5fce86d48
Add new record types ApplicationRecord, WebAppDeploymentRecord, GeneralRecord ( #44 )
...
See also: cerc-io/laconicd#113
![image](/attachments/db05bbb6-86ca-4fbb-a8a4-fcd06501b1b1)
```
message ApplicationRecord {
string type = 1 [(gogoproto.moretags) = "json:\"type\" yaml:\"type\""];
string name = 2 [(gogoproto.moretags) = "json:\"name\" yaml:\"name\""];
string description = 3 [(gogoproto.moretags) = "json:\"description\" yaml:\"description\""];
string version = 4 [(gogoproto.moretags) = "json:\"version\" yaml:\"version\""];
string homepage = 5 [(gogoproto.moretags) = "json:\"homepage\" yaml:\"homepage\""];
string license = 6 [(gogoproto.moretags) = "json:\"license\" yaml:\"license\""];
string author = 7 [(gogoproto.moretags) = "json:\"author\" yaml:\"author\""];
string repository = 8 [(gogoproto.moretags) = "json:\"repository\" yaml:\"repository\""];
string repository_tag = 9 [(gogoproto.moretags) = "json:\"repositoryTag\" yaml:\"repositoryTag\""];
string app_version = 10 [(gogoproto.moretags) = "json:\"appVersion\" yaml:\"appVersion\""];
string app_type = 11 [(gogoproto.moretags) = "json:\"appType\" yaml:\"appType\""];
string meta = 20 [(gogoproto.moretags) = "json:\"meta\" yaml:\"meta\""];
repeated string tags = 21 [(gogoproto.moretags) = "json:\"tags\" yaml:\"tags\""];
}
message WebAppDeploymentRecord {
string type = 1 [(gogoproto.moretags) = "json:\"type\" yaml:\"type\""];
string name = 2 [(gogoproto.moretags) = "json:\"name\" yaml:\"name\""];
string description = 3 [(gogoproto.moretags) = "json:\"description\" yaml:\"description\""];
string version = 4 [(gogoproto.moretags) = "json:\"version\" yaml:\"version\""];
string application = 5 [(gogoproto.moretags) = "json:\"application\" yaml:\"application\""];
string url = 6 [(gogoproto.moretags) = "json:\"\" yaml:\"name\""];
string meta = 20 [(gogoproto.moretags) = "json:\"meta\" yaml:\"meta\""];
repeated string tags = 21 [(gogoproto.moretags) = "json:\"tags\" yaml:\"tags\""];
}
message GeneralRecord {
string type = 1 [(gogoproto.moretags) = "json:\"type\" yaml:\"type\""];
string name = 2 [(gogoproto.moretags) = "json:\"name\" yaml:\"name\""];
string description = 3 [(gogoproto.moretags) = "json:\"description\" yaml:\"description\""];
string version = 4 [(gogoproto.moretags) = "json:\"version\" yaml:\"version\""];
string category = 5 [(gogoproto.moretags) = "json:\"category\" yaml:\"category\""];
string value = 6 [(gogoproto.moretags) = "json:\"value\" yaml:\"value\""];
string meta = 20 [(gogoproto.moretags) = "json:\"meta\" yaml:\"meta\""];
repeated string tags = 21 [(gogoproto.moretags) = "json:\"tags\" yaml:\"tags\""];
```
```
❯ cat general.yml
record:
type: GeneralRecord
name: my-generic-record
version: 0.0.1
value: "anything-goes-here"
category: filter-by-this
tags:
- a
- b
- c
meta:
foo: bar
bar:
baz: boz
❯ bin/laconic cns record publish --filename general.yml --bond-id ba774084e25af5b29be126dda0bb910d93dea3634713a438ac257da5bbdc631c
{
"id": "bafyreigt3he52eia5g4i5pnst4dfcuwwgjdoul6xmcke2obz5os4xwoo3q"
}
❯ bin/laconic cns record get --id bafyreigt3he52eia5g4i5pnst4dfcuwwgjdoul6xmcke2obz5os4xwoo3q
[
{
"id": "bafyreigt3he52eia5g4i5pnst4dfcuwwgjdoul6xmcke2obz5os4xwoo3q",
"names": null,
"owners": [
"9A66500A9AA574CAAB4EDB26F7333590BF452CE0"
],
"bondId": "ba774084e25af5b29be126dda0bb910d93dea3634713a438ac257da5bbdc631c",
"createTime": "2023-11-17T23:11:27Z",
"expiryTime": "2024-11-16T23:11:27Z",
"attributes": {
"meta": "{\"foo\":\"bar\",\"bar\":{\"baz\":\"boz\"}}",
"tags": [
"a",
"b",
"c"
],
"type": "GeneralRecord",
"name": "my-generic-record",
"version": "0.0.1",
"category": "filter-by-this",
"value": "anything-goes-here"
}
}
]
```
> Note: The repeated items are preserved as lists, but the object/map ends up encoded as a string. It would be nice to avoid this.
Reviewed-on: cerc-io/laconic-sdk#44
Reviewed-by: David Boreham <dboreham@noreply.git.vdb.to>
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2023-11-20 22:01:19 +00:00
Michael
2493e2c706
Revert "remaining record types support ( #27 )" ( #35 )
...
This reverts commit db3f9707d2
.
2023-03-06 16:54:02 -05:00
Murali Krishna Komatireddy
db3f9707d2
remaining record types support ( #27 )
...
* remaining record types support
* fix sdk tests
* create record types from examples
* bond tests
* registry expiry tests
* fix typos
2023-03-06 16:17:43 -05:00
ebe628d082
Remove broken is-url dependency
2022-12-21 13:08:09 -07:00
f2c7468ba8
Fix version of bip32 package ( #14 )
2022-12-09 18:13:53 +05:30
ee0443b5fa
Changes to use laconic-sdk with console-app ( #10 )
...
* Use older version of tiny-secp256k1 to work in browser
* Make REST endpoint optional
2022-12-09 14:25:13 +05:30
5f1f3fa9e6
Fix dependencies to remove yarn warnings
2022-09-28 11:22:34 -06:00
349bc650d9
Generate same CID from chiba-clonk chain
2022-04-22 16:01:04 +05:30
44b3990377
Fix generating account address from private key
2022-04-21 09:44:24 +05:30
f207be4838
Add tests for querying names and deleteName
2022-04-21 09:44:24 +05:30
9de3c59c19
Implement setRecord and add test for setAutorityBond
2022-04-21 09:44:24 +05:30
58227b68be
Changes from review
2022-04-21 09:44:24 +05:30
252665512d
Add tests for reserving authority with different owner
2022-04-21 09:44:24 +05:30
7fe5bcda83
Add tests for querying bond
2022-04-21 09:44:24 +05:30
19d5405087
Implement pattern from dxns-registry-client
2022-04-21 09:44:24 +05:30
4c3a3558d3
Message for creating bond
2022-04-21 09:44:24 +05:30
72ab467d9b
Send tokens using evmosjs and eth-sig-util
2022-04-21 09:44:24 +05:30
6871e35964
Add failing test case for sending tokens
2022-04-21 09:44:24 +05:30