Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Duniter v2S
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nodes
rust
Duniter v2S
Merge requests
!36
feat(runtimes): add account random id & provide randomness calls
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat(runtimes): add account random id & provide randomness calls
elois-random-id
into
master
Overview
0
Commits
5
Pipelines
0
Changes
1
Merged
Éloïs
requested to merge
elois-random-id
into
master
3 years ago
Overview
0
Commits
5
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Viewing commit
d149ce46
Prev
Next
Show latest version
1 file
+
19
−
14
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
d149ce46
fix(account): forbid account destruction until random id assignment
· d149ce46
Éloïs
authored
3 years ago
pallets/duniter-account/src/lib.rs
0 → 100644
+
285
−
0
Options
// Copyright 2021 Axiom-Team
//
// This file is part of Substrate-Libre-Currency.
//
// Substrate-Libre-Currency is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, version 3 of the License.
//
// Substrate-Libre-Currency is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with Substrate-Libre-Currency. If not, see <https://www.gnu.org/licenses/>.
#![cfg_attr(not(feature
=
"std"
),
no_std)]
mod
types
;
pub
use
pallet
::
*
;
pub
use
types
::
*
;
use
frame_support
::
pallet_prelude
::
*
;
use
frame_support
::
traits
::{
OnUnbalanced
,
StoredMap
};
use
frame_system
::
pallet_prelude
::
*
;
use
pallet_provide_randomness
::
RequestId
;
use
sp_core
::
H256
;
use
sp_runtime
::
traits
::{
Convert
,
Saturating
,
Zero
};
#[frame_support::pallet]
pub
mod
pallet
{
use
super
::
*
;
use
frame_support
::
traits
::{
Currency
,
ExistenceRequirement
,
StorageVersion
};
/// The current storage version.
const
STORAGE_VERSION
:
StorageVersion
=
StorageVersion
::
new
(
1
);
#[pallet::pallet]
#[pallet::generate_store(pub(super)
trait
Store)]
#[pallet::storage_version(STORAGE_VERSION)]
#[pallet::without_storage_info]
pub
struct
Pallet
<
T
>
(
_
);
// CONFIG //
#[pallet::config]
pub
trait
Config
:
frame_system
::
Config
<
AccountData
=
AccountData
<
Self
::
Balance
>>
+
pallet_balances
::
Config
+
pallet_provide_randomness
::
Config
<
Currency
=
pallet_balances
::
Pallet
<
Self
>>
{
type
AccountIdToSalt
:
Convert
<
Self
::
AccountId
,
[
u8
;
32
]
>
;
/// The overarching event type.
type
Event
:
From
<
Event
<
Self
>>
+
IsType
<<
Self
as
frame_system
::
Config
>
::
Event
>
;
type
MaxNewAccountsPerBlock
:
Get
<
u32
>
;
type
NewAccountPrice
:
Get
<
Self
::
Balance
>
;
}
// STORAGE //
#[pallet::storage]
#[pallet::getter(fn
pending_random_id_assignments)]
pub
type
PendingRandomIdAssignments
<
T
:
Config
>
=
StorageMap
<
_
,
Twox64Concat
,
RequestId
,
T
::
AccountId
,
OptionQuery
>
;
#[pallet::storage]
#[pallet::getter(fn
pending_new_accounts)]
pub
type
PendingNewAccounts
<
T
:
Config
>
=
StorageMap
<
_
,
Blake2_128Concat
,
T
::
AccountId
,
(),
OptionQuery
>
;
// GENESIS STUFF //
#[pallet::genesis_config]
pub
struct
GenesisConfig
<
T
:
Config
>
{
pub
accounts
:
sp_std
::
collections
::
btree_map
::
BTreeMap
<
T
::
AccountId
,
GenesisAccountData
<
T
::
Balance
>>
,
}
#[cfg(feature
=
"std"
)]
impl
<
T
:
Config
>
Default
for
GenesisConfig
<
T
>
{
fn
default
()
->
Self
{
Self
{
accounts
:
Default
::
default
(),
}
}
}
#[pallet::genesis_build]
impl
<
T
:
Config
>
GenesisBuild
<
T
>
for
GenesisConfig
<
T
>
{
fn
build
(
&
self
)
{
for
(
account_id
,
GenesisAccountData
{
random_id
,
balance
,
is_identity
,
},
)
in
&
self
.accounts
{
assert!
(
!
balance
.is_zero
()
||
*
is_identity
);
frame_system
::
Account
::
<
T
>
::
mutate
(
account_id
,
|
account
|
{
account
.data.random_id
=
Some
(
*
random_id
);
if
!
balance
.is_zero
()
{
account
.data.free
=
*
balance
;
account
.providers
=
1
;
}
if
*
is_identity
{
account
.sufficients
=
1
;
}
});
}
}
}
// EVENTS //
#[pallet::event]
#[pallet::generate_deposit(pub(super)
fn
deposit_event)]
pub
enum
Event
<
T
:
Config
>
{
/// Random id assigned
/// [account_id, random_id]
RandomIdAssigned
{
account_id
:
T
::
AccountId
,
random_id
:
H256
,
},
}
// HOOKS //
#[pallet::hooks]
impl
<
T
:
Config
>
Hooks
<
BlockNumberFor
<
T
>>
for
Pallet
<
T
>
{
fn
on_initialize
(
_
:
T
::
BlockNumber
)
->
Weight
{
let
mut
total_weight
=
0
;
for
account_id
in
PendingNewAccounts
::
<
T
>
::
iter_keys
()
.drain
()
.take
(
T
::
MaxNewAccountsPerBlock
::
get
()
as
usize
)
{
if
frame_system
::
Pallet
::
<
T
>
::
sufficients
(
&
account_id
)
>
0
{
// If the account is self-sufficient, it is exempt from account creation fees
let
request_id
=
pallet_provide_randomness
::
Pallet
::
<
T
>
::
force_request
(
pallet_provide_randomness
::
RandomnessType
::
RandomnessFromTwoEpochsAgo
,
H256
(
T
::
AccountIdToSalt
::
convert
(
account_id
.clone
())),
);
PendingRandomIdAssignments
::
<
T
>
::
insert
(
request_id
,
account_id
);
total_weight
+=
100_000
;
}
else
{
// If the account is not self-sufficient, it must pay the account creation fees
frame_system
::
Pallet
::
<
T
>
::
inc_providers
(
&
account_id
);
let
res
=
T
::
Currency
::
withdraw
(
&
account_id
,
T
::
NewAccountPrice
::
get
(),
frame_support
::
traits
::
WithdrawReasons
::
FEE
,
ExistenceRequirement
::
KeepAlive
,
);
if
let
Ok
(
imbalance
)
=
res
{
// The fees have been succesfully collected, we should:
// 1. Increment consumers to prevent the destruction of the account before
// the random id is assigned
// 2. Manage the funds collected
// 3. Submit random id generation request
// 4. Save the id of the random generation request.
let
res
=
frame_system
::
Pallet
::
<
T
>
::
inc_consumers_without_limit
(
&
account_id
);
debug_assert!
(
res
.is_ok
(),
"Cannot fail because providers are incremented just before"
);
T
::
OnUnbalanced
::
on_unbalanced
(
imbalance
);
let
request_id
=
pallet_provide_randomness
::
Pallet
::
<
T
>
::
force_request
(
pallet_provide_randomness
::
RandomnessType
::
RandomnessFromTwoEpochsAgo
,
H256
(
T
::
AccountIdToSalt
::
convert
(
account_id
.clone
())),
);
PendingRandomIdAssignments
::
<
T
>
::
insert
(
request_id
,
account_id
);
total_weight
+=
200_000
;
}
else
{
// The charges could not be deducted, we slash the account
let
res
=
frame_system
::
Pallet
::
<
T
>
::
dec_providers
(
&
account_id
);
debug_assert!
(
res
.is_ok
(),
"Cannot fail because providers are incremented just before"
);
let
account_data
=
frame_system
::
Pallet
::
<
T
>
::
get
(
&
account_id
);
let
(
imbalance
,
rest
)
=
pallet_balances
::
Pallet
::
<
T
>
::
slash
(
&
account_id
,
account_data
.free
.saturating_add
(
account_data
.reserved
),
);
debug_assert!
(
rest
.is_zero
());
T
::
OnUnbalanced
::
on_unbalanced
(
imbalance
);
total_weight
+=
300_000
;
}
}
}
total_weight
}
}
}
impl
<
T
>
pallet_provide_randomness
::
OnFilledRandomness
for
Pallet
<
T
>
where
T
:
Config
,
{
fn
on_filled_randomness
(
request_id
:
RequestId
,
randomness
:
H256
)
->
Weight
{
if
let
Some
(
account_id
)
=
PendingRandomIdAssignments
::
<
T
>
::
take
(
request_id
)
{
frame_system
::
Account
::
<
T
>
::
mutate
(
&
account_id
,
|
account
|
{
account
.consumers
=
account
.consumers
.saturating_sub
(
1
);
account
.data.random_id
=
Some
(
randomness
);
});
Self
::
deposit_event
(
Event
::
RandomIdAssigned
{
account_id
,
random_id
:
randomness
,
});
200_000
}
else
{
100_000
}
}
}
impl
<
T
,
AccountId
,
Balance
>
frame_support
::
traits
::
StoredMap
<
AccountId
,
pallet_balances
::
AccountData
<
Balance
>>
for
Pallet
<
T
>
where
AccountId
:
Parameter
+
Member
+
MaybeSerializeDeserialize
+
core
::
fmt
::
Debug
+
sp_runtime
::
traits
::
MaybeDisplay
+
Ord
+
Into
<
[
u8
;
32
]
>
+
codec
::
MaxEncodedLen
,
Balance
:
Parameter
+
Member
+
sp_runtime
::
traits
::
AtLeast32BitUnsigned
+
codec
::
Codec
+
Default
+
Copy
+
MaybeSerializeDeserialize
+
core
::
fmt
::
Debug
+
codec
::
MaxEncodedLen
+
scale_info
::
TypeInfo
,
T
:
Config
+
frame_system
::
Config
<
AccountId
=
AccountId
,
AccountData
=
AccountData
<
Balance
>>
+
pallet_balances
::
Config
<
Balance
=
Balance
>
+
pallet_provide_randomness
::
Config
,
{
fn
get
(
k
:
&
AccountId
)
->
pallet_balances
::
AccountData
<
Balance
>
{
frame_system
::
Account
::
<
T
>
::
get
(
k
)
.data
.into
()
}
fn
try_mutate_exists
<
R
,
E
:
From
<
sp_runtime
::
DispatchError
>>
(
account_id
:
&
AccountId
,
f
:
impl
FnOnce
(
&
mut
Option
<
pallet_balances
::
AccountData
<
Balance
>>
)
->
Result
<
R
,
E
>
,
)
->
Result
<
R
,
E
>
{
let
account
=
frame_system
::
Account
::
<
T
>
::
get
(
account_id
);
let
was_providing
=
account
.data
.was_providing
();
let
mut
some_data
=
if
was_providing
{
Some
(
account
.data
.into
())
}
else
{
None
};
let
result
=
f
(
&
mut
some_data
)
?
;
let
is_providing
=
some_data
.is_some
();
if
!
was_providing
&&
is_providing
{
if
!
frame_system
::
Pallet
::
<
T
>
::
account_exists
(
account_id
)
{
// If the account does not exist, we should program its creation
PendingNewAccounts
::
<
T
>
::
insert
(
account_id
,
());
}
else
{
// If the account already exists, we should register increment providers directly
frame_system
::
Pallet
::
<
T
>
::
inc_providers
(
account_id
);
}
}
else
if
was_providing
&&
!
is_providing
{
match
frame_system
::
Pallet
::
<
T
>
::
dec_providers
(
account_id
)
?
{
frame_system
::
DecRefStatus
::
Reaped
=>
return
Ok
(
result
),
frame_system
::
DecRefStatus
::
Exists
=>
{
// Update value as normal...
}
}
}
else
if
!
was_providing
&&
!
is_providing
{
return
Ok
(
result
);
}
frame_system
::
Account
::
<
T
>
::
mutate
(
account_id
,
|
a
|
{
a
.data
.set_balances
(
some_data
.unwrap_or_default
())
});
Ok
(
result
)
}
}
Loading