mirror of
				https://github.com/0glabs/0g-chain.git
				synced 2025-11-04 00:27:41 +00:00 
			
		
		
		
	* add kvtool as a subrepo * use kvtool instead of hardcoded configurations * encapsulate chain port numbers * refactor query clients * include ibc in test suite * track & create accounts per chain * setup test suite env & toggle for IBC tests * support different denoms on different chains * add E2E_SKIP_SHUTDOWN flag * test ibc transfer of funds! * include submodules in necessary github checkout action * update readme w/ details about e2e git submodules
		
			
				
	
	
		
			11 lines
		
	
	
		
			219 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			219 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
if hash kvtool 2>/dev/null; then
 | 
						|
  echo "[install-kvtool.sh] kvtool is already installed. skipping installation."
 | 
						|
  exit 0
 | 
						|
fi
 | 
						|
 | 
						|
echo "[install-kvtool.sh] installing kvtool."
 | 
						|
cd kvtool || exit 1
 | 
						|
make install
 |