From 7ae9f94d73f38c7091df4d37dc543b201cd05a90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Schie=C3=9Fl?= Date: Sat, 28 Jul 2018 16:03:14 +0200 Subject: [PATCH] Update bsip-0040.md --- bsip-0040.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/bsip-0040.md b/bsip-0040.md index c88d77e..edb1f6f 100644 --- a/bsip-0040.md +++ b/bsip-0040.md @@ -47,24 +47,24 @@ All descriptions in this section are on a pseudo/prosa level and no recommendati ### Custom active permission and custom active authority -A `custom_active_permission` looks like follows (in JSON for clarification, backend serializes and stores in a different way): +A `custom_active_permission` looks like follows (in JSON/pseudo for clarification): ``` custom_active_permission = list of custom_active_authority items custom_active_authority = { - valid_from, // this custom active authority is valid starting at this timestamp, defaults to now - valid_to, // this custom active authority is valid until this timestamp, defaults to 1 year - operationid, - authority, - asserts + valid_from, // timestamp when this is active, defaults to now + valid_to, // timestamp when this is invalid, defaults to 1 month + operationid, // operationid of the target operation, + authority, // same as for the existing authortities (multisig with weighted accounts or keys), + asserts // see below } ``` -Note: This assumes `custom_active_permission` is stored within `account_object`. Actual implementation details left to the implementer. +Note: This assumes `custom_active_permission` is stored within `account_object`. Actual implementation details left to the implementer, as long as every `custom_active_permission` can be assigned to exactly one account. ### Asserts The `asserts` is a list of `assert_objects` that are all together evaluated with `and` logic to evaluate a match ``` -asserts = list of assert_object +asserts = list of assert_objects assert_object = { argument, // target argument of the operationid function, // functionid to do the assert