Skip to content

Zig comptime implementation of Ether js contract initialization style

Notifications You must be signed in to change notification settings

eltNEG/dummy-ethers-zig

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Ethers zig (dummy)

It implements the ethers js contract initialization style using zig comptime. This is a practice project built to master zig comptime. I recommend checking out zabi if you are looking for somthing that works.

Ether js contract initialisation from the doc:

abi = [
  "function decimals() view returns (string)",
  "function symbol() view returns (string)",
  "function balanceOf(address addr) view returns (uint)"
]

// Create a contract
contract = new Contract("dai.tokens.ethers.eth", abi, provider)
sym = await contract.symbol()

Ethers zig comptime contract initialisation:

const fns = [_][:0]const u8{
    "function decimals() view returns (string)",
    "function symbol() view returns (string)",
    "function balanceOf(address addr) view returns (uint)",
    "function transfer(address to, uint amount)",
    "event Transfer(address indexed from, address indexed to, uint amount)",
};
const contact = Contract(&fns).init(); // init should be able to accept provider and contract address
// balanceOf is now available to the contract instance
const balance = try contact.functions.balanceOf.call(.{ .addr = "eltneg.eth" });
std.debug.print("balance={?}\n", .{balance.value});

Run zig run main.zig to see it in action

About

Zig comptime implementation of Ether js contract initialization style

Topics

Resources

Stars

Watchers

Forks

Languages