You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
modified logic
Minor changes to running_count insert and delete logic (#1333)
Move the decode logic from the RPC wrapper into the chain runtime. This is an internal change between the host binary and the chain runtime. (#1343)
Modified unbond function to not allow a validator to unbond leaving less than 50k POLYX bonded (#1348)
Added check for ticker starting first byte (#1344)
Adds a helper function for setting the Timestamp in unit tests. (#1359)
Add ensure check for revoke_claim to make sure claim exist (#1361)
Created a check in ticker registration to make sure it is alphanumeric (#1296)
Store block hashes for the last 4,096 blocks rather than the current 250 blocks - as per paritytech/polkadot#6037 (#1375)
Allow operational extrinsics which are submitted by the GC or a CDD provider to have non-zero tips and corresponding priorities. (#1377)
To avoid a state rollback (i.e allow setting instruction status to the failed state) the return of execute_instruction_retryable is now matched, and returns an event in case of failure. (#1383)
Added compliance check for validators list and test case to check error (#1376)
Don't allow the same ticker to be moved multiple times within the same portfolio move extrinsic (#1374)
Emit event BridgeTxFailed to report errors (missing CDD, limit reached) when trying to handle a bridge transaction, instead of returning the error. This is needed to support new Substrate release that wrap all calls in transactions. (#1373)
Settlement receipts are not allowed for tickers of on-chain assets. (#1405)
Update example settlement contract to use manual settlement execution. (#1391)
data migration required
Called Identity add_account_key_ref_count function on current validators (#1333)
new features
Allow payment_queryInfo RPC endpoint to work even when the RPC node is a different version from the chain runtime. (#1343)
Add support for Smart Contracts to call into the runtime, read from storage, Twox hash, get chain spec/transaction version, get key's identity. (#1337)
Add CallRuntimeWhitelist storage to restrict the pallets/extrinsics that contracts are allowed to call. (#1337)
Add a new event BridgeTxFailed to the bridge pallet. (#1373)
Add example Smart Contract for vesting POLYX. (#1388)
Add example Smart Contract for wrapped POLYX. (#1392)
Add Polymesh Runtime 5.x contract code for upgradable contracts. (#1393)
Converted old chain extensions to OldCallRuntime. Those chain extensions are deprecated and shouldn't be used. (#1337)
Added storage CallRuntimeWhitelist to restrict the pallets/extrinsics that contracts are allowed to call. (#1337)
Added extrinsic PolymeshContracts.update_call_runtime_whitelist() to add/remove extrinsics from the whitelist. (#1337)
New extrinsic identity::cdd_register_did_with_cdd to allow CDD providers to create an identity and add a CDD claim with a blank CddId, in a single extrinsic call. (#1380)
Adds an event: FailedToExecuteInstruction; (#1383)
The execute_scheduled_instruction will no longer return an error; (#1383)