B9lab blog

We help organisations build and engage communities, and attract and retain developers.

Follow publication

Storage Pointers in Solidity

Rob Hitchens
B9lab blog
Published in
6 min readNov 16, 2018

Photo by mauRÍCIO santos on Unsplash

What are Storage Pointers?

contract Safe {

uint x = 100;

function getXAndY() public view returns(uint, uint) {
uint y = 101;
return (x,y);
}
}

Surprise!

contract FirstSurprise {

struct Camper {
bool isHappy;
}

mapping(uint => Camper) public campers;

function setHappy(uint index) public {
campers[index].isHappy = true;
}
function surpriseOne(uint index) public {
Camper c = campers[index];
c.isHappy = false;
}
}
c.isHappy = false;
Camper storage c;

Another surprise

contract AnotherSurprise {

struct Camper {
bool isHappy;
}

uint public x = 100;

mapping(uint => Camper) public campers;

function setHappy(uint index) public {
campers[index].isHappy = true;
}

function surpriseTwo() public {
Camper storage c;
c.isHappy = false;
}

Why are Storage Pointers even useful?

function slightOfHand(uint index) public {
Camper storage c = campers[index];
c.isHappy = false;
}
campers[index].isHappy = false;

Safety Habits

Product storage p = productStructs[productIdList[productListRow]];
return (p.id, p.desc, p.price);
p.price = // Stop. Caution. Do you know where this is going?

Responses (2)

Write a response