You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
595 B
24 lines
595 B
/**
|
|
* Represents a list of Snaps that are not allowed to be used.
|
|
* Can be blocked by [ID, VERSION] or SHASUM of a source code (or both).
|
|
*
|
|
* Example:
|
|
* {
|
|
* id: 'npm:@consensys/snap-id',
|
|
* versionRange: '<0.1.11',
|
|
* shasum: 'TEIbWsAyQe/8rBNXOHx3bOP9YF61PIPP/YHeokLchJE=',
|
|
* },
|
|
* {
|
|
* shasum: 'eCYGZiYvZ3/uxkKI3npfl79kTQXS/5iD9ojsBS4A3rI=',
|
|
* },
|
|
*/
|
|
export const SNAP_BLOCKLIST = [
|
|
{
|
|
id: 'npm:@consensys/starknet-snap',
|
|
versionRange: '<0.1.11',
|
|
},
|
|
{
|
|
// @consensys/starknet-snap v:0.1.10
|
|
shasum: 'A83r5/ZIcKuKwuAnQHHByVFCuofj7jGK5hOStmHY6A0=',
|
|
},
|
|
];
|
|
|