File tree Expand file tree Collapse file tree 3 files changed +13
-5
lines changed
Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " nilauth"
3- version = " 1.0.0-rc.1 "
3+ version = " 1.0.0-rc.2 "
44edition = " 2024"
55
66[dependencies ]
Original file line number Diff line number Diff line change @@ -9,13 +9,13 @@ services:
99 - " 5432:5432"
1010
1111 nilchain :
12- image : ghcr.io/nillionnetwork/nilchain-devnet:v0.1.0
12+ image : ghcr.io/nillionnetwork/nilchain-devnet:main
1313 restart : unless-stopped
1414 shm_size : 128mb
1515 ports :
16- - " 26648:26648" # JSON RPC
17- - " 26649:26649" # gRPC
18- - " 26650:26650" # REST
16+ - " 26648:26648" # json rpc
17+ - " 26649:26649" # grpc
18+ - " 26650:26650" # rest
1919
2020 token-price-api :
2121 image : caddy:2
Original file line number Diff line number Diff line change 1+ -- Add `did:nil` prefix to existing hex-based subscriber public keys
2+ UPDATE subscriptions
3+ SET subscriber_did = ' did:nil:' || subscriber_did
4+ WHERE subscriber_did NOT LIKE ' did:%' ;
5+
6+ UPDATE payments
7+ SET subscriber_did = ' did:nil:' || subscriber_did
8+ WHERE subscriber_did NOT LIKE ' did:%' ;
You can’t perform that action at this time.
0 commit comments