Skip to content

Commit

Permalink
starknet-gauntlet-starkgate: rename to starknet-gauntlet-token
Browse files Browse the repository at this point in the history
  • Loading branch information
cfal committed Apr 10, 2023
1 parent 39af564 commit 527f77b
Show file tree
Hide file tree
Showing 26 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Chainlink-Starknet contains a number of projects, all individually versioned and
- [@chainlink/starknet-gauntlet-ocr2](/packages-ts/starknet-gauntlet-ocr2/)
- [@chainlink/starknet-gauntlet-oz](/packages-ts/starknet-gauntlet-oz/)
- [@chainlink/starknet-gauntlet-argent](/packages-ts/starknet-gauntlet-argent/)
- [@chainlink/starknet-gauntlet-starkgate](/packages-ts/starknet-gauntlet-starkgate/)
- [@chainlink/starknet-gauntlet-token](/packages-ts/starknet-gauntlet-token/)
- [@chainlink/starknet-contracts](/contracts/)
- [@chainlink/starknet-integration-tests](/integration-tests/)

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ test-integration-gauntlet: build-ts env-devnet-hardhat-down
yarn test
cd packages-ts/starknet-gauntlet-oz/ && \
yarn test
cd packages-ts/starknet-gauntlet-starkgate/ && \
cd packages-ts/starknet-gauntlet-token/ && \
yarn test
cd packages-ts/starknet-gauntlet-emergency-protocol/ && \
yarn test
Expand Down
2 changes: 1 addition & 1 deletion docs/gauntlet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
- [CLI](../../packages-ts/starknet-gauntlet-cli/README.md)
- [Example Contract](../../packages-ts/starknet-gauntlet-example/README.md)
- [OZ Contracts](../../packages-ts/starknet-gauntlet-oz/README.md)
- [Starkgate Contracts](../../packages-ts/starknet-gauntlet-starkgate/README.md)
- [Starkgate Contracts](../../packages-ts/starknet-gauntlet-token/README.md)
- [Emergency Protocol Contracts](../../packages-ts/starknet-gauntlet-emergency-protocol/README.md)
- [Argent Contracts](../../packages-ts/starknet-gauntlet-argent/README.md)
- [OCR2 Contracts](../../packages-ts/starknet-gauntlet-ocr2/README.md)
Expand Down
2 changes: 1 addition & 1 deletion jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const config: Config.InitialOptions = {
projectConfig('starknet-gauntlet-multisig'),
projectConfig('starknet-gauntlet-ocr2'),
projectConfig('starknet-gauntlet-oz'),
projectConfig('starknet-gauntlet-starkgate'),
projectConfig('starknet-gauntlet-token'),
projectConfig('starknet-gauntlet-emergency-protocol'),
],
}
Expand Down
2 changes: 1 addition & 1 deletion packages-ts/starknet-gauntlet-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"@chainlink/starknet-gauntlet-argent": "*",
"@chainlink/starknet-gauntlet-example": "*",
"@chainlink/starknet-gauntlet-ocr2": "*",
"@chainlink/starknet-gauntlet-starkgate": "*",
"@chainlink/starknet-gauntlet-token": "*",
"@chainlink/starknet-gauntlet-multisig": "*",
"@chainlink/starknet-gauntlet-emergency-protocol": "*",
"@chainlink/starknet-gauntlet-ledger": "*"
Expand Down
2 changes: 1 addition & 1 deletion packages-ts/starknet-gauntlet-cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { Commands as OZCommands } from '@chainlink/starknet-gauntlet-oz'
import {
L2Commands as L2StarkgateCommands,
InspectionCommands as StarkgateInspectionCommands,
} from '@chainlink/starknet-gauntlet-starkgate'
} from '@chainlink/starknet-gauntlet-token'
import { Commands as ArgentCommands } from '@chainlink/starknet-gauntlet-argent'
import {
L1Commands as L1EmergencyProtocolCommands,
Expand Down
2 changes: 1 addition & 1 deletion packages-ts/starknet-gauntlet-ledger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
],
"scripts": {
"lint": "tsc",
"test": "SKIP_PROMPTS=true jest --runInBand --config ../../jest.config.ts --selectProjects starknet-gauntlet-starkgate --passWithNoTests",
"test": "SKIP_PROMPTS=true jest --runInBand --config ../../jest.config.ts --selectProjects starknet-gauntlet-token --passWithNoTests",
"test:ci": "yarn test --ci",
"format": "yarn prettier --write ./src",
"format:check": "yarn prettier --check ./src",
Expand Down
4 changes: 2 additions & 2 deletions packages-ts/starknet-gauntlet-ocr2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ACCOUNT=0x...
LINK=0x...
```

Note: The [token contract](https://github.com/smartcontractkit/chainlink-starknet/tree/develop/packages-ts/starknet-gauntlet-starkgate) should only be deployed once and the same contract should be used for very aggregator
Note: The [token contract](https://github.com/smartcontractkit/chainlink-starknet/tree/develop/packages-ts/starknet-gauntlet-token) should only be deployed once and the same contract should be used for very aggregator

## Deploy an Access Controller Contract

Expand All @@ -27,7 +27,7 @@ This command will generate a new Access Controller address and will give the det

Run the following command substituting the following attributes:

1. <TOKEN_CONTRACT> with the [deployed token contract](https://github.com/smartcontractkit/chainlink-starknet/tree/develop/packages-ts/starknet-gauntlet-starkgate)
1. <TOKEN_CONTRACT> with the [deployed token contract](https://github.com/smartcontractkit/chainlink-starknet/tree/develop/packages-ts/starknet-gauntlet-token)
2. <ACCESS_CONTROLLER_CONTRACT> with the access controller contract you deployed in the previous section

```bash
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@chainlink/starknet-gauntlet-starkgate",
"name": "@chainlink/starknet-gauntlet-token",
"version": "0.0.1",
"description": "Gauntlet Starknet Starkgate contracts",
"keywords": [
Expand All @@ -15,7 +15,7 @@
"scripts": {
"gauntlet": "ts-node ./src/index.ts",
"lint": "tsc",
"test": "SKIP_PROMPTS=true jest --runInBand --config ../../jest.config.ts --selectProjects starknet-gauntlet-starkgate --passWithNoTests",
"test": "SKIP_PROMPTS=true jest --runInBand --config ../../jest.config.ts --selectProjects starknet-gauntlet-token --passWithNoTests",
"test:coverage": "yarn test --collectCoverage",
"test:ci": "yarn test --ci",
"format": "yarn prettier --write ./src",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"path": "./packages-ts/starknet-gauntlet-example"
},
{
"path": "./packages-ts/starknet-gauntlet-starkgate"
"path": "./packages-ts/starknet-gauntlet-token"
},
{
"path": "./packages-ts/starknet-gauntlet-ocr2"
Expand Down

0 comments on commit 527f77b

Please sign in to comment.