Skip to content

Commit a554791

Browse files
committed
update Solidstate case in text
1 parent 41e663b commit a554791

15 files changed

+22
-22
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
## Packages
1616

17-
SolidState is an upgradeable-first Solidity smart contract development library.
17+
Solidstate is an upgradeable-first Solidity smart contract development library.
1818

1919
It consists of the following packages:
2020

@@ -31,7 +31,7 @@ All contracts are designed to either be deployed through the standard `construct
3131

3232
### Spec
3333

34-
Where possible, automated tests are designed to be imported by repositories which make use of the SolidState contracts and run against any derived contracts. This is to help prevent unintended changes to the base contract behavior.
34+
Where possible, automated tests are designed to be imported by repositories which make use of the Solidstate contracts and run against any derived contracts. This is to help prevent unintended changes to the base contract behavior.
3535

3636
For example, consider a custom `ERC20Base` implementation:
3737

abi/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# SolidState ABI
1+
# Solidstate ABI
22

3-
SolidState smart contract ABIs. Part of the SolidState Solidity monorepo.
3+
Solidstate smart contract ABIs. Part of the Solidstate Solidity monorepo.
44

55
## Installation
66

abi/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.61",
44
"author": "Nick Barry",
55
"license": "MIT",
6-
"description": "ABIs for SolidState contracts",
6+
"description": "ABIs for Solidstate contracts",
77
"keywords": [
88
"solidity",
99
"smart-contracts",

contracts/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# SolidState Contracts
1+
# Solidstate Contracts
22

3-
SolidState contract library. Part of the SolidState Solidity monorepo.
3+
Solidstate contract library. Part of the Solidstate Solidity monorepo.
44

55
> **Note**: An old version of this library has been audited by Hacken. More details are available in [the report](https://hacken.io/wp-content/uploads/2021/10/15092021_Premia_SC_Audit_Report.pdf).
66
@@ -37,9 +37,9 @@ An overview of the uses of each layer is as follows:
3737
| Internal Interface | `event`, `error`, `enum`, `struct` | set of non-function elements of a module's interface | `IERC20BaseInternal.sol` |
3838
| Storage Library | storage layout `struct` (`Layout`), getter function (`layout()`), and standard storage location (`STORAGE_SLOT`) | library for accessing and modifying storage; useful when sharing access to storage between implementation contracts that will be deployed separately (such as in the "diamond" proxy architecture) | `ERC20BaseStorage.sol` |
3939

40-
### SolidState Pre-Configured Contracts
40+
### Solidstate Pre-Configured Contracts
4141

42-
SolidState maintains "recommended" implementations of various standards, which are suitable for most users. Internally, these implementations may be composed of several modules, which themselves may be composed of several "visibility layers". Visibility layers are subject to a consistent naming convention so that their purposes may be easily identified.
42+
Solidstate maintains "recommended" implementations of various standards, which are suitable for most users. Internally, these implementations may be composed of several modules, which themselves may be composed of several "visibility layers". Visibility layers are subject to a consistent naming convention so that their purposes may be easily identified.
4343

4444
For example, the `SolidStateERC20` contract contains `ERC20Base`, `ERC20Extended` and `ERC20Metadata` modules (among others), which are recommended for most projects.
4545

contracts/proxy/diamond/SolidStateDiamond.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { ISolidStateDiamond } from './ISolidStateDiamond.sol';
1919
import { SolidStateDiamondInternal } from './SolidStateDiamondInternal.sol';
2020

2121
/**
22-
* @title SolidState "Diamond" proxy reference implementation
22+
* @title Solidstate "Diamond" proxy reference implementation
2323
*/
2424
abstract contract SolidStateDiamond is
2525
ISolidStateDiamond,

contracts/token/ERC1155/SolidStateERC1155.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { ISolidStateERC1155 } from './ISolidStateERC1155.sol';
1111
import { SolidStateERC1155Internal } from './SolidStateERC1155Internal.sol';
1212

1313
/**
14-
* @title SolidState ERC1155 implementation
14+
* @title Solidstate ERC1155 implementation
1515
*/
1616
abstract contract SolidStateERC1155 is
1717
ISolidStateERC1155,

contracts/token/ERC1404/SolidStateERC1404.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { ISolidStateERC1404 } from './ISolidStateERC1404.sol';
1010
import { SolidStateERC1404Internal } from './SolidStateERC1404Internal.sol';
1111

1212
/**
13-
* @title SolidState ERC1404 implementation, including recommended ERC20 extensions
13+
* @title Solidstate ERC1404 implementation, including recommended ERC20 extensions
1414
*/
1515
abstract contract SolidStateERC1404 is
1616
ISolidStateERC1404,

contracts/token/ERC20/SolidStateERC20.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { ISolidStateERC20 } from './ISolidStateERC20.sol';
1212
import { SolidStateERC20Internal } from './SolidStateERC20Internal.sol';
1313

1414
/**
15-
* @title SolidState ERC20 implementation, including recommended extensions
15+
* @title Solidstate ERC20 implementation, including recommended extensions
1616
*/
1717
abstract contract SolidStateERC20 is
1818
ISolidStateERC20,

contracts/token/ERC20/SolidStateERC20Internal.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { ERC20PermitInternal } from './permit/ERC20PermitInternal.sol';
99
import { ISolidStateERC20Internal } from './ISolidStateERC20Internal.sol';
1010

1111
/**
12-
* @title SolidState ERC20 implementation, including recommended extensions
12+
* @title Solidstate ERC20 implementation, including recommended extensions
1313
*/
1414
abstract contract SolidStateERC20Internal is
1515
ISolidStateERC20Internal,

contracts/token/ERC4626/SolidStateERC4626.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { ISolidStateERC4626 } from './ISolidStateERC4626.sol';
1010
import { SolidStateERC4626Internal } from './SolidStateERC4626Internal.sol';
1111

1212
/**
13-
* @title SolidState ERC4626 implementation, including recommended ERC20 extensions
13+
* @title Solidstate ERC4626 implementation, including recommended ERC20 extensions
1414
*/
1515
abstract contract SolidStateERC4626 is
1616
ISolidStateERC4626,

contracts/token/ERC721/SolidStateERC721.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { ISolidStateERC721 } from './ISolidStateERC721.sol';
1111
import { SolidStateERC721Internal } from './SolidStateERC721Internal.sol';
1212

1313
/**
14-
* @title SolidState ERC721 implementation, including recommended extensions
14+
* @title Solidstate ERC721 implementation, including recommended extensions
1515
*/
1616
abstract contract SolidStateERC721 is
1717
ISolidStateERC721,

lib/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# SolidState Library
1+
# Solidstate Library
22

3-
Utility functions for interaction with SolidState contracts. Part of the SolidState Solidity monorepo.
3+
Utility functions for interaction with Solidstate contracts. Part of the Solidstate Solidity monorepo.
44

55
## Installation
66

lib/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.61",
44
"author": "Nick Barry",
55
"license": "MIT",
6-
"description": "SolidState utility library",
6+
"description": "Solidstate utility library",
77
"keywords": [
88
"solidity",
99
"smart-contracts",

spec/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# SolidState Spec
1+
# Solidstate Spec
22

3-
Portable specifications for SolidState contracts. Part of the SolidState Solidity monorepo.
3+
Portable specifications for Solidstate contracts. Part of the Solidstate Solidity monorepo.
44

55
## Installation
66

spec/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.61",
44
"author": "Nick Barry",
55
"license": "MIT",
6-
"description": "Portable specifications for SolidState contracts",
6+
"description": "Portable specifications for Solidstate contracts",
77
"keywords": [
88
"solidity",
99
"smart-contracts",

0 commit comments

Comments
 (0)