diff --git a/README.md b/README.md index 14a9ea9..0612e30 100644 --- a/README.md +++ b/README.md @@ -20,10 +20,16 @@ Once the job completes, your application will be available at `http://localhost: ## Deployment on the Internet Computer -The canister is deployed to `htvbm-vaaaa-aaaap-qb5kq-cai`. You can check the Canid UI at [`https://a4gq6-oaaaa-aaaab-qaa4q-cai.raw.icp0.io/?id=htvbm-vaaaa-aaaap-qb5kq-cai`](https://a4gq6-oaaaa-aaaab-qaa4q-cai.raw.icp0.io/?id=htvbm-vaaaa-aaaap-qb5kq-cai). +The canister is deployed to `htvbm-vaaaa-aaaap-qb5kq-cai`. + +You can check the Canid UI at [`https://a4gq6-oaaaa-aaaab-qaa4q-cai.raw.icp0.io/?id=htvbm-vaaaa-aaaap-qb5kq-cai`](https://a4gq6-oaaaa-aaaab-qaa4q-cai.raw.icp0.io/?id=htvbm-vaaaa-aaaap-qb5kq-cai). You can also see how many signatures have been generated at [https://htvbm-vaaaa-aaaap-qb5kq-cai.raw.icp0.io/](https://htvbm-vaaaa-aaaap-qb5kq-cai.raw.icp0.io/). +## Credits + +This canister is monitored by [CycleOps](https://cycleops.dev) + diff --git a/src/lib.rs b/src/lib.rs index e48a4ad..9f1b64f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -248,9 +248,7 @@ fn sign_with_schnorr(arg: SignWithSchnorr) -> SignWithSchnorrReply { fn http_request(_req: HttpRequest) -> HttpResponse { let sig_count = STATE.with(|s| s.borrow().sig_count.get().clone()); - let balance = ic_cdk::api::canister_balance128(); - let metrics = Metrics { balance, sig_count }; HttpResponse {