diff --git a/script/deploy/DeployPoC.s.sol b/script/deploy/DeployPoC.s.sol index edf5700..c6ce2b1 100644 --- a/script/deploy/DeployPoC.s.sol +++ b/script/deploy/DeployPoC.s.sol @@ -33,7 +33,7 @@ contract DeployPoC is Script { args.spaceName, args.spaceDescription, args.spaceImageUrl, - args.pointsName + args.pointsSymbol ); vm.stopBroadcast(); @@ -64,7 +64,8 @@ contract DeployPoC is Script { console.log(' "followed": "%s",', args.stampFollowed); console.log(' "spaceName": "%s",', args.spaceName); console.log(' "spaceDescription": "%s",', args.spaceDescription); - console.log(' "spaceImageUrl": "%s"', args.spaceImageUrl); + console.log(' "spaceImageUrl": "%s",', args.spaceImageUrl); + console.log(' "pointsSymbol": "%s"', args.pointsSymbol); console.log(" }"); console.log(" }"); console.log(" },"); diff --git a/script/deploy/DeployPoCArgs.s.sol b/script/deploy/DeployPoCArgs.s.sol index 922f4c1..8052b56 100644 --- a/script/deploy/DeployPoCArgs.s.sol +++ b/script/deploy/DeployPoCArgs.s.sol @@ -15,7 +15,7 @@ contract DeployPoCArgs is Script { string spaceName; string spaceDescription; string spaceImageUrl; - string pointsName; + string pointsSymbol; } function getArgs() public view returns (DeploymentArgs memory) { @@ -41,7 +41,7 @@ contract DeployPoCArgs is Script { spaceName: "Base", spaceDescription: "The (un)official community space for Base Onchain community", spaceImageUrl: "https://raw.githubusercontent.com/base-org/brand-kit/refs/heads/main/logo/in-product/Base_Network_Logo.png", - pointsName: "BASE" + pointsSymbol: "BASE" }); return args; diff --git a/src/plasa/Plasa.sol b/src/plasa/Plasa.sol index 42576c2..08c23ff 100644 --- a/src/plasa/Plasa.sol +++ b/src/plasa/Plasa.sol @@ -50,7 +50,8 @@ contract Plasa is Ownable { string memory followed, string memory spaceName, string memory spaceDescription, - string memory spaceImageUrl + string memory spaceImageUrl, + string memory pointsSymbol ) external returns (address) { ISpace newSpace = ISpace( new Space( @@ -62,7 +63,8 @@ contract Plasa is Ownable { followed, spaceName, spaceDescription, - spaceImageUrl + spaceImageUrl, + pointsSymbol ) ); spaces.push(newSpace);