b5fce86d48
Add new record types ApplicationRecord, WebAppDeploymentRecord, GeneralRecord ( #44 )
...
Tests / sdk_tests (push) Successful in 20m38s
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: #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
Michael
81f45e95a8
debugging statements for provisionBondId ( #34 )
...
* debugging statements for provisionBondId
* always create new bond with provisionBondId helper call
2023-03-06 16:30:04 -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
Michael
77af2e5e22
Auction nameservice tests ( #28 )
...
* truncated testing until questions of intent answered
* nameservice passes local tests
* first pass running tests from sdk side
* lint cleanup
* move into dir rather than args
* double bond in naming test
* first pass building test container on sdk side... only basic tests this iteration
* missing jest
* docker compose exec got dropped
* start both containers, not just laconicd
* script cleanup in action
* working directory
* diagnostic
* diagnostic
* run against dev branch of laconicd
* run auction and nameservice-expiry tests
* switch to main branch
2023-02-10 14:44:23 -05:00
Zach
55675c7b55
rm duplicate line (typo?)
2023-01-11 18:27:00 -05:00
0xmuralik
49ebd1ab65
chain-id
2023-01-11 10:46:03 +05:30
0xmuralik
497d72bf9b
increase fee
2023-01-09 12:49:27 +05:30
Murali Krishna Komatireddy
3fca7c7844
Merge pull request #15 from cerc-io/murali/fix-tests
...
fix: Test fail after PR#40
2023-01-09 12:17:08 +05:30
0xmuralik
e8a56f2b97
fix failing tests
2023-01-03 14:50:38 +05:30
0xmuralik
0ace77c778
versioning record attributes
2023-01-02 17:44:06 +05:30
0xmuralik
1793a890d9
remove version from record
2022-12-28 16:12:34 +05:30
0xmuralik
e295b8de36
to byte array
2022-12-27 12:17:02 +05:30
0xmuralik
c0f71b0b8f
record attribute types in registry.ts
2022-12-26 11:22:03 +05:30
ebe628d082
Remove broken is-url dependency
2022-12-21 13:08:09 -07:00
0xmuralik
eaafeb9107
rename to registry
2022-12-19 11:44:18 +05:30
0xmuralik
43593c15b2
attributes to any
2022-12-19 11:25:28 +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
b9cb479381
Revert to fixturenet chain id
2022-11-04 06:45:42 -06:00
0xmuralik
fa0a4150bd
update fee
2022-11-01 15:40:34 +05:30
b1d3c83d32
Files the IDE thoughtfully did not save earlier
2022-09-28 13:22:57 -06:00
b07df23804
Blind attempt to re-brand
2022-09-28 13:20:15 -06:00
27a176fbad
Implement methods and tests for associate/dissociate bonds and records ( #4 )
...
* Implement methods for bond associate and dissociate
* Uncomment test for getStatus GQL query
2022-04-27 15:30:21 +05:30
3d103b5fca
Add getRecordsByIds method and sdk tests ( #3 )
...
* Implement getRecordsByIds method
* Add tests for sdk
2022-04-25 15:12:46 +05:30
003cfcbf5c
Use GQL query getAccounts instead of REST API
2022-04-22 16:01:04 +05:30
349bc650d9
Generate same CID from chiba-clonk chain
2022-04-22 16:01:04 +05:30
28c8099b16
Get record id from setRecord message response
2022-04-21 09:44:24 +05:30
79b55b73da
Replace wrn
with crn
2022-04-21 09:44:24 +05:30
e563cfe6b1
Add tests for record and authority expiry
2022-04-21 09:44:24 +05:30
6ca9f4041a
Fixes from review
2022-04-21 09:44:24 +05:30
c3066db987
Add test for util getContentId
2022-04-21 09:44:24 +05:30
407d31cea7
Fix queryRecords to return results filtered by attributes
2022-04-21 09:44:24 +05:30
0bc619cad2
Send messages from secondary accounts
2022-04-21 09:44:24 +05:30
838edaa9a6
Add auction tests for commitBid and revealBid
2022-04-21 09:44:24 +05:30
d51f9618e0
Implement tests for auction module
2022-04-21 09:44:24 +05:30
44b3990377
Fix generating account address from private key
2022-04-21 09:44:24 +05:30
837d9691ec
Check if error contains expected message for failing transactions
2022-04-21 09:44:24 +05:30
394f015a5e
Add tests for nameservice deleteName
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
48507ca46a
Rename ethermint to chibaclonk
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
65e90e7af0
Add nameservice tests for reserve and lookup authority
2022-04-21 09:44:24 +05:30
36b633b908
Update README with steps to run tests
2022-04-21 09:44:24 +05:30
df5619932d
Add tests for bond refill, withdraw and cancel
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
6bb264d69c
Fix create bond message
2022-04-21 09:44:24 +05:30
4c3a3558d3
Message for creating bond
2022-04-21 09:44:24 +05:30